diff --git a/app/src/cc/arduino/ConsoleOutputStream.java b/app/src/cc/arduino/ConsoleOutputStream.java index d1f021a27..bfcea7839 100644 --- a/app/src/cc/arduino/ConsoleOutputStream.java +++ b/app/src/cc/arduino/ConsoleOutputStream.java @@ -40,7 +40,6 @@ import processing.app.EditorConsole; import javax.swing.*; import javax.swing.text.BadLocationException; -import javax.swing.text.Document; import javax.swing.text.SimpleAttributeSet; import java.io.ByteArrayOutputStream; import java.io.PrintStream; @@ -57,8 +56,7 @@ public class ConsoleOutputStream extends ByteArrayOutputStream { private final PrintStream printStream; private final StringBuilder buffer; private final Timer timer; - private JScrollPane scrollPane; - private Document document; + private volatile EditorConsole editorConsole; public ConsoleOutputStream(SimpleAttributeSet attributes, PrintStream printStream) { this.attributes = attributes; @@ -66,19 +64,15 @@ public class ConsoleOutputStream extends ByteArrayOutputStream { this.buffer = new StringBuilder(); this.timer = new Timer(100, (e) -> { - if (scrollPane != null) { - synchronized (scrollPane) { - scrollPane.getHorizontalScrollBar().setValue(0); - scrollPane.getVerticalScrollBar().setValue(scrollPane.getVerticalScrollBar().getMaximum()); - } + if (editorConsole != null) { + editorConsole.scrollDown(); } }); timer.setRepeats(false); } - public synchronized void setCurrentEditorConsole(EditorConsole console) { - this.scrollPane = console; - this.document = console.getDocument(); + public void setCurrentEditorConsole(EditorConsole console) { + this.editorConsole = console; } public synchronized void flush() { @@ -102,7 +96,7 @@ public class ConsoleOutputStream extends ByteArrayOutputStream { } private void resetBufferIfDocumentEmpty() { - if (document != null && document.getLength() == 0) { + if (editorConsole != null && editorConsole.isEmpty()) { buffer.setLength(0); } } @@ -113,12 +107,10 @@ public class ConsoleOutputStream extends ByteArrayOutputStream { printStream.print(line); - if (document != null) { + if (editorConsole != null) { SwingUtilities.invokeLater(() -> { try { - String lineWithoutCR = line.replace("\r\n", "\n").replace("\r", "\n"); - int offset = document.getLength(); - document.insertString(offset, lineWithoutCR, attributes); + editorConsole.insertString(line, attributes); } catch (BadLocationException ble) { //ignore } diff --git a/app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java b/app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java index 800756c19..3dcda9272 100644 --- a/app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java +++ b/app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java @@ -33,14 +33,12 @@ import cc.arduino.contributions.filters.BuiltInPredicate; import cc.arduino.contributions.filters.InstalledPredicate; import cc.arduino.contributions.packages.ContributedPackage; import cc.arduino.contributions.packages.ContributedPlatform; -import cc.arduino.view.Event; import processing.app.Base; import processing.app.BaseNoGui; import processing.app.I18n; import processing.app.PreferencesData; import javax.swing.*; -import java.awt.event.ActionEvent; import java.util.Collection; import java.util.List; import java.util.stream.Collectors; diff --git a/app/src/cc/arduino/contributions/libraries/LibraryTypeComparator.java b/app/src/cc/arduino/contributions/libraries/LibraryTypeComparator.java index 1ac61983c..ba53403ac 100644 --- a/app/src/cc/arduino/contributions/libraries/LibraryTypeComparator.java +++ b/app/src/cc/arduino/contributions/libraries/LibraryTypeComparator.java @@ -38,7 +38,7 @@ public class LibraryTypeComparator implements Comparator { private final List types; public LibraryTypeComparator() { - this("Arduino", "Recommended", "Contributed"); + this("Arduino", "Partner", "Recommended", "Contributed"); } public LibraryTypeComparator(String... types) { diff --git a/app/src/cc/arduino/packages/formatter/AStyle.java b/app/src/cc/arduino/packages/formatter/AStyle.java index 702f34ec8..7f7c244d6 100644 --- a/app/src/cc/arduino/packages/formatter/AStyle.java +++ b/app/src/cc/arduino/packages/formatter/AStyle.java @@ -91,10 +91,11 @@ public class AStyle implements Tool { int line = getLineOfOffset(textArea); int lineOffset = getLineOffset(textArea, line); - editor.getTextArea().getUndoManager().beginInternalAtomicEdit(); + textArea.getUndoManager().beginInternalAtomicEdit(); + editor.removeAllLineHighlights(); editor.setText(formattedText); editor.getSketch().setModified(true); - editor.getTextArea().getUndoManager().endInternalAtomicEdit(); + textArea.getUndoManager().endInternalAtomicEdit(); if (line != -1 && lineOffset != -1) { try { diff --git a/app/src/cc/arduino/view/NotificationPopup.java b/app/src/cc/arduino/view/NotificationPopup.java index 8938afa38..947047da7 100644 --- a/app/src/cc/arduino/view/NotificationPopup.java +++ b/app/src/cc/arduino/view/NotificationPopup.java @@ -53,6 +53,11 @@ public class NotificationPopup extends JDialog { public void componentMoved(ComponentEvent e) { updateLocation(parent); } + + @Override + public void componentResized(ComponentEvent e) { + updateLocation(parent); + } }; parent.addComponentListener(parentMovedListener); diff --git a/app/src/cc/arduino/view/SplashScreenHelper.java b/app/src/cc/arduino/view/SplashScreenHelper.java index 86f94c1d6..a3914495f 100644 --- a/app/src/cc/arduino/view/SplashScreenHelper.java +++ b/app/src/cc/arduino/view/SplashScreenHelper.java @@ -37,6 +37,11 @@ import java.util.Map; public class SplashScreenHelper { + private static final int X_OFFSET = 0; + private static final int Y_OFFSET = 300; + private static final int TEXTAREA_HEIGHT = 30; + private static final int TEXTAREA_WIDTH = 475; + private final Map desktopHints; private final SplashScreen splash; private Rectangle2D.Double splashTextArea; @@ -48,37 +53,28 @@ public class SplashScreenHelper { desktopHints = (Map) tk.getDesktopProperty("awt.font.desktophints"); } - public void splashText(String str) { + public void splashText(String text) { if (splash == null) { - printText(str); + printText(text); return; } + if (!splash.isVisible()) { return; } if (splashTextArea == null) { - // stake out some area for our status information - splashTextArea = new Rectangle2D.Double(0, 300, 520, 30); - - // create the Graphics environment for drawing status info - splashGraphics = splash.createGraphics(); - - if (desktopHints != null) { - splashGraphics.addRenderingHints(desktopHints); - } + prepareTextAreaAndGraphics(); } - // erase the last status text - splashGraphics.setPaint(new Color(245, 245, 245)); - splashGraphics.fill(splashTextArea); + eraseLastStatusText(); - // draw the text - splashGraphics.setPaint(Color.BLACK); - FontMetrics metrics = splashGraphics.getFontMetrics(); - splashGraphics.drawString(str, (int) splashTextArea.getX() + 10, (int) splashTextArea.getY() + (30 - metrics.getHeight()) + 4); + drawText(text); - // make sure it's displayed + ensureTextIsDiplayed(); + } + + private void ensureTextIsDiplayed() { synchronized (SplashScreen.class) { if (splash.isVisible()) { splash.update(); @@ -86,6 +82,27 @@ public class SplashScreenHelper { } } + private void drawText(String str) { + splashGraphics.setPaint(Color.BLACK); + FontMetrics metrics = splashGraphics.getFontMetrics(); + splashGraphics.drawString(str, (int) splashTextArea.getX() + 10, (int) splashTextArea.getY() + (TEXTAREA_HEIGHT - metrics.getHeight()) + 5); + } + + private void eraseLastStatusText() { + splashGraphics.setPaint(new Color(229, 229, 229)); + splashGraphics.fill(splashTextArea); + } + + private void prepareTextAreaAndGraphics() { + splashTextArea = new Rectangle2D.Double(X_OFFSET, Y_OFFSET, TEXTAREA_WIDTH, TEXTAREA_HEIGHT); + + splashGraphics = splash.createGraphics(); + + if (desktopHints != null) { + splashGraphics.addRenderingHints(desktopHints); + } + } + public void close() { if (splash == null) { return; diff --git a/app/src/cc/arduino/view/findreplace/FindReplace.form b/app/src/cc/arduino/view/findreplace/FindReplace.form index 3c89f59b0..1b4fcc5ad 100644 --- a/app/src/cc/arduino/view/findreplace/FindReplace.form +++ b/app/src/cc/arduino/view/findreplace/FindReplace.form @@ -4,8 +4,9 @@ - + + @@ -84,7 +85,7 @@ - + @@ -100,7 +101,7 @@ - + @@ -117,7 +118,7 @@ - + @@ -125,14 +126,14 @@ - + - + @@ -143,7 +144,7 @@ - + @@ -153,7 +154,7 @@ - + @@ -163,7 +164,7 @@ - + @@ -173,7 +174,7 @@ - + @@ -183,7 +184,7 @@ - + diff --git a/app/src/cc/arduino/view/findreplace/FindReplace.java b/app/src/cc/arduino/view/findreplace/FindReplace.java index 687b127a9..cffb6099c 100644 --- a/app/src/cc/arduino/view/findreplace/FindReplace.java +++ b/app/src/cc/arduino/view/findreplace/FindReplace.java @@ -66,8 +66,6 @@ public class FindReplace extends javax.swing.JFrame { buttonsContainer.add(findButton); } - getRootPane().setDefaultButton(findButton); - Base.registerWindowCloseKeys(getRootPane(), e -> { setVisible(false); Base.FIND_DIALOG_STATE = findDialogState(); @@ -85,6 +83,13 @@ public class FindReplace extends javax.swing.JFrame { restoreFindDialogState(state); } + @Override + public void setVisible(boolean b) { + getRootPane().setDefaultButton(findButton); + + super.setVisible(b); + } + private Map findDialogState() { Map state = new HashMap<>(); state.put(FIND_TEXT, findField.getText()); @@ -138,6 +143,7 @@ public class FindReplace extends javax.swing.JFrame { setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); setTitle(tr("Find")); + setResizable(false); findLabel.setText(tr("Find:")); diff --git a/app/src/cc/arduino/view/preferences/Preferences.java b/app/src/cc/arduino/view/preferences/Preferences.java index eb4078982..ffeaf53dc 100644 --- a/app/src/cc/arduino/view/preferences/Preferences.java +++ b/app/src/cc/arduino/view/preferences/Preferences.java @@ -48,7 +48,13 @@ import static processing.app.I18n.tr; public class Preferences extends javax.swing.JDialog { private final Language[] languages; + + // Languages that are not translated at least to 65% are + // kept in the "missingLanguages" array until they have enough + // translated strings. + @SuppressWarnings("unused") private final Language[] missingLanguages; + private final WarningItem[] warningItems; private final Base base; diff --git a/app/src/processing/app/AbstractMonitor.java b/app/src/processing/app/AbstractMonitor.java index 976041eaf..e8cc0df75 100644 --- a/app/src/processing/app/AbstractMonitor.java +++ b/app/src/processing/app/AbstractMonitor.java @@ -13,7 +13,6 @@ import java.awt.event.WindowEvent; @SuppressWarnings("serial") public abstract class AbstractMonitor extends JFrame implements ActionListener { - private boolean monitorEnabled; private boolean closed; private StringBuffer updateBuffer; @@ -78,7 +77,6 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener { updateTimer = new Timer(33, this); // redraw serial monitor at 30 Hz updateTimer.start(); - monitorEnabled = true; closed = false; } @@ -86,7 +84,6 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener { public void enableWindow(boolean enable) { onEnableWindow(enable); - monitorEnabled = enable; } protected abstract void onEnableWindow(boolean enable); diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 2ef29d54e..3990aa07e 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -748,7 +748,7 @@ public class Base { try { File file = createNewUntitled(); if (file != null) { - Editor editor = handleOpen(file, true); + handleOpen(file, true); } } catch (IOException e) { diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index f1491f153..a8855d835 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -41,8 +41,8 @@ import processing.app.forms.PasswordAuthorizationDialog; import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesMapException; import processing.app.legacy.PApplet; -import processing.app.syntax.PdeKeywords; import processing.app.syntax.ArduinoTokenMakerFactory; +import processing.app.syntax.PdeKeywords; import processing.app.syntax.SketchTextArea; import processing.app.tools.DiscourseFormat; import processing.app.tools.MenuScroller; @@ -2006,7 +2006,7 @@ public class Editor extends JFrame implements RunnerListener { @Override public void run() { try { - textarea.removeAllLineHighlights(); + removeAllLineHighlights(); sketch.prepare(); sketch.build(verbose, saveHex); statusNotice(tr("Done compiling.")); @@ -2024,6 +2024,15 @@ public class Editor extends JFrame implements RunnerListener { } } + public void removeAllLineHighlights() { + textarea.removeAllLineHighlights(); + } + + public void addLineHighlight(int line) throws BadLocationException { + textarea.addLineHighlight(line, new Color(1, 0, 0, 0.2f)); + textarea.setCaretPosition(textarea.getLineStartOffset(line)); + } + private class DefaultStopHandler implements Runnable { public void run() { // TODO @@ -2276,7 +2285,7 @@ public class Editor extends JFrame implements RunnerListener { public boolean handleSave(boolean immediately) { //stopRunner(); handleStop(); // 0136 - textarea.removeAllLineHighlights(); + removeAllLineHighlights(); if (untitled) { return handleSaveAs(); @@ -2430,7 +2439,7 @@ public class Editor extends JFrame implements RunnerListener { public void run() { try { - textarea.removeAllLineHighlights(); + removeAllLineHighlights(); if (serialMonitor != null) { serialMonitor.suspend(); } @@ -2876,8 +2885,7 @@ public class Editor extends JFrame implements RunnerListener { System.err.println(I18n.format(tr("Bad error line: {0}"), line)); } else { try { - textarea.addLineHighlight(line, new Color(1, 0, 0, 0.2f)); - textarea.setCaretPosition(textarea.getLineStartOffset(line)); + addLineHighlight(line); } catch (BadLocationException e1) { e1.printStackTrace(); } diff --git a/app/src/processing/app/EditorConsole.java b/app/src/processing/app/EditorConsole.java index b922b1b2d..f39f98cb8 100644 --- a/app/src/processing/app/EditorConsole.java +++ b/app/src/processing/app/EditorConsole.java @@ -36,7 +36,7 @@ public class EditorConsole extends JScrollPane { private static ConsoleOutputStream out; private static ConsoleOutputStream err; - public static synchronized void init(SimpleAttributeSet outStyle, PrintStream outStream, SimpleAttributeSet errStyle, PrintStream errStream) { + private static synchronized void init(SimpleAttributeSet outStyle, PrintStream outStream, SimpleAttributeSet errStyle, PrintStream errStream) { if (out != null) { return; } @@ -116,11 +116,23 @@ public class EditorConsole extends JScrollPane { } } + public void scrollDown() { + getHorizontalScrollBar().setValue(0); + getVerticalScrollBar().setValue(getVerticalScrollBar().getMaximum()); + } + + public boolean isEmpty() { + return document.getLength() == 0; + } + + public void insertString(String line, SimpleAttributeSet attributes) throws BadLocationException { + line = line.replace("\r\n", "\n").replace("\r", "\n"); + int offset = document.getLength(); + document.insertString(offset, line, attributes); + } + public String getText() { return consoleTextPane.getText().trim(); } - public Document getDocument() { - return document; - } } diff --git a/app/src/processing/app/EditorLineStatus.java b/app/src/processing/app/EditorLineStatus.java index 253f3919d..b1ad221df 100644 --- a/app/src/processing/app/EditorLineStatus.java +++ b/app/src/processing/app/EditorLineStatus.java @@ -24,13 +24,10 @@ package processing.app; import java.awt.*; import java.awt.geom.Rectangle2D; -import java.util.Map; - import javax.swing.JComponent; import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesMap; -import processing.app.syntax.SketchTextArea; /** diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 8dc00c137..d53f5b0d8 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -21,12 +21,8 @@ package processing.app; -import processing.app.helpers.PreferencesHelper; import processing.app.helpers.PreferencesMap; -import java.awt.*; -import java.io.File; - /** * Storage class for user preferences and environment settings. diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 9c6a93c59..f5adfdede 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -652,14 +652,13 @@ 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 (SketchCode code : data.getCodes()) { - if (newName.equalsIgnoreCase(code.getPrettyName()) && code.isExtension("cpp")) { + for (int i = 1; i < data.getCodeCount(); i++) { + SketchCode code = data.getCode(i); + if (newName.equalsIgnoreCase(code.getPrettyName())) { Base.showMessage(tr("Error"), - I18n.format( - tr("You can't save the sketch as \"{0}\"\n" + - "because the sketch already has a .cpp file with that name."), - newName - )); + I18n.format(tr("You can't save the sketch as \"{0}\"\n" + + "because the sketch already has a file with that name."), newName + )); return false; } } diff --git a/app/src/processing/app/tools/DiscourseFormat.java b/app/src/processing/app/tools/DiscourseFormat.java index 913df85ec..c631df8bd 100644 --- a/app/src/processing/app/tools/DiscourseFormat.java +++ b/app/src/processing/app/tools/DiscourseFormat.java @@ -23,32 +23,31 @@ package processing.app.tools; -import java.awt.*; -import java.awt.datatransfer.*; +import org.fife.ui.rsyntaxtextarea.Token; +import processing.app.Editor; +import processing.app.syntax.SketchTextArea; import javax.swing.text.BadLocationException; import javax.swing.text.Segment; - -import org.fife.ui.rsyntaxtextarea.Token; - -import processing.app.*; -import processing.app.syntax.*; +import java.awt.*; +import java.awt.datatransfer.Clipboard; +import java.awt.datatransfer.StringSelection; /** * Format for Discourse Tool - *

+ *

* Original code by owd. * Revised and updated for revision 0108 by Ben Fry (10 March 2006). * This code may later be moved to its own 'Tool' plugin, but is included * with release 0108+ while features for the "Tools" menu are in testing. - *

+ *

* Updated for 0122 to simply copy the code directly to the clipboard, * rather than opening a new window. - *

+ *

* Updated for 0144 to only format the selected lines. - *

+ *

* Updated for 1.5.8 - Simplification, using RSyntaxTextArea TokenImpl formatter (08 dec 2014 - Ricardo JL Rufino) - *

+ *

* Notes from the original source: * Discourse.java This is a dirty-mix source. * NOTE that: No macs and no keyboard. Unreliable source. @@ -57,11 +56,9 @@ import processing.app.syntax.*; */ public class DiscourseFormat { - private Editor editor; - // JTextArea of the actual Editor - private SketchTextArea textarea; - private boolean html; - + private final Editor editor; + private final SketchTextArea textarea; + private final boolean html; /** * Creates a new window with the formated (YaBB tags) sketchcode @@ -74,12 +71,10 @@ public class DiscourseFormat { this.html = html; } - /** * Format and render sketch code. */ public void show() { - // [code] tag cancels other tags, using [quote] StringBuilder cf = new StringBuilder(html ? "

\n" : "[code]\n");
 
     int selStart = textarea.getSelectionStart();
@@ -105,6 +100,7 @@ public class DiscourseFormat {
           stopLine--;
         }
       } catch (BadLocationException e) {
+        // ignore
       }
     }
 
@@ -117,11 +113,9 @@ public class DiscourseFormat {
 
     StringSelection formatted = new StringSelection(cf.toString());
     Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
-    clipboard.setContents(formatted, new ClipboardOwner() {
-        public void lostOwnership(Clipboard clipboard, Transferable contents) {
-          // i don't care about ownership
-        }
-      });
+    clipboard.setContents(formatted, (clipboard1, contents) -> {
+      // i don't care about ownership
+    });
     Clipboard unixclipboard = Toolkit.getDefaultToolkit().getSystemSelection();
     if (unixclipboard != null) unixclipboard.setContents(formatted, null);
 
@@ -129,10 +123,11 @@ public class DiscourseFormat {
   }
 
   /**
-    * Append a char to a StringBuilder while escaping for proper display in HTML.
-    * @param c input char to escape
-    * @param buffer StringBuilder to append html-safe version of c to.
-    */
+   * Append a char to a StringBuilder while escaping for proper display in HTML.
+   *
+   * @param c      input char to escape
+   * @param buffer StringBuilder to append html-safe version of c to.
+   */
   private void appendToHTML(char c, StringBuilder buffer) {
     if (!html) {
       buffer.append(c);
@@ -149,45 +144,32 @@ public class DiscourseFormat {
     }
   }
 
-  // A terrible headache...
-  public void appendFormattedLine(StringBuilder cf, int line) {
+  private void appendFormattedLine(StringBuilder buffer, int line) {
     Segment segment = new Segment();
 
-    // get line text from parent text area
     textarea.getTextLine(line, segment);
-    
-    char[] segmentArray = segment.array;
-    int segmentOffset = segment.offset;
-    int segmentCount = segment.count;
-//    int width = 0;
 
     if (!html) {
+      char[] segmentArray = segment.array;
+      int segmentOffset = segment.offset;
+      int segmentCount = segment.count;
+
       for (int j = 0; j < segmentCount; j++) {
         char c = segmentArray[j + segmentOffset];
-        appendToHTML(c, cf);
-//        int charWidth;
-//        if (c == '\t') {
-//          charWidth = (int) painter.nextTabStop(width, j) - width;
-//        } else {
-//          charWidth = fm.charWidth(c);
-//        }
-//        width += charWidth;
+        appendToHTML(c, buffer);
       }
-
-    } else {
-      
-      Token tokenList = textarea.getTokenListForLine(line);
-      
-      while(tokenList != null){
-        if(tokenList.getType() == Token.NULL){
-          cf.append('\n');
-        }else if(tokenList.isPaintable()){
-          tokenList.appendHTMLRepresentation(cf, textarea, false);
-        }
-        
-        tokenList = tokenList.getNextToken();
-      }
-  
+      return;
     }
+
+    Token tokenList = textarea.getTokenListForLine(line);
+
+    while (tokenList != null) {
+      if (tokenList.getType() != Token.NULL) {
+        tokenList.appendHTMLRepresentation(buffer, textarea, false);
+      }
+      tokenList = tokenList.getNextToken();
+    }
+
+    buffer.append('\n');
   }
 }
diff --git a/app/test/processing/app/AutoformatProducesOneUndoActionTest.java b/app/test/processing/app/AutoformatProducesOneUndoActionTest.java
index 8c5243a66..33314b4a1 100644
--- a/app/test/processing/app/AutoformatProducesOneUndoActionTest.java
+++ b/app/test/processing/app/AutoformatProducesOneUndoActionTest.java
@@ -34,7 +34,6 @@ import org.junit.Test;
 import processing.app.helpers.SketchTextAreaFixture;
 
 import static org.junit.Assert.assertEquals;
-import static org.junit.Assert.assertNotEquals;
 
 public class AutoformatProducesOneUndoActionTest extends AbstractGUITest {
 
diff --git a/app/test/processing/app/macosx/SystemProfilerParserTest.java b/app/test/processing/app/macosx/SystemProfilerParserTest.java
index 1476822c4..7c6e70d52 100644
--- a/app/test/processing/app/macosx/SystemProfilerParserTest.java
+++ b/app/test/processing/app/macosx/SystemProfilerParserTest.java
@@ -29,54 +29,66 @@
 
 package processing.app.macosx;
 
+import org.junit.Before;
 import org.junit.Test;
 import processing.app.TestHelper;
 
+import java.io.IOException;
+import java.io.InputStream;
+
 import static org.junit.Assert.assertEquals;
 
 public class SystemProfilerParserTest {
 
+  private SystemProfilerParser parser;
+
+  @Before
+  public void setUp() throws Exception {
+    parser = new SystemProfilerParser();
+  }
+
   @Test
   public void shouldCorrectlyParse() throws Exception {
-    String output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output.txt"));
+    String output = getFileContent("system_profiler_output.txt");
+    assertEquals("0X2341_0X0044", parser.extractVIDAndPID(output, "/dev/cu.usbmodemfa121"));
+    assertEquals("0X2341_0X0044", parser.extractVIDAndPID(output, "/dev/tty.usbmodemfa121"));
 
-    assertEquals("0X2341_0X0044", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodemfa121"));
-    assertEquals("0X2341_0X0044", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodemfa121"));
+    output = getFileContent("system_profiler_output2.txt");
+    assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/cu.usbmodemfd131"));
+    assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/tty.usbmodemfd131"));
 
-    output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output2.txt"));
+    output = getFileContent("system_profiler_output3.txt");
+    assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/cu.usbmodemfd121"));
+    assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/tty.usbmodemfd121"));
 
-    assertEquals("0X2341_0X8036", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodemfd131"));
-    assertEquals("0X2341_0X8036", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodemfd131"));
+    output = getFileContent("system_profiler_output4.txt");
+    assertEquals("0X2341_0X0041", parser.extractVIDAndPID(output, "/dev/cu.usbmodem411"));
+    assertEquals("0X2341_0X0041", parser.extractVIDAndPID(output, "/dev/tty.usbmodem411"));
 
-    output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output3.txt"));
+    output = getFileContent("system_profiler_output5.txt");
+    assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/cu.usbmodem621"));
+    assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/tty.usbmodem621"));
 
-    assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodemfd121"));
-    assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodemfd121"));
+    output = getFileContent("system_profiler_output6.txt");
+    assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/cu.usbmodem1421"));
+    assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/tty.usbmodem1421"));
 
-    output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output4.txt"));
+    output = getFileContent("system_profiler_output7.txt");
+    assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/cu.usbmodem24131"));
+    assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/tty.usbmodem24131"));
+    assertEquals("0X0403_0X6015", parser.extractVIDAndPID(output, "/dev/cu.usbserial-DN0031EV"));
+    assertEquals("0X0403_0X6015", parser.extractVIDAndPID(output, "/dev/tty.usbserial-DN0031EV"));
 
-    assertEquals("0X2341_0X0041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodem411"));
-    assertEquals("0X2341_0X0041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodem411"));
+    output = getFileContent("system_profiler_output8.txt");
+    assertEquals("0X03EB_0X2157", parser.extractVIDAndPID(output, "/dev/tty.usbmodemfd132"));
 
-    output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output5.txt"));
+    // OSX El Capitan
+    output = getFileContent("system_profiler_output9.txt");
+    assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/tty.usbmodemFA121"));
+  }
 
-    assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodem621"));
-    assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodem621"));
-
-    output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output6.txt"));
-
-    assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodem1421"));
-    assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodem1421"));
-
-    output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output7.txt"));
-
-    assertEquals("0X2341_0X8036", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodem24131"));
-    assertEquals("0X2341_0X8036", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodem24131"));
-    assertEquals("0X0403_0X6015", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbserial-DN0031EV"));
-    assertEquals("0X0403_0X6015", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbserial-DN0031EV"));
-
-    output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output8.txt"));
-
-    assertEquals("0X03EB_0X2157", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodemfd132"));
+  private String getFileContent(String filename) throws IOException {
+    InputStream resource = SystemProfilerParserTest.class.getResourceAsStream(filename);
+    return TestHelper.inputStreamToString(resource);
   }
 }
diff --git a/app/test/processing/app/macosx/system_profiler_output9.txt b/app/test/processing/app/macosx/system_profiler_output9.txt
new file mode 100644
index 000000000..ca82cedd4
--- /dev/null
+++ b/app/test/processing/app/macosx/system_profiler_output9.txt
@@ -0,0 +1,117 @@
+USB:
+
+    USB 2.0 Bus:
+
+      Host Controller Driver: AppleUSBEHCIPCI
+      PCI Device ID: 0x1c2d 
+      PCI Revision ID: 0x0005 
+      PCI Vendor ID: 0x8086 
+
+        Hub:
+
+          Product ID: 0x2513
+          Vendor ID: 0x0424  (SMSC)
+          Version: b.b3
+          Speed: Up to 480 Mb/sec
+          Location ID: 0xfa100000 / 1
+          Current Available (mA): 1000
+          Current Required (mA): 2
+          Extra Operating Current (mA): 0
+          Built-In: Yes
+
+            Arduino Leonardo:
+
+              Product ID: 0x8036
+              Vendor ID: 0x2341
+              Version: 1.00
+              Speed: Up to 12 Mb/sec
+              Manufacturer: Arduino LLC
+              Location ID: 0xfa120000 / 3
+              Current Available (mA): 1000
+              Current Required (mA): 500
+              Extra Operating Current (mA): 0
+
+            BRCM20702 Hub:
+
+              Product ID: 0x4500
+              Vendor ID: 0x0a5c  (Broadcom Corp.)
+              Version: 1.00
+              Speed: Up to 12 Mb/sec
+              Manufacturer: Apple Inc.
+              Location ID: 0xfa110000 / 4
+              Current Available (mA): 1000
+              Current Required (mA): 94
+              Extra Operating Current (mA): 0
+              Built-In: Yes
+
+                Bluetooth USB Host Controller:
+
+                  Product ID: 0x8281
+                  Vendor ID: 0x05ac  (Apple Inc.)
+                  Version: 1.51
+                  Speed: Up to 12 Mb/sec
+                  Manufacturer: Apple Inc.
+                  Location ID: 0xfa113000 / 2
+                  Current Available (mA): 1000
+                  Current Required (mA): 0
+                  Extra Operating Current (mA): 0
+                  Built-In: Yes
+
+    USB 2.0 Bus:
+
+      Host Controller Driver: AppleUSBEHCIPCI
+      PCI Device ID: 0x1c26 
+      PCI Revision ID: 0x0005 
+      PCI Vendor ID: 0x8086 
+
+        Hub:
+
+          Product ID: 0x2513
+          Vendor ID: 0x0424  (SMSC)
+          Version: b.b3
+          Speed: Up to 480 Mb/sec
+          Location ID: 0xfd100000 / 1
+          Current Available (mA): 1000
+          Current Required (mA): 2
+          Extra Operating Current (mA): 0
+          Built-In: Yes
+
+            USB Keyboard:
+
+              Product ID: 0x2000
+              Vendor ID: 0x040b  (Weltrend Semiconductor)
+              Version: 2.05
+              Speed: Up to 1.5 Mb/sec
+              Manufacturer: Generic
+              Location ID: 0xfd130000 / 4
+              Current Available (mA): 1000
+              Current Required (mA): 100
+              Extra Operating Current (mA): 0
+
+            USB OPTICAL MOUSE:
+
+              Product ID: 0x2510
+              Vendor ID: 0x093a  (Pixart Imaging, Inc.)
+              Version: 1.00
+              Speed: Up to 1.5 Mb/sec
+              Manufacturer: PIXART
+              Location ID: 0xfd120000 / 3
+              Current Available (mA): 1000
+              Current Required (mA): 100
+              Extra Operating Current (mA): 0
+
+            IR Receiver:
+
+              Product ID: 0x8242
+              Vendor ID: 0x05ac  (Apple Inc.)
+              Version: 0.16
+              Speed: Up to 1.5 Mb/sec
+              Manufacturer: Apple Computer, Inc.
+              Location ID: 0xfd110000 / 2
+              Current Available (mA): 1000
+              Current Required (mA): 100
+              Extra Operating Current (mA): 0
+              Built-In: Yes
+
+
+
diff --git a/app/test/processing/app/syntax/PdeKeywordsTest.java b/app/test/processing/app/syntax/PdeKeywordsTest.java
index 29c6b4675..f59deac21 100644
--- a/app/test/processing/app/syntax/PdeKeywordsTest.java
+++ b/app/test/processing/app/syntax/PdeKeywordsTest.java
@@ -32,8 +32,6 @@ package processing.app.syntax;
 import org.fife.ui.rsyntaxtextarea.TokenTypes;
 import org.junit.Test;
 import processing.app.AbstractWithPreferencesTest;
-import processing.app.BaseNoGui;
-
 import static org.junit.Assert.assertEquals;
 import static org.junit.Assert.assertNull;
 
diff --git a/arduino-core/src/cc/arduino/Compiler.java b/arduino-core/src/cc/arduino/Compiler.java
index 41dfc47dd..adef1ccde 100644
--- a/arduino-core/src/cc/arduino/Compiler.java
+++ b/arduino-core/src/cc/arduino/Compiler.java
@@ -30,9 +30,11 @@
 package cc.arduino;
 
 import cc.arduino.i18n.I18NAwareMessageConsumer;
+import cc.arduino.packages.BoardPort;
 import org.apache.commons.exec.CommandLine;
 import org.apache.commons.exec.DefaultExecutor;
 import org.apache.commons.exec.PumpStreamHandler;
+import org.apache.commons.lang3.StringUtils;
 import processing.app.*;
 import processing.app.debug.*;
 import processing.app.helpers.PreferencesMap;
@@ -128,13 +130,14 @@ public class Compiler implements MessageConsumer {
 
     TargetPlatform platform = board.getContainerPlatform();
     TargetPackage aPackage = platform.getContainerPackage();
+    String vidpid = VIDPID();
 
-    PreferencesMap prefs = loadPreferences(board, platform, aPackage);
+    PreferencesMap prefs = loadPreferences(board, platform, aPackage, vidpid);
 
     MessageConsumerOutputStream out = new MessageConsumerOutputStream(new ProgressAwareMessageConsumer(new I18NAwareMessageConsumer(System.out), progListener), "\n");
     MessageConsumerOutputStream err = new MessageConsumerOutputStream(new I18NAwareMessageConsumer(System.err, Compiler.this), "\n");
 
-    callArduinoBuilder(board, platform, aPackage, BuilderAction.COMPILE, new PumpStreamHandler(out, err));
+    callArduinoBuilder(board, platform, aPackage, vidpid, BuilderAction.COMPILE, new PumpStreamHandler(out, err));
 
     out.flush();
     err.flush();
@@ -149,15 +152,30 @@ public class Compiler implements MessageConsumer {
 
     size(prefs);
 
-    return sketch.getName() + ".ino";
+    return sketch.getPrimaryFile().getName();
   }
 
-  private PreferencesMap loadPreferences(TargetBoard board, TargetPlatform platform, TargetPackage aPackage) throws RunnerException, IOException {
+  private String VIDPID() {
+    BoardPort boardPort = BaseNoGui.getDiscoveryManager().find(PreferencesData.get("serial.port"));
+    if (boardPort == null) {
+      return "";
+    }
+
+    String vid = boardPort.getPrefs().get("vid");
+    String pid = boardPort.getPrefs().get("pid");
+    if (StringUtils.isEmpty(vid) || StringUtils.isEmpty(pid)) {
+      return "";
+    }
+
+    return vid.toUpperCase() + "_" + pid.toUpperCase();
+  }
+
+  private PreferencesMap loadPreferences(TargetBoard board, TargetPlatform platform, TargetPackage aPackage, String vidpid) throws RunnerException, IOException {
     ByteArrayOutputStream stdout = new ByteArrayOutputStream();
     ByteArrayOutputStream stderr = new ByteArrayOutputStream();
     MessageConsumerOutputStream err = new MessageConsumerOutputStream(new I18NAwareMessageConsumer(new PrintStream(stderr), Compiler.this), "\n");
     try {
-      callArduinoBuilder(board, platform, aPackage, BuilderAction.DUMP_PREFS, new PumpStreamHandler(stdout, err));
+      callArduinoBuilder(board, platform, aPackage, vidpid, BuilderAction.DUMP_PREFS, new PumpStreamHandler(stdout, err));
     } catch (RunnerException e) {
       System.err.println(new String(stderr.toByteArray()));
       throw e;
@@ -167,7 +185,7 @@ public class Compiler implements MessageConsumer {
     return prefs;
   }
 
-  private void callArduinoBuilder(TargetBoard board, TargetPlatform platform, TargetPackage aPackage, BuilderAction action, PumpStreamHandler streamHandler) throws RunnerException {
+  private void callArduinoBuilder(TargetBoard board, TargetPlatform platform, TargetPackage aPackage, String vidpid, BuilderAction action, PumpStreamHandler streamHandler) throws RunnerException {
     File executable = BaseNoGui.getContentFile("arduino-builder");
     CommandLine commandLine = new CommandLine(executable);
     commandLine.addArgument(action.value, false);
@@ -189,14 +207,18 @@ public class Compiler implements MessageConsumer {
         }
       });
 
+    commandLine.addArgument("-built-in-libraries", false);
+    commandLine.addArgument("\"" + BaseNoGui.getContentFile("libraries").getAbsolutePath() + "\"", false);
     commandLine.addArgument("-libraries", false);
     commandLine.addArgument("\"" + BaseNoGui.getSketchbookLibrariesFolder().getAbsolutePath() + "\"", false);
-    commandLine.addArgument("-libraries", false);
-    commandLine.addArgument("\"" + BaseNoGui.getContentFile("libraries").getAbsolutePath() + "\"", false);
 
     String fqbn = Stream.of(aPackage.getId(), platform.getId(), board.getId(), boardOptions(board)).filter(s -> !s.isEmpty()).collect(Collectors.joining(":"));
     commandLine.addArgument("-fqbn=" + fqbn, false);
 
+    if (!"".equals(vidpid)) {
+      commandLine.addArgument("-vid-pid=" + vidpid, false);
+    }
+
     commandLine.addArgument("-ide-version=" + BaseNoGui.REVISION, false);
     commandLine.addArgument("-build-path", false);
     commandLine.addArgument("\"" + buildPath + "\"", false);
@@ -333,14 +355,17 @@ public class Compiler implements MessageConsumer {
     try {
       compiledSketch = StringReplacer.replaceFromMapping(compiledSketch, prefs);
       copyOfCompiledSketch = StringReplacer.replaceFromMapping(copyOfCompiledSketch, prefs);
+      copyOfCompiledSketch = copyOfCompiledSketch.replaceAll(":", "_");
 
       Path compiledSketchPath;
       Path compiledSketchPathInSubfolder = Paths.get(prefs.get("build.path"), "sketch", compiledSketch);
       Path compiledSketchPathInBuildPath = Paths.get(prefs.get("build.path"), compiledSketch);
       if (Files.exists(compiledSketchPathInSubfolder)) {
         compiledSketchPath = compiledSketchPathInSubfolder;
-      } else {
+      } else if (Files.exists(compiledSketchPathInBuildPath)) {
         compiledSketchPath = compiledSketchPathInBuildPath;
+      } else {
+        return;
       }
 
       Path copyOfCompiledSketchFilePath = Paths.get(this.sketch.getFolder().getAbsolutePath(), copyOfCompiledSketch);
@@ -525,12 +550,12 @@ public class Compiler implements MessageConsumer {
       }
 
       if (error.trim().equals("'Mouse' was not declared in this scope")) {
-        error = tr("'Mouse' only supported on the Arduino Leonardo");
+        error = tr("'Mouse' not found. Does your sketch include the line '#include '?");
         //msg = _("\nThe 'Mouse' class is only supported on the Arduino Leonardo.\n\n");
       }
 
       if (error.trim().equals("'Keyboard' was not declared in this scope")) {
-        error = tr("'Keyboard' only supported on the Arduino Leonardo");
+        error = tr("'Keyboard' not found. Does your sketch include the line '#include '?");
         //msg = _("\nThe 'Keyboard' class is only supported on the Arduino Leonardo.\n\n");
       }
 
diff --git a/arduino-core/src/cc/arduino/contributions/GPGDetachedSignatureVerifier.java b/arduino-core/src/cc/arduino/contributions/GPGDetachedSignatureVerifier.java
index a09bd12fd..216c6dbcb 100644
--- a/arduino-core/src/cc/arduino/contributions/GPGDetachedSignatureVerifier.java
+++ b/arduino-core/src/cc/arduino/contributions/GPGDetachedSignatureVerifier.java
@@ -97,13 +97,13 @@ public class GPGDetachedSignatureVerifier extends SignatureVerifier {
   private PGPPublicKey readPublicKey(InputStream input, String keyId) throws IOException, PGPException {
     PGPPublicKeyRingCollection pgpPub = new PGPPublicKeyRingCollection(PGPUtil.getDecoderStream(input), new BcKeyFingerprintCalculator());
 
-    Iterator keyRingIter = pgpPub.getKeyRings();
+    Iterator keyRingIter = pgpPub.getKeyRings();
     while (keyRingIter.hasNext()) {
-      PGPPublicKeyRing keyRing = (PGPPublicKeyRing) keyRingIter.next();
+      PGPPublicKeyRing keyRing = keyRingIter.next();
 
-      Iterator keyIter = keyRing.getPublicKeys();
+      Iterator keyIter = keyRing.getPublicKeys();
       while (keyIter.hasNext()) {
-        PGPPublicKey key = (PGPPublicKey) keyIter.next();
+        PGPPublicKey key = keyIter.next();
 
         if (Long.toHexString(key.getKeyID()).toUpperCase().endsWith(keyId)) {
           return key;
diff --git a/arduino-core/src/cc/arduino/contributions/SignatureVerificationFailedException.java b/arduino-core/src/cc/arduino/contributions/SignatureVerificationFailedException.java
index 32f7d4d1d..77136cb46 100644
--- a/arduino-core/src/cc/arduino/contributions/SignatureVerificationFailedException.java
+++ b/arduino-core/src/cc/arduino/contributions/SignatureVerificationFailedException.java
@@ -33,6 +33,7 @@ import processing.app.I18n;
 
 import static processing.app.I18n.tr;
 
+@SuppressWarnings("serial")
 public class SignatureVerificationFailedException extends Exception {
 
   public SignatureVerificationFailedException(String filename) {
diff --git a/arduino-core/src/cc/arduino/contributions/packages/ContributionInstaller.java b/arduino-core/src/cc/arduino/contributions/packages/ContributionInstaller.java
index 24712c896..194029f49 100644
--- a/arduino-core/src/cc/arduino/contributions/packages/ContributionInstaller.java
+++ b/arduino-core/src/cc/arduino/contributions/packages/ContributionInstaller.java
@@ -282,7 +282,11 @@ public class ContributionInstaller {
     }
 
     for (String packageIndexURL : packageIndexURLs) {
-      downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
+      try {
+        downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
+      } catch (Exception e) {
+        System.err.println(e.getMessage());
+      }
     }
 
     progress.stepDone();
diff --git a/arduino-core/src/cc/arduino/utils/ArchiveExtractor.java b/arduino-core/src/cc/arduino/utils/ArchiveExtractor.java
index d892e9ec2..1fc007997 100644
--- a/arduino-core/src/cc/arduino/utils/ArchiveExtractor.java
+++ b/arduino-core/src/cc/arduino/utils/ArchiveExtractor.java
@@ -164,7 +164,7 @@ public class ArchiveExtractor {
           while (stripPath > 0) {
             slash = name.indexOf("/", slash);
             if (slash == -1) {
-              throw new IOException("Invalid archive: it must contains a single root folder");
+              throw new IOException("Invalid archive: it must contain a single root folder");
             }
             slash++;
             stripPath--;
@@ -174,7 +174,7 @@ public class ArchiveExtractor {
 
         // Strip the common path prefix when requested
         if (!name.startsWith(pathPrefix)) {
-          throw new IOException("Invalid archive: it must contains a single root folder while file " + name + " is outside " + pathPrefix);
+          throw new IOException("Invalid archive: it must contain a single root folder while file " + name + " is outside " + pathPrefix);
         }
         name = name.substring(pathPrefix.length());
         if (name.isEmpty()) {
@@ -185,7 +185,7 @@ public class ArchiveExtractor {
         File outputLinkedFile = null;
         if (isLink) {
           if (!linkName.startsWith(pathPrefix)) {
-            throw new IOException("Invalid archive: it must contains a single root folder while file " + linkName + " is outside " + pathPrefix);
+            throw new IOException("Invalid archive: it must contain a single root folder while file " + linkName + " is outside " + pathPrefix);
           }
           linkName = linkName.substring(pathPrefix.length());
           outputLinkedFile = new File(destFolder, linkName);
diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java
index d45ef1b30..badb7557e 100644
--- a/arduino-core/src/processing/app/BaseNoGui.java
+++ b/arduino-core/src/processing/app/BaseNoGui.java
@@ -39,9 +39,9 @@ import static processing.app.helpers.filefilters.OnlyDirs.ONLY_DIRS;
 public class BaseNoGui {
 
   /** Version string to be used for build */
-  public static final int REVISION = 10606;
+  public static final int REVISION = 10607;
   /** Extended version string displayed on GUI */
-  public static final String VERSION_NAME = "1.6.6";
+  public static final String VERSION_NAME = "1.6.7";
   public static final String VERSION_NAME_LONG;
 
   // Current directory to use for relative paths specified on the
@@ -618,8 +618,8 @@ public class BaseNoGui {
   }
 
   private static void copyStockLibraryIndexIfUpstreamIsMissing(File librariesIndexFile) throws IOException {
-    if (!librariesIndexFile.isFile()) {
-      File defaultLibraryJsonFile = new File(getContentFile("dist"), "library_index.json");
+    File defaultLibraryJsonFile = new File(getContentFile("dist"), "library_index.json");
+    if (!librariesIndexFile.isFile() || (defaultLibraryJsonFile.isFile() && defaultLibraryJsonFile.lastModified() > librariesIndexFile.lastModified())) {
       if (defaultLibraryJsonFile.isFile()) {
         FileUtils.copyFile(defaultLibraryJsonFile, librariesIndexFile);
       } else {
diff --git a/arduino-core/src/processing/app/Serial.java b/arduino-core/src/processing/app/Serial.java
index 7cfc327aa..04803f363 100644
--- a/arduino-core/src/processing/app/Serial.java
+++ b/arduino-core/src/processing/app/Serial.java
@@ -112,7 +112,11 @@ public class Serial implements SerialPortEventListener {
     try {
       port = new SerialPort(iname);
       port.openPort();
-      port.setParams(irate, idatabits, stopbits, parity, true, true);
+      boolean res = port.setParams(irate, idatabits, stopbits, parity, true, true);
+      if (!res) {
+        System.err.println(format(tr("Error while setting serial port parameters: {0} {1} {2} {3}"),
+                                  irate, iparity, idatabits, istopbits));
+      }
       port.addEventListener(this);
     } catch (SerialPortException e) {
       if (e.getPortName().startsWith("/dev") && SerialPortException.TYPE_PERMISSION_DENIED.equals(e.getExceptionType())) {
diff --git a/arduino-core/src/processing/app/SketchCode.java b/arduino-core/src/processing/app/SketchCode.java
index af4db284c..54d070775 100644
--- a/arduino-core/src/processing/app/SketchCode.java
+++ b/arduino-core/src/processing/app/SketchCode.java
@@ -26,8 +26,13 @@ import processing.app.helpers.FileUtils;
 
 import java.io.File;
 import java.io.IOException;
+import java.nio.file.Files;
+import java.nio.file.Path;
+import java.nio.file.Paths;
 import java.util.Arrays;
 import java.util.List;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
 
 import static processing.app.I18n.tr;
 
@@ -48,11 +53,6 @@ public class SketchCode {
 
   private boolean modified;
 
-  /**
-   * where this code starts relative to the concat'd code
-   */
-  private int preprocOffset;
-
   private Object metadata;
 
   public SketchCode(File file) {
@@ -91,35 +91,39 @@ public class SketchCode {
   }
 
 
-  protected boolean deleteFile(File tempBuildFolder) {
+  protected boolean deleteFile(File tempBuildFolder) throws IOException {
     if (!file.delete()) {
       return false;
     }
 
-    if (!deleteCompiledFilesFrom(tempBuildFolder)) {
-      return false;
-    }
+    List tempBuildFolders = Stream.of(tempBuildFolder.toPath(), Paths.get(tempBuildFolder.getAbsolutePath(), "sketch"))
+      .filter(path -> Files.exists(path))
+      .collect(Collectors.toList());
 
-    if (!deleteCompiledFilesFrom(new File(tempBuildFolder, "sketch"))) {
-      return false;
+    for (Path folder : tempBuildFolders) {
+      if (!deleteCompiledFilesFrom(folder)) {
+        return false;
+      }
     }
 
     return true;
   }
 
-  private boolean deleteCompiledFilesFrom(File tempBuildFolder) {
-    File[] compiledFiles = tempBuildFolder.listFiles(pathname -> {
-      return pathname.getName().startsWith(getFileName());
-    });
-    for (File compiledFile : compiledFiles) {
-      if (!compiledFile.delete()) {
+  private boolean deleteCompiledFilesFrom(Path tempBuildFolder) throws IOException {
+    List compiledFiles = Files.list(tempBuildFolder)
+      .filter(pathname -> pathname.getFileName().toString().startsWith(getFileName()))
+      .collect(Collectors.toList());
+
+    for (Path compiledFile : compiledFiles) {
+      try {
+        Files.delete(compiledFile);
+      } catch (IOException e) {
         return false;
       }
     }
     return true;
   }
 
-
   protected boolean renameTo(File what) {
     boolean success = file.renameTo(what);
     if (success) {
@@ -181,16 +185,6 @@ public class SketchCode {
   }
 
 
-  public void setPreprocOffset(int preprocOffset) {
-    this.preprocOffset = preprocOffset;
-  }
-
-
-  public void addPreprocOffset(int extra) {
-    preprocOffset += extra;
-  }
-
-
   /**
    * Load this piece of code from a file.
    */
diff --git a/arduino-core/src/processing/app/helpers/FileUtils.java b/arduino-core/src/processing/app/helpers/FileUtils.java
index 77ef6ead9..e256b0160 100644
--- a/arduino-core/src/processing/app/helpers/FileUtils.java
+++ b/arduino-core/src/processing/app/helpers/FileUtils.java
@@ -58,12 +58,12 @@ public class FileUtils {
   public static void copy(File sourceFolder, File destFolder) throws IOException {
     for (File file : sourceFolder.listFiles()) {
       File destFile = new File(destFolder, file.getName());
-      if (file.isDirectory()) {
-        if (!destFile.mkdir()) {
+      if (file.isDirectory() && !SOURCE_CONTROL_FOLDERS.contains(file.getName())) {
+        if (!destFile.exists() && !destFile.mkdir()) {
           throw new IOException("Unable to create folder: " + destFile);
         }
         copy(file, destFile);
-      } else {
+      } else if (!file.isDirectory()) {
         copyFile(file, destFile);
       }
     }
diff --git a/arduino-core/src/processing/app/i18n/Resources_af.po b/arduino-core/src/processing/app/i18n/Resources_af.po
index e250a6439..3de480df4 100644
--- a/arduino-core/src/processing/app/i18n/Resources_af.po
+++ b/arduino-core/src/processing/app/i18n/Resources_af.po
@@ -8,13 +8,14 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Edrean Ernst , 2015
 msgid ""
 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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Afrikaans (http://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\n"
 "MIME-Version: 1.0\n"
@@ -37,12 +38,15 @@ msgstr ""
 msgid " Used: {0}"
 msgstr ""
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
 msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
 msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
@@ -874,6 +878,11 @@ msgstr ""
 msgid "Error while printing."
 msgstr ""
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr ""
@@ -2303,10 +2312,10 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr ""
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
+"because the sketch already has a file with that name."
 msgstr ""
 
 #: Sketch.java:883
diff --git a/arduino-core/src/processing/app/i18n/Resources_af.properties b/arduino-core/src/processing/app/i18n/Resources_af.properties
index af73d0432..5455f984e 100644
--- a/arduino-core/src/processing/app/i18n/Resources_af.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_af.properties
@@ -8,8 +8,9 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Edrean Ernst , 2015
-!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Afrikaans (http\://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: af\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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Afrikaans (http\://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: af\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
 
 #: Preferences.java:358 Preferences.java:374
 !\ \ (requires\ restart\ of\ Arduino)=
@@ -22,11 +23,11 @@
 #, java-format
 !\ Used\:\ {0}=
 
-#: debug/Compiler.java:455
-!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
@@ -628,6 +629,10 @@ Arduino\:\ =Arduino\:
 #: Editor.java:2567
 !Error\ while\ printing.=
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 !Error\ while\ uploading=
 
@@ -1654,8 +1659,8 @@ Yes=Ja
 #: Sketch.java:421
 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
 
-#: Sketch.java:861
-!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
diff --git a/arduino-core/src/processing/app/i18n/Resources_an.po b/arduino-core/src/processing/app/i18n/Resources_an.po
index 2731267c6..0090d628c 100644
--- a/arduino-core/src/processing/app/i18n/Resources_an.po
+++ b/arduino-core/src/processing/app/i18n/Resources_an.po
@@ -8,13 +8,14 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Daniel Martinez , 2014-2015
 msgid ""
 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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Aragonese (http://www.transifex.com/mbanzi/arduino-ide-15/language/an/)\n"
 "MIME-Version: 1.0\n"
@@ -37,13 +38,16 @@ msgstr ""
 msgid " Used: {0}"
 msgstr ""
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "'Teclau' solament suportau por Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "'Churi' solament suportau por Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
@@ -874,6 +878,11 @@ msgstr "Error mientres se cargaba o codigo {0}"
 msgid "Error while printing."
 msgstr "Error en imprentar."
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr ""
@@ -2303,11 +2312,11 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr "No puetz renombrar o programa a \"{0}\"\nporque o programa encara tiene un fichero .cpp con ixe nombre"
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
-msgstr "No puetz alzar o programa como \"{0}\"\nporque o programa encara tiene un fichero .cpp con ixe nombre"
+"because the sketch already has a file with that name."
+msgstr ""
 
 #: Sketch.java:883
 msgid ""
diff --git a/arduino-core/src/processing/app/i18n/Resources_an.properties b/arduino-core/src/processing/app/i18n/Resources_an.properties
index 3305235f4..d6118a7eb 100644
--- a/arduino-core/src/processing/app/i18n/Resources_an.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_an.properties
@@ -8,8 +8,9 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Daniel Martinez , 2014-2015
-!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Aragonese (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Aragonese (http\://www.transifex.com/mbanzi/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)=(requiere reiniciar Arduino)
@@ -22,11 +23,11 @@
 #, java-format
 !\ Used\:\ {0}=
 
-#: debug/Compiler.java:455
-'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclau' solament suportau por Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Churi' solament suportau por Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
@@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Error mientres se cargaba o codigo {0}
 #: Editor.java:2567
 Error\ while\ printing.=Error en imprentar.
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 !Error\ while\ uploading=
 
@@ -1654,8 +1659,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No pued
 #: Sketch.java:421
 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.=No puetz alzar o programa como "{0}"\nporque o programa encara tiene un fichero .cpp con ixe nombre
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 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.
diff --git a/arduino-core/src/processing/app/i18n/Resources_ar.po b/arduino-core/src/processing/app/i18n/Resources_ar.po
index 01ad699d0..48f40add4 100644
--- a/arduino-core/src/processing/app/i18n/Resources_ar.po
+++ b/arduino-core/src/processing/app/i18n/Resources_ar.po
@@ -8,6 +8,7 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # alsadi , 2012
 # amas89 , 2012
 # belal affouri , 2015
@@ -20,7 +21,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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Arabic (http://www.transifex.com/mbanzi/arduino-ide-15/language/ar/)\n"
 "MIME-Version: 1.0\n"
@@ -43,13 +44,16 @@ msgstr " غير مستخدم : {0}"
 msgid " Used: {0}"
 msgstr " مستخدم : {0}"
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "'لوحة المفاتيح'  يمكن  ان تعمل فقط على لوحة اردوينو ليوناردو"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "'الفأرة' يمكن  ان تعمل فقط على لوحة اردوينو ليوناردو"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
@@ -880,6 +884,11 @@ msgstr "خطأ اثناء تحميل الكود {0}"
 msgid "Error while printing."
 msgstr ".خطأ خلال الطباعة "
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr "خطأ أثناء التحميل"
@@ -1034,11 +1043,11 @@ msgstr "المتغيرات العامة تستخدم  {0} بايت من الذا
 
 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
 msgid "Go to line"
-msgstr ""
+msgstr "اذهب الى السطر"
 
 #: ../../../../../app/src/processing/app/Editor.java:1460
 msgid "Go to line..."
-msgstr ""
+msgstr "اذهب الى السطر..."
 
 #: Preferences.java:98
 msgid "Greek"
@@ -1199,7 +1208,7 @@ msgstr "المكتبة مثبته مسبقا: {0} اصدار {1}"
 
 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
 msgid "Line number:"
-msgstr ""
+msgstr "رقم السطر:"
 
 #: Preferences.java:106
 msgid "Lithuaninan"
@@ -2301,7 +2310,7 @@ msgstr "لا يمكن ان يكون لديك ملف .cpp مع نفس اسم ال
 
 #: ../../../../../app/src/processing/app/Base.java:2312
 msgid "You can't import a folder that contains your sketchbook"
-msgstr ""
+msgstr "لايمكنك استيراد المجلد الذي يحتوي على شيفرتك البرمجية"
 
 #: Sketch.java:421
 msgid ""
@@ -2309,11 +2318,11 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr "لا يمكن اعادة تسمية الشيفرة البرمجية لـ \"{0}\"\nلأن الشيفرة البرمجية لديه ملف .cpp مسبقا  بنفس الاسم"
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
-msgstr "لا يمكنك حفظ الشيفرة البرمجية كـ \"{0}\"\nلان الشيفرة البرمجية بالفعل لديه ملف .cpp بنفس الاسم."
+"because the sketch already has a file with that name."
+msgstr ""
 
 #: Sketch.java:883
 msgid ""
diff --git a/arduino-core/src/processing/app/i18n/Resources_ar.properties b/arduino-core/src/processing/app/i18n/Resources_ar.properties
index b98b5c953..f5851d455 100644
--- a/arduino-core/src/processing/app/i18n/Resources_ar.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_ar.properties
@@ -8,6 +8,7 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # alsadi , 2012
 # amas89 , 2012
 # belal affouri , 2015
@@ -15,7 +16,7 @@
 # JAMAL ELMERABETE , 2014-2015
 # Khaled Saleem Baleesh , 2015
 # Mubarak Qahtani , 2015
-!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Arabic (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Arabic (http\://www.transifex.com/mbanzi/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)
@@ -28,11 +29,11 @@
 #, java-format
 \ Used\:\ {0}=\ \u0645\u0633\u062a\u062e\u062f\u0645 \: {0}
 
-#: debug/Compiler.java:455
-'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='\u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d'  \u064a\u0645\u0643\u0646  \u0627\u0646 \u062a\u0639\u0645\u0644 \u0641\u0642\u0637 \u0639\u0644\u0649 \u0644\u0648\u062d\u0629 \u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0644\u064a\u0648\u0646\u0627\u0631\u062f\u0648
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='\u0627\u0644\u0641\u0623\u0631\u0629' \u064a\u0645\u0643\u0646  \u0627\u0646 \u062a\u0639\u0645\u0644 \u0641\u0642\u0637 \u0639\u0644\u0649 \u0644\u0648\u062d\u0629 \u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0644\u064a\u0648\u0646\u0627\u0631\u062f\u0648
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=\u0645\u062c\u0644\u062f 'arch' \u0644\u0645 \u064a\u0639\u062f \u0645\u062f\u0639\u0648\u0645\u0627\! \u0644\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a http\://goo.gl/gfFJzU
@@ -634,6 +635,10 @@ 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 
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 Error\ while\ uploading=\u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u062a\u062d\u0645\u064a\u0644
 
@@ -748,10 +753,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\
 Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0627\u0644\u0645\u062a\u063a\u064a\u0631\u0627\u062a \u0627\u0644\u0639\u0627\u0645\u0629 \u062a\u0633\u062a\u062e\u062f\u0645  {0} \u0628\u0627\u064a\u062a \u0645\u0646 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062a\u063a\u064a\u0631\u0629.
 
 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
-!Go\ to\ line=
+Go\ to\ line=\u0627\u0630\u0647\u0628 \u0627\u0644\u0649 \u0627\u0644\u0633\u0637\u0631
 
 #: ../../../../../app/src/processing/app/Editor.java:1460
-!Go\ to\ line...=
+Go\ to\ line...=\u0627\u0630\u0647\u0628 \u0627\u0644\u0649 \u0627\u0644\u0633\u0637\u0631...
 
 #: Preferences.java:98
 Greek=Greek
@@ -868,7 +873,7 @@ Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u0627\u0644\u0645\u0
 Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0627\u0644\u0645\u0643\u062a\u0628\u0629 \u0645\u062b\u0628\u062a\u0647 \u0645\u0633\u0628\u0642\u0627\: {0} \u0627\u0635\u062f\u0627\u0631 {1}
 
 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
-!Line\ number\:=
+Line\ number\:=\u0631\u0642\u0645 \u0627\u0644\u0633\u0637\u0631\:
 
 #: Preferences.java:106
 Lithuaninan=Lithuaninan
@@ -1655,13 +1660,13 @@ You\ can't\ fool\ me=\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062e\u062f\u0
 You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0646 \u064a\u0643\u0648\u0646 \u0644\u062f\u064a\u0643 \u0645\u0644\u0641 .cpp \u0645\u0639 \u0646\u0641\u0633 \u0627\u0633\u0645 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 
 
 #: ../../../../../app/src/processing/app/Base.java:2312
-!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=
+You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\u0644\u0627\u064a\u0645\u0643\u0646\u0643 \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0627\u0644\u0645\u062c\u0644\u062f \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0634\u064a\u0641\u0631\u062a\u0643 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629
 
 #: Sketch.java:421
 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0644\u0640 "{0}"\n\u0644\u0623\u0646 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0644\u062f\u064a\u0647 \u0645\u0644\u0641 .cpp \u0645\u0633\u0628\u0642\u0627  \u0628\u0646\u0641\u0633 \u0627\u0644\u0627\u0633\u0645
 
-#: Sketch.java:861
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0641\u0638 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0643\u0640 "{0}"\n\u0644\u0627\u0646 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0628\u0627\u0644\u0641\u0639\u0644 \u0644\u062f\u064a\u0647 \u0645\u0644\u0641 .cpp \u0628\u0646\u0641\u0633 \u0627\u0644\u0627\u0633\u0645.
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0641\u0638 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u0644\u0649 \u0645\u062c\u0644\u062f\n \u0628\u062f\u0627\u062e\u0644 \u0646\u0641\u0633\u0647. \u0631\u0628\u0645\u0627 \u062a\u0633\u062a\u0645\u0631 \u0628\u0630\u0644\u0643 \u0627\u0644\u0649 \u0627\u0644\u0627\u0628\u062f.
diff --git a/arduino-core/src/processing/app/i18n/Resources_ast.po b/arduino-core/src/processing/app/i18n/Resources_ast.po
index 17e7defb4..0dc6ad3fc 100644
--- a/arduino-core/src/processing/app/i18n/Resources_ast.po
+++ b/arduino-core/src/processing/app/i18n/Resources_ast.po
@@ -8,13 +8,14 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Xuacu Saturio , 2013
 msgid ""
 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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Asturian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ast/)\n"
 "MIME-Version: 1.0\n"
@@ -37,12 +38,15 @@ msgstr ""
 msgid " Used: {0}"
 msgstr ""
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
 msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
 msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
@@ -874,6 +878,11 @@ msgstr ""
 msgid "Error while printing."
 msgstr ""
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr ""
@@ -2303,10 +2312,10 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr ""
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
+"because the sketch already has a file with that name."
 msgstr ""
 
 #: Sketch.java:883
diff --git a/arduino-core/src/processing/app/i18n/Resources_ast.properties b/arduino-core/src/processing/app/i18n/Resources_ast.properties
index 3fca49465..7b4ab1c49 100644
--- a/arduino-core/src/processing/app/i18n/Resources_ast.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_ast.properties
@@ -8,8 +8,9 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Xuacu Saturio , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Asturian (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Asturian (http\://www.transifex.com/mbanzi/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)=
@@ -22,11 +23,11 @@
 #, java-format
 !\ Used\:\ {0}=
 
-#: debug/Compiler.java:455
-!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
@@ -628,6 +629,10 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\
 #: Editor.java:2567
 !Error\ while\ printing.=
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 !Error\ while\ uploading=
 
@@ -1654,8 +1659,8 @@ Time\ for\ a\ Break=Tiempu pa un descansu
 #: Sketch.java:421
 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
 
-#: Sketch.java:861
-!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
diff --git a/arduino-core/src/processing/app/i18n/Resources_be.po b/arduino-core/src/processing/app/i18n/Resources_be.po
index 81d399570..f96278d66 100644
--- a/arduino-core/src/processing/app/i18n/Resources_be.po
+++ b/arduino-core/src/processing/app/i18n/Resources_be.po
@@ -8,13 +8,14 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # debconf , 2013-2014
 msgid ""
 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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Belarusian (http://www.transifex.com/mbanzi/arduino-ide-15/language/be/)\n"
 "MIME-Version: 1.0\n"
@@ -37,13 +38,16 @@ msgstr ""
 msgid " Used: {0}"
 msgstr ""
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "'Keyboard' падтрымліваецца толькі на Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "'Mouse' падтрымліваецца толькі на Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
@@ -874,6 +878,11 @@ msgstr "Памылка падчас загрузкі коду {0}"
 msgid "Error while printing."
 msgstr "Памылка падчас друку."
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr ""
@@ -2303,11 +2312,11 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr "Вы не можаце перайменаваць скетч у \"{0}\",\nтаму што скетч ужо мае .cpp файл з такім імём."
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
-msgstr "Вы не можаце захаваць як \"{0}\",\nтаму што скетч ужо мае .cpp файл з такім імём."
+"because the sketch already has a file with that name."
+msgstr ""
 
 #: Sketch.java:883
 msgid ""
diff --git a/arduino-core/src/processing/app/i18n/Resources_be.properties b/arduino-core/src/processing/app/i18n/Resources_be.properties
index f9cf74aed..6ca296a3b 100644
--- a/arduino-core/src/processing/app/i18n/Resources_be.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_be.properties
@@ -8,8 +8,9 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # debconf , 2013-2014
-!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Belarusian (http\://www.transifex.com/mbanzi/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<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Belarusian (http\://www.transifex.com/mbanzi/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<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\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)
@@ -22,11 +23,11 @@
 #, java-format
 !\ Used\:\ {0}=
 
-#: debug/Compiler.java:455
-'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435\u0446\u0446\u0430 \u0442\u043e\u043b\u044c\u043a\u0456 \u043d\u0430 Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435\u0446\u0446\u0430 \u0442\u043e\u043b\u044c\u043a\u0456 \u043d\u0430 Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
@@ -628,6 +629,10 @@ 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.
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 !Error\ while\ uploading=
 
@@ -1654,8 +1659,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0412\
 #: Sketch.java:421
 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0443 "{0}",\n\u0442\u0430\u043c\u0443 \u0448\u0442\u043e \u0441\u043a\u0435\u0442\u0447 \u0443\u0436\u043e \u043c\u0430\u0435 .cpp \u0444\u0430\u0439\u043b \u0437 \u0442\u0430\u043a\u0456\u043c \u0456\u043c\u0451\u043c.
 
-#: Sketch.java:861
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u044f\u043a "{0}",\n\u0442\u0430\u043c\u0443 \u0448\u0442\u043e \u0441\u043a\u0435\u0442\u0447 \u0443\u0436\u043e \u043c\u0430\u0435 .cpp \u0444\u0430\u0439\u043b \u0437 \u0442\u0430\u043a\u0456\u043c \u0456\u043c\u0451\u043c.
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u0437\u0430\u0445\u043e\u045e\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0443 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\n\u0443\u043d\u0443\u0442\u0440\u044b \u0441\u043a\u0435\u0442\u0447\u0430. \u0413\u044d\u0442\u0430 \u045e\u0441\u0451 \u045e\u0441\u043a\u043b\u0430\u0434\u043d\u0456\u0446\u044c
diff --git a/arduino-core/src/processing/app/i18n/Resources_bg.po b/arduino-core/src/processing/app/i18n/Resources_bg.po
index c4a237516..c43c9b4e9 100644
--- a/arduino-core/src/processing/app/i18n/Resources_bg.po
+++ b/arduino-core/src/processing/app/i18n/Resources_bg.po
@@ -8,6 +8,7 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Anton Stoychev , 2013
 # Valentin Laskov , 2012-2015
 msgid ""
@@ -15,7 +16,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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Bulgarian (http://www.transifex.com/mbanzi/arduino-ide-15/language/bg/)\n"
 "MIME-Version: 1.0\n"
@@ -38,13 +39,16 @@ msgstr ""
 msgid " Used: {0}"
 msgstr ""
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "'Keyboard' се поддържа само от Ардуино Леонардо"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "'Mouse' се поддържа само от Ардуино Леонардо"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
@@ -875,6 +879,11 @@ msgstr "Грешка при зареждане на код {0}"
 msgid "Error while printing."
 msgstr "Грешка при отпечатването."
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr "Грешка при качването"
@@ -2304,11 +2313,11 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr "Не може да преименувате скицата на \"{0}\"\nпонеже скицата вече има .cpp файл с това име."
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
-msgstr "Не можете да запишете скицата като \"{0}\"\nпонеже скицата вече съдържа .cpp файл с това име."
+"because the sketch already has a file with that name."
+msgstr ""
 
 #: Sketch.java:883
 msgid ""
diff --git a/arduino-core/src/processing/app/i18n/Resources_bg.properties b/arduino-core/src/processing/app/i18n/Resources_bg.properties
index 245e0c262..40826dfe5 100644
--- a/arduino-core/src/processing/app/i18n/Resources_bg.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_bg.properties
@@ -8,9 +8,10 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Anton Stoychev , 2013
 # Valentin Laskov , 2012-2015
-!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bulgarian (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bulgarian (http\://www.transifex.com/mbanzi/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)
@@ -23,11 +24,11 @@
 #, java-format
 !\ Used\:\ {0}=
 
-#: debug/Compiler.java:455
-'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0441\u0430\u043c\u043e \u043e\u0442 \u0410\u0440\u0434\u0443\u0438\u043d\u043e \u041b\u0435\u043e\u043d\u0430\u0440\u0434\u043e
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0441\u0430\u043c\u043e \u043e\u0442 \u0410\u0440\u0434\u0443\u0438\u043d\u043e \u041b\u0435\u043e\u043d\u0430\u0440\u0434\u043e
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
@@ -629,6 +630,10 @@ 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.
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../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
 
@@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u041d\
 #: Sketch.java:421
 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u043d\u0430 "{0}"\n\u043f\u043e\u043d\u0435\u0436\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0432\u0435\u0447\u0435 \u0438\u043c\u0430 .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u043e\u0432\u0430 \u0438\u043c\u0435.
 
-#: Sketch.java:861
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u041d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0437\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u043a\u0430\u0442\u043e "{0}"\n\u043f\u043e\u043d\u0435\u0436\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0432\u0435\u0447\u0435 \u0441\u044a\u0434\u044a\u0440\u0436\u0430 .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u043e\u0432\u0430 \u0438\u043c\u0435.
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0432 \u043f\u0430\u043f\u043a\u0430\n\u0432 \u0441\u0430\u043c\u0430\u0442\u0430 \u043d\u0435\u044f. \u0422\u043e\u0432\u0430 \u0449\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438 \u0432\u0435\u0447\u043d\u043e.
diff --git a/arduino-core/src/processing/app/i18n/Resources_bs.po b/arduino-core/src/processing/app/i18n/Resources_bs.po
index 1f69913ad..db09f8477 100644
--- a/arduino-core/src/processing/app/i18n/Resources_bs.po
+++ b/arduino-core/src/processing/app/i18n/Resources_bs.po
@@ -8,13 +8,14 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Kenan Dervišević, 2013-2014
 msgid ""
 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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Bosnian (http://www.transifex.com/mbanzi/arduino-ide-15/language/bs/)\n"
 "MIME-Version: 1.0\n"
@@ -37,12 +38,15 @@ msgstr ""
 msgid " Used: {0}"
 msgstr ""
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
 msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
 msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
@@ -874,6 +878,11 @@ msgstr ""
 msgid "Error while printing."
 msgstr "Greška prilikom štampanja."
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr ""
@@ -2303,10 +2312,10 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr ""
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
+"because the sketch already has a file with that name."
 msgstr ""
 
 #: Sketch.java:883
diff --git a/arduino-core/src/processing/app/i18n/Resources_bs.properties b/arduino-core/src/processing/app/i18n/Resources_bs.properties
index f37e11965..f3622d558 100644
--- a/arduino-core/src/processing/app/i18n/Resources_bs.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_bs.properties
@@ -8,8 +8,9 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Kenan Dervi\u0161evi\u0107, 2013-2014
-!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bosnian (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bosnian (http\://www.transifex.com/mbanzi/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)
@@ -22,11 +23,11 @@
 #, java-format
 !\ Used\:\ {0}=
 
-#: debug/Compiler.java:455
-!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
@@ -628,6 +629,10 @@ Error=Gre\u0161ka
 #: Editor.java:2567
 Error\ while\ printing.=Gre\u0161ka prilikom \u0161tampanja.
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 !Error\ while\ uploading=
 
@@ -1654,8 +1659,8 @@ Yes=Da
 #: Sketch.java:421
 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
 
-#: Sketch.java:861
-!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
diff --git a/arduino-core/src/processing/app/i18n/Resources_ca.po b/arduino-core/src/processing/app/i18n/Resources_ca.po
index a7b6f420b..0e3dc7fcc 100644
--- a/arduino-core/src/processing/app/i18n/Resources_ca.po
+++ b/arduino-core/src/processing/app/i18n/Resources_ca.po
@@ -8,6 +8,7 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Francesc , 2015
 # Moritz Werner Casero , 2015
 # Sergi  Pérez Labernia , 2014
@@ -18,7 +19,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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Catalan (http://www.transifex.com/mbanzi/arduino-ide-15/language/ca/)\n"
 "MIME-Version: 1.0\n"
@@ -41,19 +42,22 @@ msgstr "No fet servir:{0}"
 msgid " Used: {0}"
 msgstr "fet servir:{0}"
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "'Keyboard' només ho suporta l'Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "'Mouse' només ho suporta l'Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
 "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more "
 "information"
-msgstr ""
+msgstr "La carpeta 'arch' ja no és suporta! Mira http://goo.gl/gfFJzU per saber més informació."
 
 #: Preferences.java:478
 msgid "(edit only when Arduino is not running)"
@@ -61,11 +65,11 @@ msgstr "(només editar quan l'Arduino no estigui funcionant)"
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
 msgid "(legacy)"
-msgstr ""
+msgstr "(llegat)"
 
 #: ../../../processing/app/helpers/CommandlineParser.java:149
 msgid "--curdir no longer supported"
-msgstr ""
+msgstr "--curdir  ja no es suporta."
 
 #: ../../../processing/app/Base.java:468
 msgid ""
@@ -125,11 +129,11 @@ msgstr "Una nova versió del software d'Arduino es troba disponible,\nvols visit
 #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
 #, java-format
 msgid "A newer {0} package is available"
-msgstr ""
+msgstr "Un paquet {0} nou esta disponible."
 
 #: ../../../../../app/src/processing/app/Base.java:2307
 msgid "A subfolder of your sketchbook is not a valid library"
-msgstr ""
+msgstr "Una sub-carpeta del teu bloc de programaris no és una llibreria vàlida."
 
 #: Editor.java:1116
 msgid "About Arduino"
@@ -163,7 +167,7 @@ msgstr "Albanès"
 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
 msgid "All"
-msgstr ""
+msgstr "Tot"
 
 #: tools/FixEncoding.java:77
 msgid ""
@@ -878,6 +882,11 @@ msgstr "Error durant la carrega de codi {0}"
 msgid "Error while printing."
 msgstr "Error durant la impressió."
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr "Error mentre es pujava el programàri."
@@ -2307,11 +2316,11 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr "No pot reanomenar el sketch a \"{0}\"\nper què el sketch ja té un fitxer .cpp amb el mateix nom."
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
-msgstr "No pot reanomenar el sketch a \"{0}\"\nper què el sketch ja té un fitxer .cpp amb el mateix nom."
+"because the sketch already has a file with that name."
+msgstr ""
 
 #: Sketch.java:883
 msgid ""
diff --git a/arduino-core/src/processing/app/i18n/Resources_ca.properties b/arduino-core/src/processing/app/i18n/Resources_ca.properties
index f50de9e8a..88419714e 100644
--- a/arduino-core/src/processing/app/i18n/Resources_ca.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_ca.properties
@@ -8,12 +8,13 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Francesc , 2015
 # Moritz Werner Casero , 2015
 # Sergi  P\u00e9rez Labernia , 2014
 # shacawine , 2012
 # Xavier Romero Aguad\u00e9 , 2014
-!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Catalan (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Catalan (http\://www.transifex.com/mbanzi/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)=(\u00e9s necessari reiniciar l'Arduino)
@@ -26,23 +27,23 @@
 #, java-format
 \ Used\:\ {0}=fet servir\:{0}
 
-#: debug/Compiler.java:455
-'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' nom\u00e9s ho suporta l'Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' nom\u00e9s ho suporta l'Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
-!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
+'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=La carpeta 'arch' ja no \u00e9s suporta\! Mira http\://goo.gl/gfFJzU per saber m\u00e9s informaci\u00f3.
 
 #: Preferences.java:478
 (edit\ only\ when\ Arduino\ is\ not\ running)=(nom\u00e9s editar quan l'Arduino no estigui funcionant)
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
-!(legacy)=
+(legacy)=(llegat)
 
 #: ../../../processing/app/helpers/CommandlineParser.java:149
-!--curdir\ no\ longer\ supported=
+--curdir\ no\ longer\ supported=--curdir  ja no es suporta.
 
 #: ../../../processing/app/Base.java:468
 --verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verb\u00f3s,  --verb\u00f3s-pujar i -verb\u00f3s-build nom\u00e9s es poden emprar juntes amb --verificar o --pujar
@@ -82,10 +83,10 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
 
 #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
 #, java-format
-!A\ newer\ {0}\ package\ is\ available=
+A\ newer\ {0}\ package\ is\ available=Un paquet {0} nou esta disponible.
 
 #: ../../../../../app/src/processing/app/Base.java:2307
-!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=
+A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Una sub-carpeta del teu bloc de programaris no \u00e9s una llibreria v\u00e0lida.
 
 #: Editor.java:1116
 About\ Arduino=Quant a Arduino
@@ -111,7 +112,7 @@ Albanian=Alban\u00e8s
 #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42
 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
-!All=
+All=Tot
 
 #: 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 d'arreglar la codificaci\u00f3 del fitxer.\nNo provi de desar aquest program\u00e0ri, podria sobreescriure\nla versi\u00f3 antiga. Utilitzi "Obrir" per re-obrir el programari tornar-ho a provar.\n
@@ -632,6 +633,10 @@ Error\ while\ loading\ code\ {0}=Error durant la carrega de codi {0}
 #: Editor.java:2567
 Error\ while\ printing.=Error durant la impressi\u00f3.
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 Error\ while\ uploading=Error mentre es pujava el program\u00e0ri.
 
@@ -1658,8 +1663,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No pot
 #: Sketch.java:421
 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No pot reanomenar el sketch a "{0}"\nper qu\u00e8 el sketch ja t\u00e9 un fitxer .cpp amb el mateix nom.
 
-#: Sketch.java:861
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No pot reanomenar el sketch a "{0}"\nper qu\u00e8 el sketch ja t\u00e9 un fitxer .cpp amb el mateix nom.
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No pot desar el sketch en una carpeta\ndins del mateix. Aix\u00f2 seria un proc\u00e9s infinit.
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 e3c3fe873..b61dd4d63 100644
--- a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po
+++ b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po
@@ -8,6 +8,7 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # horcicaa , 2012
 # fatalwir , 2014
 # Michal Kočer , 2012
@@ -20,7 +21,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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Czech (Czech Republic) (http://www.transifex.com/mbanzi/arduino-ide-15/language/cs_CZ/)\n"
 "MIME-Version: 1.0\n"
@@ -43,13 +44,16 @@ msgstr " Nepoužitý: {0}"
 msgid " Used: {0}"
 msgstr " Použitý: {0}"
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "'Keyboard' je podporováno pouze u Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "'Mouse' je podporováno pouze u Arduino Leonardo!"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
@@ -880,6 +884,11 @@ msgstr "Chyba při nahrávání kódu {0}"
 msgid "Error while printing."
 msgstr "Chyba během tisku."
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr "Nastala chyba při nahrávání"
@@ -2309,11 +2318,11 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr "Nelze přejmenovat projekt na \"{0}\"\nprotože soubor stejného jména avšak s příponou .cpp již existuje."
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
-msgstr "Nelze uložit projekt jako \"{0}\"\nprotože projekt obsahuje soubor .cpp stejného názvu."
+"because the sketch already has a file with that name."
+msgstr ""
 
 #: Sketch.java:883
 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 076cfe5ad..20675974c 100644
--- a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties
@@ -8,6 +8,7 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # horcicaa , 2012
 # fatalwir , 2014
 # Michal Ko\u010der , 2012
@@ -15,7 +16,7 @@
 # Michal Ko\u010der , 2013-2014
 # Ondrej Novy , 2015
 # Zdeno Seker\u00e1k , 2015
-!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/mbanzi/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)
@@ -28,11 +29,11 @@
 #, java-format
 \ Used\:\ {0}=\ Pou\u017eit\u00fd\: {0}
 
-#: debug/Compiler.java:455
-'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' je podporov\u00e1no pouze u Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' je podporov\u00e1no pouze u Arduino Leonardo\!
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
@@ -634,6 +635,10 @@ Error\ while\ loading\ code\ {0}=Chyba p\u0159i nahr\u00e1v\u00e1n\u00ed k\u00f3
 #: Editor.java:2567
 Error\ while\ printing.=Chyba b\u011bhem tisku.
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 Error\ while\ uploading=Nastala chyba p\u0159i nahr\u00e1v\u00e1n\u00ed
 
@@ -1660,8 +1665,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Nelze importovat
 #: Sketch.java:421
 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze p\u0159ejmenovat projekt na "{0}"\nproto\u017ee soubor stejn\u00e9ho jm\u00e9na av\u0161ak s p\u0159\u00edponou .cpp ji\u017e existuje.
 
-#: Sketch.java:861
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze ulo\u017eit projekt jako "{0}"\nproto\u017ee projekt obsahuje soubor .cpp stejn\u00e9ho n\u00e1zvu.
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nelze ukl\u00e1dat projekt do adres\u00e1\u0159e uvnit\u0159 sebe sama.\nDo\u0161lo by k zacyklen\u00ed do nekone\u010dna.
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 20b04c831..b363cf102 100644
--- a/arduino-core/src/processing/app/i18n/Resources_da_DK.po
+++ b/arduino-core/src/processing/app/i18n/Resources_da_DK.po
@@ -8,6 +8,7 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Jakob Enevoldsen , 2014
 # Torben Løkke Leth , 2012
 # Torben Løkke Leth , 2012
@@ -17,7 +18,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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Danish (Denmark) (http://www.transifex.com/mbanzi/arduino-ide-15/language/da_DK/)\n"
 "MIME-Version: 1.0\n"
@@ -40,13 +41,16 @@ msgstr ""
 msgid " Used: {0}"
 msgstr ""
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "'Keyboard' kun understøttet af Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "'Mouse' kun understøttet af Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
@@ -877,6 +881,11 @@ msgstr ""
 msgid "Error while printing."
 msgstr ""
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr ""
@@ -2306,10 +2315,10 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr ""
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
+"because the sketch already has a file with that name."
 msgstr ""
 
 #: Sketch.java:883
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 df818ed52..257c2dec2 100644
--- a/arduino-core/src/processing/app/i18n/Resources_da_DK.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_da_DK.properties
@@ -8,11 +8,12 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Jakob Enevoldsen , 2014
 # Torben L\u00f8kke Leth , 2012
 # Torben L\u00f8kke Leth , 2012
 # Torben L\u00f8kke Leth , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Danish (Denmark) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Danish (Denmark) (http\://www.transifex.com/mbanzi/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)=
@@ -25,11 +26,11 @@
 #, java-format
 !\ Used\:\ {0}=
 
-#: debug/Compiler.java:455
-'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' kun underst\u00f8ttet af Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' kun underst\u00f8ttet af Arduino Leonardo
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
@@ -631,6 +632,10 @@ Error\ compiling.=Fejl i kompilering.
 #: Editor.java:2567
 !Error\ while\ printing.=
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 !Error\ while\ uploading=
 
@@ -1657,8 +1662,8 @@ You\ can't\ fool\ me=Du kan ikke snyde mig
 #: Sketch.java:421
 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
 
-#: Sketch.java:861
-!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
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 5dffef32c..6962fcf4e 100644
--- a/arduino-core/src/processing/app/i18n/Resources_de_DE.po
+++ b/arduino-core/src/processing/app/i18n/Resources_de_DE.po
@@ -8,6 +8,7 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Ettore Atalan , 2014-2015
 # Lukas Bestle , 2013,2015
 # Dr. Mathias Wilhelm , 2012
@@ -16,7 +17,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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: German (Germany) (http://www.transifex.com/mbanzi/arduino-ide-15/language/de_DE/)\n"
 "MIME-Version: 1.0\n"
@@ -39,13 +40,16 @@ msgstr " Nicht benutzt: {0}"
 msgid " Used: {0}"
 msgstr " Benutzt: {0}"
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "'Keyboard' wird nur vom Arduino Leonardo unterstützt"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "'Mouse' wird nur vom Arduino Leonardo unterstützt"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
@@ -876,6 +880,11 @@ msgstr "Fehler beim Laden des Quellcodes {0}"
 msgid "Error while printing."
 msgstr "Fehler beim Drucken."
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
+msgstr ""
+
 #: ../../../processing/app/BaseNoGui.java:528
 msgid "Error while uploading"
 msgstr "Fehler beim Hochladen"
@@ -1030,11 +1039,11 @@ msgstr "Globale Variablen verwenden {0} Bytes des dynamischen Speichers."
 
 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
 msgid "Go to line"
-msgstr ""
+msgstr "Springe zu Zeile"
 
 #: ../../../../../app/src/processing/app/Editor.java:1460
 msgid "Go to line..."
-msgstr ""
+msgstr "Springe zu Zeile..."
 
 #: Preferences.java:98
 msgid "Greek"
@@ -1195,7 +1204,7 @@ msgstr "Bibliothek ist bereits installiert: {0} Version {1}"
 
 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
 msgid "Line number:"
-msgstr ""
+msgstr "Zeilennummer:"
 
 #: Preferences.java:106
 msgid "Lithuaninan"
@@ -2305,11 +2314,11 @@ msgid ""
 "because the sketch already has a .cpp file with that name."
 msgstr "Sie können den Sketch nicht in \"{0}\" umbenennen,\nda der Sketch bereits eine .cpp-Datei mit diesem Namen hat."
 
-#: Sketch.java:861
+#: ../../../../../app/src/processing/app/Sketch.java:659
 msgid ""
 "You can't save the sketch as \"{0}\"\n"
-"because the sketch already has a .cpp file with that name."
-msgstr "Sie können den Sketch nicht unter dem Namen \"{0}\" speichern,\nda der Sketch bereits eine .cpp-Datei mit diesem Namen hat."
+"because the sketch already has a file with that name."
+msgstr ""
 
 #: Sketch.java:883
 msgid ""
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 b7b58d508..03d59b0ca 100644
--- a/arduino-core/src/processing/app/i18n/Resources_de_DE.properties
+++ b/arduino-core/src/processing/app/i18n/Resources_de_DE.properties
@@ -8,10 +8,11 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Ettore Atalan , 2014-2015
 # Lukas Bestle , 2013,2015
 # Dr. Mathias Wilhelm , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: German (Germany) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: German (Germany) (http\://www.transifex.com/mbanzi/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)
@@ -24,11 +25,11 @@
 #, java-format
 \ Used\:\ {0}=\ Benutzt\: {0}
 
-#: debug/Compiler.java:455
-'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' wird nur vom Arduino Leonardo unterst\u00fctzt
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
-#: debug/Compiler.java:450
-'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' wird nur vom Arduino Leonardo unterst\u00fctzt
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?=
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=Der 'arch'-Ordner wird nicht mehr unterst\u00fctzt\! Bitte besuchen Sie http\://goo.gl/gfFJzU f\u00fcr weitere Informationen.
@@ -630,6 +631,10 @@ Error\ while\ loading\ code\ {0}=Fehler beim Laden des Quellcodes {0}
 #: Editor.java:2567
 Error\ while\ printing.=Fehler beim Drucken.
 
+#: ../../../../../arduino-core/src/processing/app/Serial.java:117
+#, java-format
+!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
+
 #: ../../../processing/app/BaseNoGui.java:528
 Error\ while\ uploading=Fehler beim Hochladen
 
@@ -744,10 +749,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\
 Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globale Variablen verwenden {0} Bytes des dynamischen Speichers.
 
 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
-!Go\ to\ line=
+Go\ to\ line=Springe zu Zeile
 
 #: ../../../../../app/src/processing/app/Editor.java:1460
-!Go\ to\ line...=
+Go\ to\ line...=Springe zu Zeile...
 
 #: Preferences.java:98
 Greek=Griechisch
@@ -864,7 +869,7 @@ Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Eine Bibliothek kann
 Library\ is\ already\ installed\:\ {0}\ version\ {1}=Bibliothek ist bereits installiert\: {0} Version {1}
 
 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
-!Line\ number\:=
+Line\ number\:=Zeilennummer\:
 
 #: Preferences.java:106
 Lithuaninan=Litauisch
@@ -1656,8 +1661,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Sie k\u00f6nnen
 #: Sketch.java:421
 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Sie k\u00f6nnen den Sketch nicht in "{0}" umbenennen,\nda der Sketch bereits eine .cpp-Datei mit diesem Namen hat.
 
-#: Sketch.java:861
-You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Sie k\u00f6nnen den Sketch nicht unter dem Namen "{0}" speichern,\nda der Sketch bereits eine .cpp-Datei mit diesem Namen hat.
+#: ../../../../../app/src/processing/app/Sketch.java:659
+!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
 
 #: Sketch.java:883
 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sie k\u00f6nnen den Sketch nicht in seinem\neigenen Ordner speichern.\nDas w\u00fcrde unendlich so weiter gehen.
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 6364f3652..3a72802d3 100644
--- a/arduino-core/src/processing/app/i18n/Resources_el_GR.po
+++ b/arduino-core/src/processing/app/i18n/Resources_el_GR.po
@@ -8,7 +8,9 @@
 # Translators:
 # Translators:
 # Translators:
+# Translators:
 # Dimitris Zervas <01ttouch@gmail.com>, 2012
+# firewalker , 2015
 # Spyridon Papanastasiou , 2015
 # Γιάννης Σφακιανάκης , 2013
 msgid ""
@@ -16,7 +18,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-09-30 07:37+0000\n"
+"PO-Revision-Date: 2015-11-02 12:05+0000\n"
 "Last-Translator: Federico Fissore \n"
 "Language-Team: Greek (Greece) (http://www.transifex.com/mbanzi/arduino-ide-15/language/el_GR/)\n"
 "MIME-Version: 1.0\n"
@@ -39,19 +41,22 @@ msgstr "Όχι σε χρήση: {0}"
 msgid " Used: {0}"
 msgstr "Σε χρήση: {0}"
 
-#: debug/Compiler.java:455
-msgid "'Keyboard' only supported on the Arduino Leonardo"
-msgstr "Το «Keyboard» υποστηρίζεται μόνο από το Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
+msgid ""
+"'Keyboard' not found. Does your sketch include the line '#include "
+"'?"
+msgstr ""
 
-#: debug/Compiler.java:450
-msgid "'Mouse' only supported on the Arduino Leonardo"
-msgstr "Το «Mouse» υποστηρίζεται μόνο από το Arduino Leonardo"
+#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
+msgid ""
+"'Mouse' not found. Does your sketch include the line '#include '?"
+msgstr ""
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
 msgid ""
 "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more "
 "information"
-msgstr ""
+msgstr "Ο φάκελος 'arch' δεν υποστηρίζεται πλέον! Δείτε στο http://goo.gl/gfFJzU για περισσότερε πληροφορίες"
 
 #: Preferences.java:478
 msgid "(edit only when Arduino is not running)"
@@ -59,7 +64,7 @@ msgstr "(επεξεραστείτε μόνο όταν το Arduino δεν τρέ
 
 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
 msgid "(legacy)"
-msgstr ""
+msgstr "(παλαιό)"
 
 #: ../../../processing/app/helpers/CommandlineParser.java:149
 msgid "--curdir no longer supported"
@@ -69,27 +74,27 @@ msgstr "το --curdir δεν υποστηρίζεται πλέον"
 msgid ""
 "--verbose, --verbose-upload and --verbose-build can only be used together "
 "with --verify or --upload"
-msgstr "τα --verbose, --verbose-upload και --verbose-build μπορούν να μόνο μαζί με τα --verify ή --upload"
+msgstr "τα --verbose, --verbose-upload και --verbose-build μπορούν να χρησιμοποιηθούν μόνο μαζί με τα --verify ή --upload"
 
 #: Sketch.java:746
 msgid ".pde -> .ino"
-msgstr ""
+msgstr ".pde -> .ino"
 
 #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64
 #, java-format
 msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Διαθέσιμη ενημέρωση για μερικές από τις {0}πλακέτες{1} σας" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Διαθέσιμη ενημέρωση για μερικές από τις {0}πλακέτες{1} και {2}βιβλιοθήκες σας{3} σας" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Διαθέσιμη ενημέρωση για μερικές από τις {0}βιβλιοθήκες{1} σας" #: Editor.java:2053 msgid "" @@ -123,70 +128,70 @@ msgstr "Μια νέα έκδοση του Arduino είναι διαθέσιμη, #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "A newer {0} package is available" -msgstr "" +msgstr "Ένα νέο {0} πακέτο είναι διαθέσιμο" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" +msgstr "Ένας υποφάκελλος του sketchbook σας δεν είναι έγγυρη βιβλιοθήκη" #: Editor.java:1116 msgid "About Arduino" -msgstr "" +msgstr "Περί του Arduino" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr "Προσθήκη βιβλιοθήκης ZIP..." #: Editor.java:650 msgid "Add File..." -msgstr "" +msgstr "Προσθήκη αρχείου..." #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" -msgstr "" +msgstr "Επιπλέον URLs Διαχειριστή Πλακετών" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 msgid "Additional Boards Manager URLs: " -msgstr "" +msgstr "Επιπλέον URLs Διαχειριστή Πλακετών:" #: ../../../../../app/src/processing/app/Preferences.java:161 msgid "Afrikaans" -msgstr "" +msgstr "Αφρικανικά" #: ../../../processing/app/Preferences.java:96 msgid "Albanian" -msgstr "" +msgstr "Αλβανικά" #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 msgid "All" -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" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 msgid "An error occurred while updating libraries index!" -msgstr "" +msgstr "Προέκυψε ένα σφάλμα κατά την ενημέρωση του ευρετηρίου βιβλιοθηκών!" #: ../../../processing/app/BaseNoGui.java:528 msgid "An error occurred while uploading the sketch" -msgstr "" +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 "" +msgstr "Προέκυψε ένα σφάλμα κατά την επικύρωση του σχεδίου" #: ../../../processing/app/BaseNoGui.java:521 msgid "An error occurred while verifying/uploading the sketch" -msgstr "" +msgstr "Προέκυψε ένα σφάλμα κατά την επικύρωση/φόρτωση του σχεδίου" #: Base.java:228 msgid "" @@ -204,35 +209,35 @@ 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-bits)" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" -msgstr "" +msgstr "Πλακέτες 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 μπορεί να ανοίξει μόνο δικά του σχέδια\nκαι άλλα αρχεία που τελειώνουν σε .ino ή .pde" #: Base.java:1682 msgid "" @@ -248,133 +253,133 @@ msgstr "Το Arduino δεν εκτελείται διότι δεν μπορεί\ #: ../../../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/Base.java:356 msgid "Argument required for --board" -msgstr "" +msgstr "Απαιτείται όρισμα για το --board" #: ../../../processing/app/Base.java:363 msgid "Argument required for --port" -msgstr "" +msgstr "Απαιτείται όρισμα για το --port" #: ../../../processing/app/Base.java:377 msgid "Argument required for --pref" -msgstr "" +msgstr "Απαιτείται όρισμα για το --pref" #: ../../../processing/app/Base.java:384 msgid "Argument required for --preferences-file" -msgstr "" +msgstr "Απαιτείται όρισμα για το --preferences-file" #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format msgid "Argument required for {0}" -msgstr "" +msgstr "Απαιτείται όρισμα για το {0}" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Αρμένικα" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Αυστριακά" #: ../../../processing/app/debug/Compiler.java:145 msgid "Authorization required" -msgstr "" +msgstr "Απαιτείται εξουσιοδότηση" #: tools/AutoFormat.java:91 msgid "Auto Format" -msgstr "" +msgstr "Αυτόματη Διαμόρφωση" #: tools/AutoFormat.java:944 msgid "Auto Format finished." -msgstr "" +msgstr "Ολοκληρώθηκε η Αυτόματη Διαμόρφωση." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Αυτόματη ανίχνευση ρυθμίσεων διαμεσολαβητή" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "URL αυτόματης ρύθμισης του διαμεσολαβητή:" #: 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:149 msgid "Basque" -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 "Πλακέτα" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format msgid "Board {0} (platform {1}, package {2}) is unknown" -msgstr "" +msgstr "Η Πλακέτα {0} (πλατφόρμα {1}, πακέτο {2}) είναι άγνωστη" #: ../../../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 "Πλακέτα:" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" -msgstr "" +msgstr "Διαχειριστής Πλακετών" #: ../../../../../app/src/processing/app/Base.java:1320 msgid "Boards Manager..." -msgstr "" +msgstr "Διαχειριστής Πλακετών..." #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 msgid "Boards included in this package:" -msgstr "" +msgstr "Πλακέτες που περιλαμβάνονται σε αυτό το πακέτο:" #: ../../../processing/app/debug/Compiler.java:1273 #, java-format msgid "Bootloader file specified but missing: {0}" -msgstr "" +msgstr "Το αρχείο του Bootloader έχει καθοριστεί αλλά λείπει: {0}" #: ../../../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" @@ -382,45 +387,45 @@ msgstr "Αναζήτηση" #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" -msgstr "" +msgstr "Οι επιλογές Κτισίματος άλλαξαν, αναδόμηση όλων" #: ../../../../../app/src/processing/app/Base.java:1210 msgid "Built-in Examples" -msgstr "" +msgstr "Ενσωματωμένα Παραδείγματα" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "Βουλγάρικα" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "Burmese (Myanmar)" #: 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 στην Πλακέτα Ι/Ο (ίσως χρειαστεί λίγο χρόνο)..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." -msgstr "" +msgstr "Ο CRC δεν ταιριάζει. Το αρχείο είναι κατακερματισμένο." #: ../../../processing/app/Base.java:379 #, java-format msgid "Can only pass one of: {0}" -msgstr "" +msgstr "Μπορεί μόνο να περάσει ένα από: {0}" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "Can't find the sketch in the specified path" -msgstr "" +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 @@ -429,15 +434,15 @@ msgstr "Ακύρωση" #: Sketch.java:455 msgid "Cannot Rename" -msgstr "" +msgstr "Δεν μπορεί να Μετονομαστεί" #: ../../../processing/app/Base.java:465 msgid "Cannot specify any sketch files" -msgstr "" +msgstr "Δεν μπορεί να καθοριστεί κάποιο αρχείο σχεδίου" #: SerialMonitor.java:112 msgid "Carriage return" -msgstr "" +msgstr "Αλλαγή Γραμμής" #: Preferences.java:87 msgid "Catalan" @@ -445,82 +450,82 @@ msgstr "Καταλανικά" #: Preferences.java:419 msgid "Check for updates on startup" -msgstr "" +msgstr "Έλεγχος για ενημερώσεις στην εκκίνηση" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Chinese (China)" #: ../../../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)" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" -msgstr "" +msgstr "Κλίκ για λίστα URLs υποστήριξης ανεπίσημων πλακετών " #: Editor.java:521 Editor.java:2024 msgid "Close" -msgstr "" +msgstr "Κλείσιμο" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" -msgstr "" +msgstr "Σχολιασμός/Αποσχολιασμός" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 msgid "Compiler warnings: " -msgstr "" +msgstr "Προειδοποιήσεις Μεταγλωττιστή:" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -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 @@ -530,17 +535,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 @@ -560,17 +565,17 @@ msgstr "Πρόβλημα ανοίγματος του φακέλου\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 "Δεν μπόρεσε να γίνει σωστή επαναποθήκευση του σχεδίου. Μπορεί να έχετε πρόβλημα σε αυτό το σημείο,\nκαι ίσως είναι ώρα να αντιγράψετε και να επικολλήσετε τον κώδικα σας σε κάποιον άλλο επεξεργαστή κειμένου." #: Sketch.java:1768 msgid "Could not re-save sketch" -msgstr "" +msgstr "Δεν μπόρεσε να γίνει επαν-αποθήκευση του σχεδίου" #: Theme.java:52 msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Δεν μπορεί να γίνει ανάγνωση της ρύθμισης για το χρώμα θέματος.\nΠρέπει να εγκαταστήσετε πάλι το Arduino." #: Preferences.java:219 msgid "" @@ -586,19 +591,19 @@ msgstr "Δεν μπορεί να διαγραφεί η παλιά εκδοση #: 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 @@ -607,131 +612,131 @@ 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 "Δεν ήταν δυνατόν να βρεθεί μια Πλακέτα στην επιλεγμένη θύρα. Ελέγξτε πως είναι επιλεγμένη η σωστή θύρα. Αν είναι σωστή, προσπαθήστε να πιέσετε το reset στην πλακέτα μετά την έναρξη της φόρτωσης." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr "Croatian" #: Editor.java:1149 Editor.java:2699 msgid "Cut" -msgstr "" +msgstr "Αποκοπή" #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" -msgstr "" +msgstr "Τσέχικα (Δημοκρατία της Τσεχίας)" #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" -msgstr "" +msgstr "Δανικά (Δανία)" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" -msgstr "" +msgstr "Μείωση Εσοχής" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" -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 "Η συσκευή δεν αποκρίνεται, ελέγξτε πως είναι επιλεγμένη η σωστή θύρα ή γίνετε σωστό 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 "Προβολή αριθμών γραμμής" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format msgid "" "Do you want to remove {0}?\n" "If you do so you won't be able to use {0} any more." -msgstr "" +msgstr "Θέλετε να αφαιρέσετε το {0};\nΑν ναι, δεν θα μπορείτε μα χρησιμοποιείτε πλέον το {0}." #: 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." #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 msgid "Done compiling" -msgstr "" +msgstr "Ολοκλήρωση μεταγλώττισης" #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." -msgstr "" +msgstr "Ολοκλήρωση μεταγλώττισης." #: Editor.java:2564 msgid "Done printing." -msgstr "" +msgstr "Ολοκλήρωση εκτύπωσης." #: ../../../processing/app/BaseNoGui.java:514 msgid "Done uploading" -msgstr "" +msgstr "Ολοκλήρωση φόρτωσης" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." -msgstr "" +msgstr "Ολοκλήρωση φόρτωσης." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format msgid "Downloaded {0}kb of {1}kb." -msgstr "" +msgstr "Κατέβασμα {0}kb από {1}kb." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 msgid "Downloading boards definitions." -msgstr "" +msgstr "Κατέβασμα ορισμών των πλακετών." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 msgid "Downloading libraries index..." -msgstr "" +msgstr "Κατέβασμα του ευρετηρίου βιβλιοθηκών..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format msgid "Downloading library: {0}" -msgstr "" +msgstr "Κατέβασμα βιβλιοθήκης: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 msgid "Downloading platforms index..." -msgstr "" +msgstr "Κατέβασμα ευρετηρίου πλατφορμών..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format msgid "Downloading tools ({0}/{1})." -msgstr "" +msgstr "Κατέβασμα εργαλείων ({0}/{1})." #: Preferences.java:91 msgid "Dutch" @@ -739,15 +744,15 @@ msgstr "Ολλανδικά" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Ολλανδικά (Ολλανδία)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" -msgstr "" +msgstr "Βοήθεια Edison" #: Editor.java:1130 msgid "Edit" -msgstr "" +msgstr "Επεξεργασία" #: Preferences.java:370 msgid "Editor font size: " @@ -759,7 +764,7 @@ msgstr "Διορθωτής Γλώσσας:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" -msgstr "" +msgstr "Ενεργοποίηση Αναδίπλωσης Κώδικα" #: Preferences.java:92 msgid "English" @@ -767,20 +772,20 @@ msgstr "Αγγλικά" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "English (United Kingdom)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 msgid "Enter a comma separated list of urls" -msgstr "" +msgstr "Εισάγεται μία λίστα urls χωριζόμενα από κόμμα " #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 msgid "Enter additional URLs, one for each row" -msgstr "" +msgstr "Εισάγεται επιπλέον URLs, ένα για κάθε γραμμή" #: 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 @@ -790,16 +795,16 @@ msgstr "Σφάλμα" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "" +msgstr "Σφάλμα προσθήκης αρχείου" #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "" +msgstr "Σφάλμα μεταγλώττισης." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format msgid "Error downloading {0}" -msgstr "" +msgstr "Σφάλμα κατεβάσματος {0}" #: Base.java:1674 msgid "Error getting the Arduino data folder." @@ -808,26 +813,26 @@ msgstr "Λάθος κατα την λήψη του φακέλου δεδομέν #: Serial.java:593 #, java-format msgid "Error inside Serial.{0}()" -msgstr "" +msgstr "Σφάλμα μέσα στο Σειριακό.{0}()" #: ../../../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}\"." #: ../../../processing/app/Serial.java:119 #, java-format msgid "" "Error opening serial port ''{0}''. Try consulting the documentation at " "http://playground.arduino.cc/Linux/All#Permission" -msgstr "" +msgstr "Σφάλμα ανοίγματος της σειριακής θύρας \"{0}\". Συμβουλευτείτε την τεκμηρίωση στο http://playground.arduino.cc/Linux/All#Permission" #: Preferences.java:277 msgid "Error reading preferences" @@ -844,28 +849,28 @@ msgstr "Σφάλμα ανάγνωσης αρχείου προτιμήσεων. #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 msgid "Error running post install script" -msgstr "" +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." -msgstr "" +msgstr "Σφάλμα κατά την εγγραφή bootloader." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Σφάλμα κατά την εγγραφή bootloader: Απουσία '{0}' παραμέτρου διαμόρφωσης " #: ../../../../../app/src/processing/app/Editor.java:1940 msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" +msgstr "Σφάλμα κατά την μεταγλώττιση: Απουσία '{0}' παραμέτρου διαμόρφωσης " #: SketchCode.java:83 #, java-format @@ -874,26 +879,31 @@ msgstr "Σφάλμα φόρτωσης κώδικα {0}" #: Editor.java:2567 msgid "Error while printing." +msgstr "Σφάλμα κατά την εκτύπωση." + +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" msgstr "" #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" -msgstr "" +msgstr "Σφάλμα κατά την φόρτωση" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Σφάλμα κατά την φόρτωση: Απουσία '{0}' παραμέτρου διαμόρφωσης" #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 msgid "Error while verifying" -msgstr "" +msgstr "Σφάλμα κατά την επικύρωση" #: ../../../processing/app/BaseNoGui.java:521 msgid "Error while verifying/uploading" -msgstr "" +msgstr "Σφάλμα κατά την επικύρωση/φόρτωση" #: Preferences.java:93 msgid "Estonian" @@ -901,36 +911,36 @@ msgstr "Εσθονικά" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Εσθονικά (Εσθονία)" #: Editor.java:516 msgid "Examples" -msgstr "" +msgstr "Παραδείγματα" #: ../../../../../app/src/processing/app/Base.java:1244 msgid "Examples from Custom Libraries" -msgstr "" +msgstr "Παραδείγματα από Προσαρμοσμένες Βιβλιοθήκες" #: ../../../../../app/src/processing/app/Base.java:1222 msgid "Examples from Libraries" -msgstr "" +msgstr "Παραδείγματα από βιβλιοθήκες" #: ../../../../../app/src/processing/app/Editor.java:753 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Η Εξαγωγή ακυρώθηκε, οι αλλαγές πρέπει να αποθηκευτούν πρώτα." #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" -msgstr "" +msgstr "Εξαγωγή μεταγλωττισμένου Δυαδικού" #: ../../../processing/app/Base.java:416 #, java-format msgid "Failed to open sketch: \"{0}\"" -msgstr "" +msgstr "Αποτυχία ανοίγματος του σχεδίου: \"{0}\"" #: Editor.java:491 msgid "File" -msgstr "" +msgstr "Αρχείο" #: Preferences.java:94 msgid "Filipino" @@ -938,7 +948,7 @@ msgstr "Φιλλιπινέζικα" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." -msgstr "" +msgstr "Φιλτράρισμα της αναζήτησης..." #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -946,19 +956,19 @@ 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:" @@ -966,23 +976,23 @@ 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 "Επισκευή Κωδικοποίησης και Επαναφόρτωση" #: ../../../processing/app/BaseNoGui.java:318 msgid "" "For information on installing libraries, see: " "http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Για πληροφορίες εγκατάστασης βιβλιοθηκών, δείτε: http://www.arduino.cc/en/Guide/Libraries\n" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" +msgstr "Εξαναγκασμένη επανεκκίνηση χρησιμοποιώντας 1200bps άνοιγμα/κλείσιμο στην θύρα {0}" #: Preferences.java:95 msgid "French" @@ -990,23 +1000,23 @@ msgstr "Γαλλικά" #: Editor.java:1097 msgid "Frequently Asked Questions" -msgstr "" +msgstr "Συχνές Ερωτήσεις" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "Γαλικιακά" #: ../../../../../app/src/processing/app/Preferences.java:176 msgid "Galician (Spain)" -msgstr "" +msgstr "Γαλικιακά (Ισπανία)" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" -msgstr "" +msgstr "Βοήθεια Galileo" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "Γεωργιανά" #: Preferences.java:97 msgid "German" @@ -1014,27 +1024,27 @@ 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 δυναμικής μνήμης." #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Πήγαινε στην γραμμή" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Πήγαινε στην γραμμή..." #: Preferences.java:98 msgid "Greek" @@ -1042,11 +1052,11 @@ msgstr "Ελληνικά" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "Εβραϊκά " #: Editor.java:1015 msgid "Help" -msgstr "" +msgstr "Βοήθεια" #: Preferences.java:99 msgid "Hindi" @@ -1054,17 +1064,17 @@ msgstr "Χίντι" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -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 "Πολύ \"Borges\" από μέρους σας" #: Preferences.java:100 msgid "Hungarian" @@ -1091,20 +1101,20 @@ 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Αποθήκευση του σχεδίου και ενημέρωση της επέκτασης;" #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" -msgstr "" +msgstr "Συμπερίληψη Βιβλιοθήκης" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "Εσφαλμένος φάκελος εγκατάστασης IDE" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" -msgstr "" +msgstr "Αύξηση Εσοχής" #: Preferences.java:101 msgid "Indonesian" @@ -1112,7 +1122,7 @@ msgstr "Ινδονησιακά" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." -msgstr "" +msgstr "Αρχικοποίηση πακέτων..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -1121,44 +1131,44 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Εγκατάσταση" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Η εγκατάσταση ολοκληρώθηκε!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Εγκατεστημένο" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." -msgstr "" +msgstr "Εγκατάσταση πλακετών..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "Εγκατάσταση βιβλιοθήκης:{0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "Εγκατάσταση εργαλείων ({0}/{1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Εγκατάσταση..." #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "Βρέθηκε μη έγγυρη βιβλιοθήκη στο {0}: {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format msgid "Invalid quoting: no closing [{0}] char found." -msgstr "" +msgstr "Μη έγγυρη παράθεση: Δεν βρέθηκε χαρακτήρας [{0}] κλεισίματος." #: Preferences.java:102 msgid "Italian" @@ -1174,28 +1184,28 @@ msgstr "Κορεάτικα" #: Preferences.java:105 msgid "Latvian" -msgstr "" +msgstr "Λεττονικά" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Διαχειριστής Βιβλιοθήκης" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" +msgstr "Η Βιβλιοθήκη προστέθηκε στις βιβλιοθήκες σας. Ελέγξτε το μενού \"Συμπερίληψη Βιβλιοθήκης\"" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 msgid "Library can't use both 'src' and 'utility' folders." -msgstr "" +msgstr "Η Βιβλιοθήκη δεν μπορεί να χρησιμοποιεί αμφότερα τους φακέλους 'src' και 'utility'." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" -msgstr "" +msgstr "Η Βιβλιοθήκη είναι ήδη εγκατεστημένη: {0} έκδοση {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Αριθμός σειράς:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1203,28 +1213,28 @@ msgstr "Λιθουανίας" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." -msgstr "" +msgstr "Φόρτωση διαμόρφωσης..." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format msgid "Looking for recipes like {0}*{1}" -msgstr "" +msgstr "Αναζήτηση για συνταγές όπως {0}*{1}" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." -msgstr "" +msgstr "Λίγη διαθέσιμη μνήμη, μπορεί να προκύψουν προβλήματα ευστάθειας." #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." -msgstr "" +msgstr "Διαχείριση Βιβλιοθηκών..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Χειροκίνητη ρύθμιση μεσολαβητή" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "Marathi" #: Base.java:2112 msgid "Message" @@ -1233,56 +1243,56 @@ msgstr "Μήνυμα" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format msgid "Missing '{0}' from library in {1}" -msgstr "" +msgstr "Λείπει το '{0}' από την βιβλιοθήκη στο {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" -msgstr "" +msgstr "Η Μέθοδος δεν υποστηρίζεται" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "Επιπλέον" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" -msgstr "" +msgstr "Οι περισσότερες επιλογές μπορεί να τροποποιηθούν απευθείας στο αρχείο" #: Editor.java:2156 msgid "Moving" -msgstr "" +msgstr "Μετακίνηση" #: ../../../processing/app/BaseNoGui.java:484 msgid "Multiple files not supported" -msgstr "" +msgstr "Δεν υποστηρίζονται πολλαπλά αρχεία" #: ../../../processing/app/debug/Compiler.java:520 #, java-format msgid "Multiple libraries were found for \"{0}\"" -msgstr "" +msgstr "Βρέθηκαν πολλαπλές βιβλιοθήκες για \"{0}\"" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" -msgstr "" +msgstr "Πρέπει να καθορίσετε ακριβώς ένα αρχείο σχεδίου" #: Sketch.java:282 msgid "Name for new file:" -msgstr "" +msgstr "Όνομα για νέο αρχείο:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepali" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Δίκτυο" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" -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" @@ -1290,15 +1300,15 @@ msgstr "Δημιουργία" #: EditorHeader.java:292 msgid "New Tab" -msgstr "" +msgstr "Νέα καρτέλα" #: SerialMonitor.java:112 msgid "Newline" -msgstr "" +msgstr "Αλλαγή γραμμής" #: EditorHeader.java:340 msgid "Next Tab" -msgstr "" +msgstr "Επόμενη Καρτέλα" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" @@ -1306,39 +1316,39 @@ msgstr "Όχι" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" -msgstr "" +msgstr "Δεν βρέθηκαν δεδομένα εξουσιοδότησης" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." -msgstr "" +msgstr "Δεν είναι απαραίτητες αλλαγές για την Αυτόματη Μορφοποίηση." #: ../../../processing/app/BaseNoGui.java:665 msgid "No command line parameters found" -msgstr "" +msgstr "Δεν βρέθηκε καμιά παράμετρος για την γραμμή εντολών" #: ../../../processing/app/debug/Compiler.java:200 msgid "No compiled sketch found" -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 "Δεν υπάρχει τέλος γραμμής" #: ../../../processing/app/BaseNoGui.java:665 msgid "No parameters" -msgstr "" +msgstr "Δεν υπάρχουν παράμετροι" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Δεν υπάρχει μεσολαβητής" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1347,39 +1357,39 @@ msgstr "Οχι αλήθεια, είναι ώρα να πάρεις λίγο φρ #: Editor.java:1872 #, java-format msgid "No reference available for \"{0}\"" -msgstr "" +msgstr "Δεν υπάρχει διαθέσιμη αναφορά για το \"{0}\"" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "No sketch" -msgstr "" +msgstr "Κανένα Σχέδιο" #: ../../../processing/app/BaseNoGui.java:428 msgid "No sketchbook" -msgstr "" +msgstr "Κανένα sketchbook" #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" -msgstr "" +msgstr "Δεν βρέθηκαν έγκυρα αρχεία κώδικα" #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "Δεν βρέθηκαν έγκυροι ορισμοί υλικού στον φάκελο {0}." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 msgid "None" -msgstr "" +msgstr "Κανένα" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "Norwegian 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 "Μη επαρκής μνήμη, δείτε στο 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 @@ -1388,11 +1398,11 @@ msgstr "Εντάξει" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." -msgstr "" +msgstr "Ένα αρχείο προστέθηκε στο σχέδιο." #: ../../../processing/app/BaseNoGui.java:455 msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" +msgstr "Μόνο τα --verify, --upload ή --get-pref υποστηρίζονται" #: EditorToolbar.java:41 msgid "Open" @@ -1400,11 +1410,11 @@ msgstr "Άνοιγμα" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" -msgstr "" +msgstr "Άνοιγμα Προσφάτου" #: Editor.java:2688 msgid "Open URL" -msgstr "" +msgstr "Άνοιγμα URL" #: Base.java:636 msgid "Open an Arduino sketch..." @@ -1416,15 +1426,15 @@ 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" @@ -1432,33 +1442,33 @@ msgstr "Περσικά" #: ../../../processing/app/Preferences.java:161 msgid "Persian (Iran)" -msgstr "" +msgstr "Περσικά (Ιράν)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format msgid "Platform {0} (package {1}) is unknown" -msgstr "" +msgstr "Η πλατφόρμα {0} (πακέτο {1}) είναι άγνωστη" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" -msgstr "" +msgstr "Παρακαλώ επιβεβαιώστε την διαγραφή πλακέτας" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "Please confirm library deletion" -msgstr "" +msgstr "Παρακαλώ επιβεβαιώστε την διαγραφή βιβλιοθήκης" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" +msgstr "Παρακαλώ συμπεριλάβετε την βιβλιοθήκη SPI από το μενού Σχέδιο > Συμπερίληψη Βιβλιοθήκης." #: ../../../processing/app/debug/Compiler.java:529 msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" +msgstr "Παρακαλώ συμπεριλάβετε την βιβλιοθήκη Wire από το μενού Σχέδιο > Συμπερίληψη Βιβλιοθήκης." #: ../../../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 "Παρακαλώ επιλέξτε έναν προγραμματιστή από το μενού Εργαλεία -> Προγραμματιστής" #: Preferences.java:110 msgid "Polish" @@ -1466,23 +1476,23 @@ msgstr "Πολωνέζικα" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Θύρα" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -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" @@ -1490,7 +1500,7 @@ msgstr "Προτιμήσεις" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." -msgstr "" +msgstr "Προετοιμασία πλακετών..." #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" @@ -1498,19 +1508,19 @@ 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" @@ -1526,11 +1536,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" @@ -1540,24 +1550,24 @@ msgstr "Πρόβλημα κατα την λήψη του φακέλου δεδο 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 "" +msgstr "Πρόβλημα με την μετονομασία" #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "Επεξεργαστής" #: Editor.java:704 msgid "Programmer" -msgstr "" +msgstr "Προγραμματιστής" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format msgid "Progress {0}" -msgstr "" +msgstr "Πρόοδος {0}" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1565,33 +1575,33 @@ msgstr "Έξοδος" #: ../../../../../app/src/processing/app/Base.java:1233 msgid "RETIRED" -msgstr "" +msgstr "ΠΑΡΟΠΛΙΣΜΕΝΟ" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" -msgstr "" +msgstr "Επανάληψη" #: Editor.java:1078 msgid "Reference" -msgstr "" +msgstr "Παραπομπή" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 msgid "Remove" -msgstr "" +msgstr "Αφαίρεση" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format msgid "Removing library: {0}" -msgstr "" +msgstr "Αφαίρεση βιβλιοθήκης: {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 msgid "Removing..." -msgstr "" +msgstr "Αφαίρεση..." #: EditorHeader.java:300 msgid "Rename" -msgstr "" +msgstr "Μετονομασία" #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 msgid "Replace" @@ -1608,7 +1618,7 @@ msgstr "Αντικατάσταση όλων" #: Sketch.java:1043 #, java-format msgid "Replace the existing version of {0}?" -msgstr "" +msgstr "Αντικατάσταση της υπάρχουσας έκδοσης από {0};" #: FindReplace.java:81 msgid "Replace with:" @@ -1621,12 +1631,12 @@ msgstr "Ρουμάνικα" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format msgid "Running recipe: {0}" -msgstr "" +msgstr "Εκτέλεση συνταγής: {0}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format msgid "Running: {0}" -msgstr "" +msgstr "Εκτέλεση: {0}" #: Preferences.java:114 msgid "Russian" @@ -1639,32 +1649,32 @@ msgstr "Αποθήκευση" #: Editor.java:537 msgid "Save As..." -msgstr "" +msgstr "Αποθήκευση ως..." #: Editor.java:2317 msgid "Save Canceled." -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 "Αποθήκευση φακέλου του σχεδίου ως..." #: ../../../../../app/src/processing/app/Preferences.java:425 msgid "Save when verifying or uploading" -msgstr "" +msgstr "Αποθήκευση κατά την επικύρωση ή φόρτωση" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." -msgstr "" +msgstr "Αποθήκευση..." #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" -msgstr "" +msgstr "Αναζήτηση σε όλες τις Καρτέλες του Σχεδίου" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." @@ -1672,7 +1682,7 @@ 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" @@ -1680,7 +1690,7 @@ msgstr "Επιλέξτε συμπιεσμένο αρχείο ή φάκελο π #: 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" @@ -1689,23 +1699,23 @@ msgstr "Επιλέξτε νέα θέση για το Sketchbook" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 msgid "Select version" -msgstr "" +msgstr "Επιλογή έκδοσης" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "Η επιλεγμένη πλακέτα εξαρτάται από το πυρήνα {0} (δεν είναι εγκατεστημένος). " #: ../../../../../app/src/processing/app/Base.java:374 msgid "Selected board is not available" -msgstr "" +msgstr "Η επιλεγμένη πλακέτα δεν είναι διαθέσιμη" #: ../../../../../app/src/processing/app/Base.java:423 msgid "Selected library is not available" -msgstr "" +msgstr "Η επιλεγμένη βιβλιοθήκη δεν είναι διαθέσιμη" #: SerialMonitor.java:93 msgid "Send" -msgstr "" +msgstr "Αποστολή" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 msgid "Serial Monitor" @@ -1713,34 +1723,34 @@ msgstr "Σειριακή Οθόνη" #: ../../../../../app/src/processing/app/Editor.java:804 msgid "Serial Plotter" -msgstr "" +msgstr "Σειριακό Plotter" #: Serial.java:194 #, java-format 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Επανάληψη φόρτωσης με άλλη σειριακή θύρα;" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Serial ports" -msgstr "" +msgstr "Σειριακές θύρες" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format msgid "Setting build path to {0}" -msgstr "" +msgstr "Ρύθμιση της διαδρομής χτισίματος στο {0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Ρυθμίσεις" #: Base.java:1681 msgid "Settings issues" @@ -1748,23 +1758,23 @@ 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" @@ -1772,32 +1782,32 @@ 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 "Sketchbook" #: Base.java:258 msgid "Sketchbook folder disappeared" @@ -1809,33 +1819,33 @@ msgstr "Θέση Sketchbook:" #: ../../../processing/app/BaseNoGui.java:428 msgid "Sketchbook path not defined" -msgstr "" +msgstr "Η διαδρομή του Sketchbook δεν είναι καθορισμένη." #: ../../../../../app/src/processing/app/Preferences.java:185 msgid "Slovak" -msgstr "" +msgstr "Σλοβάκικα" #: ../../../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" @@ -1843,11 +1853,11 @@ msgstr "Ισπανικά" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" -msgstr "" +msgstr "Ο επιλεγμένος φάκελος/zip αρχείο δε περιέχει μία έγκυρη βιβλιοθήκη" #: ../../../../../app/src/processing/app/Base.java:466 msgid "Starting..." -msgstr "" +msgstr "Εκκίνηση..." #: Base.java:540 msgid "Sunshine" @@ -1855,7 +1865,7 @@ msgstr "Λιακάδα" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Σουηδικά" #: Preferences.java:84 msgid "System Default" @@ -1863,7 +1873,7 @@ msgstr "Προεπιλογές συστήματος" #: ../../../../../app/src/processing/app/Preferences.java:188 msgid "Talossan" -msgstr "" +msgstr "Talossan" #: Preferences.java:116 msgid "Tamil" @@ -1871,30 +1881,30 @@ msgstr "Ταμίλ" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "" +msgstr "Η λέξη κλειδί 'BYTE' πλέον δεν υποστηρίζεται." #: ../../../processing/app/BaseNoGui.java:484 msgid "The --upload option supports only one file at a time" -msgstr "" +msgstr "Η επιλογή --upload υποστηρίζει μόνο ένα αρχείο τι φορά" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "" +msgstr "Η κλάση Client έχει μετονομαστεί σε EthernetClient." #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "" "The IDE includes an updated {0} package, but you're using an older one.\n" "Do you want to upgrade {0}?" -msgstr "" +msgstr "Το IDE περιλαμβάνει ένα ενημερωμένο {0} πακέτο, αλλά χρησιμοποιείτε ένα παλιότερο.\nΘέλετε να ενημερώσετε το {0};" #: 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." #: Editor.java:2147 #, java-format @@ -1902,7 +1912,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 @@ -1917,11 +1927,11 @@ 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 "" @@ -1945,14 +1955,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 "Ο φάκελος του σχεδίου έχει εξαφανιστεί.\nΘα γίνει προσπάθεια αποθήκευσης στην ίδια τοποθεσία,\nαλλά οτιδήποτε εκτός του κώδικα θα χαθεί." #: ../../../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 "Το όνομα του σχεδίου πρέπει να τροποποιηθεί. Τα ονόματα των Σχεδίων\nμπορεί να περιέχουν ASCII χαρακτήρες και αριθμούς (αλλά δεν μπορούν\nνα αρχίζουν με αριθμό). Πρέπει να είναι και μικρότερα από 64 χαρακτήρες." #: Base.java:259 msgid "" @@ -1967,24 +1977,24 @@ msgstr "Ο φάκελος Sketchbook δεν υπάρχει πλέον.\nΤο Ard msgid "" "The specified sketchbook folder contains your copy of the IDE.\n" "Please choose a different folder for your sketchbook." -msgstr "" +msgstr "Ο καθορισμένος φάκελος του sketchbook περιέχει αντίγραφο του IDE.\nΠαρακαλώ επιλέξτε έναν διαφορετικό φάκελο για το sketchbook σας." #: 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προσθέσετε. Δεν θα κάνω τίποτε." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "" "This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" "Are you sure you want to delete it?" -msgstr "" +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" @@ -1993,161 +2003,161 @@ msgstr "Ώρα για δειάλειμα" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format msgid "Tool {0} is not available for your operating system." -msgstr "" +msgstr "Το εργαλείο {0} δεν είναι διαθέσιμο για τον λειτουργικό σας σύστημα." #: Editor.java:663 msgid "Tools" -msgstr "" +msgstr "Εργαλεία" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" -msgstr "" +msgstr "Θέμα" #: Editor.java:1070 msgid "Troubleshooting" -msgstr "" +msgstr "Επίλυση προβλημάτων" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "Τούρκικα" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 msgid "Type" -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 "Ukrainian" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +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 "Αδυναμία σύνδεσης: Λάθος συνθηματικό;" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format msgid "Unable to find {0} in {1}" -msgstr "" +msgstr "Αδυναμία εύρεσης του {0} στο {1}" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Αδυναμία ανοίγματος της σειριακής οθόνης" #: ../../../../../app/src/processing/app/Editor.java:2709 msgid "Unable to open serial plotter" -msgstr "" +msgstr "Αδυναμία ανοίγματος του σειριακού plotter" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" +msgstr "Αδυναμία εύρεσης του Arduino.cc λόγο πιθανού προβλήματος στο δίκτυο." #: Editor.java:1133 Editor.java:1355 msgid "Undo" -msgstr "" +msgstr "Αναίρεση" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format msgid "Unhandled type {0} in context key {1}" -msgstr "" +msgstr "Ανεπίλυτος τύπος {0} στο βασικό πλαίσιο {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format msgid "Unknown sketch file extension: {0}" -msgstr "" +msgstr "Άγνωστη επέκταση αρχείου σχεδίου: {0}" #: 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Για να ενεργοποιήσετε το άνοιγμα URL ή φακέλων, προσθέστε\n \"launcher=/διαδρομή/στην/εφαρμογή\" στο αρχείο preferences.txt" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "Ενημερώσιμο" #: UpdateCheck.java:111 msgid "Update" -msgstr "" +msgstr "Ενημέρωση" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" +msgstr "Ενημέρωση αρχείου σχεδίου σε νέα επέκταση με την αποθήκευση (.ped -> .ino)" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" -msgstr "" +msgstr "Ενημέρωση λίστας εγκατεστημένων βιβλιοθηκών" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" -msgstr "Εξαγωγή" +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 "Χρήση εξωτερικού επεξεργαστή κειμένου" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Όνομα χρήστη:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" +msgstr "Χρησιμοποιώντας την βιβλιοθήκη {0} στην έκδοση {1} στον φάκελο: {2} {3}" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Χρησιμοποιώντας την βιβλιοθήκη {0} στον φάκελο: {1} {2}" #: ../../../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" @@ -2155,62 +2165,62 @@ msgstr "Επικύρωση" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "Επικύρωση του κώδικα μετά την φόρτωση" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Επικύρωση/Μεταγλώττιση" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." -msgstr "" +msgstr "Επικύρωση και φόρτωση..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 msgid "Verifying archive integrity..." -msgstr "" +msgstr "Επικύρωση ακεραιότητας αρχειοθέτησης..." #: ../../../../../app/src/processing/app/Base.java:454 msgid "Verifying..." -msgstr "" +msgstr "Επικύρωση..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Έκδοση {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 msgid "Version unknown" -msgstr "" +msgstr "Άγνωστη έκδοση" #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Έκδοση {0}" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamese" #: Editor.java:1105 msgid "Visit Arduino.cc" -msgstr "" +msgstr "Επισκεφτείτε το Arduino.cc" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" -msgstr "" +msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η κατηγορία '{0}' στην βιβλιοθήκη {1} δεν είναι έγγυρη. Επιλογή της '{2}'" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format msgid "WARNING: Spurious {0} folder in '{1}' library" -msgstr "" +msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Παρασιτικός {0} φάκελος στην '{1}' βιβλιοθήκη" #: ../../../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 "" +msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η βιβλιοθήκη {0} ισχυρίζεται πως τρέχει σε αρχιτεκτονικές(ή) {1} και μπορεί να μην είναι συμβατή με την τρέχουσα πλακέτα σας που τρέχει σε {2} αρχιτεκτονικές(ή)." #: Base.java:2128 msgid "Warning" @@ -2220,68 +2230,68 @@ msgstr "Ειδοποίηση" msgid "" "Warning: This core does not support exporting sketches. Please consider " "upgrading it or contacting its author" -msgstr "" +msgstr "Προειδοποίηση; Αυτός ο πυρήνας δεν υποστηρίζει την εξαγωγή σχεδίων. Παρακαλώ συμβουλευτείτε τον δημιουργό της." #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" +msgstr "Προειδοποίηση: Το αρχείο {0} συνδέεται σε μία απόλυτη διαδρομή {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Προειδοποίηση: Εξαναγκασμένη εμπιστοσύνη σε μη έμπιστες συνεισφορές" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Προειδοποίηση: Εξαναγκασμένη εκτέλεση μη έμπιστου σεναρίου ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Προειδοποίηση: Μη έμπιστη συνεισφορά, παράληψη εκτέλεση σεναρίου ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format msgid "" "Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" " converted to {2}. Consider upgrading this core." -msgstr "" +msgstr "Προειδοποίηση: Το platform.txt από τον πυρήνα '{0}' περιέχει ξεπερασμένο {1}, αυτόματη μετατροπή σε {2}. Εξετάστε την ανανέωση αυτού του πυρήνα." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 msgid "" "Warning: platform.txt from core '{0}' misses property '{1}', using default " "value '{2}'. Consider upgrading this core." -msgstr "" +msgstr "Προειδοποίηση: Στο platform.txt από τον πυρήνα '{0}' λείπει η ιδιότητα '{1}', χρήση της προκαθορισμένης τιμής '{2}'. Σκεφτείτε την ενημέρωση αυτού του πυρήνα." #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" "Warning: platform.txt from core '{0}' misses property {1}, automatically set" " to {2}. Consider upgrading this core." -msgstr "" +msgstr "Προειδοποίηση: Στο platform.txt από τον πυρήνα '{0}' λείπει η ιδιότητα '{1}', αυτόματη ρύθμιση στην τιμή '{2}'. Σκεφτείτε την ενημέρωση αυτού του πυρήνα." #: ../../../../../app/src/processing/app/Preferences.java:190 msgid "Western Frisian" -msgstr "" +msgstr "Western Frisian" #: 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" @@ -2289,33 +2299,33 @@ 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 ίδιου ονόματος με το σχέδιο." #: ../../../../../app/src/processing/app/Base.java:2312 msgid "You can't import a folder that contains your sketchbook" -msgstr "" +msgstr "Δεν μπορείτε να εισάγετε έναν φάκελο που περιέχει το sketchbook σας" #: 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 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: 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" @@ -2324,7 +2334,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 "" @@ -2336,13 +2346,13 @@ msgstr "Έφτασες το όριο αυτόματης ονομασίας τω msgid "" "Your copy of the IDE is installed in a subfolder of your settings folder.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Το αντίγραφο του IDE είναι εγκατεστημένο σε έναν υποφάκελο του φακέλου ρυθμίσεων σας.\nΠαρακαλώ μετακινήστε το IDE σε κάποιον άλλον φάκελο." #: ../../../processing/app/BaseNoGui.java:771 msgid "" "Your copy of the IDE is installed in a subfolder of your sketchbook.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Το αντίγραφο του IDE είναι εγκατεστημένο σε έναν υποφάκελο του sketchbook σας.\nΠαρακαλώ μετακινήστε το IDE σε κάποιον άλλον φάκελο." #: Base.java:2638 msgid "ZIP files or folders" @@ -2355,7 +2365,7 @@ msgstr "Το συμπιεσμένο αρχείο δεν περιέχει βιβ #: Sketch.java:364 #, java-format msgid "\".{0}\" is not a valid extension." -msgstr "" +msgstr "\".{0}\" δεν είναι έγκυρη επέκταση." #: SketchCode.java:258 #, java-format @@ -2364,7 +2374,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 "" @@ -2372,7 +2382,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" #: debug/Compiler.java:415 msgid "" @@ -2380,192 +2390,192 @@ 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, η κλάση Client στην βιβλιοθήκη Ethernet \nέχει μετονομαστεί σε 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, η κλάση Server στην βιβλιοθήκη Ethernet \nέχει μετονομαστεί σε 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 "\nΑπό το Arduino 1.0, η κλάση Udp στην βιβλιοθήκη Ethernet \nέχει μετονομαστεί σε 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() έχει μετονομαστεί \nWire.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() έχει μετονομαστεί \nWire.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 "To createNewFile() επέστρεψε σφάλμα" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "ενεργοποιημένο στο Αρχείο > Επιλογές." #: ../../../../../app/src/processing/app/Editor.java:1352 msgid "http://www.arduino.cc/" -msgstr "" +msgstr "http://www.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" #: Preferences.java:625 #, java-format msgid "ignoring invalid font size {0}" -msgstr "" +msgstr "αγνόηση μη έγκυρου μεγέθους γραμματοσειράς {0}" #: Editor.java:936 Editor.java:943 msgid "name is null" -msgstr "" +msgstr "το όνομα είναι κενό" #: Editor.java:932 msgid "serialMenu is null" -msgstr "" +msgstr "το σειριακόΜενού είναι κενό" #: debug/Uploader.java:195 #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "" +msgstr "η επιλεγμένη σειριακή θύρα {0} δεν υπάρχει ή η πλακέτα σας δεν είναι συνδεδεμένη" #: ../../../processing/app/Base.java:389 #, java-format msgid "unknown option: {0}" -msgstr "" +msgstr "άγνωστη παράμετρος: {0}" #: Preferences.java:391 msgid "upload" -msgstr "" +msgstr "φόρτωση" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format msgid "version {0}" -msgstr "" +msgstr "έκδοση {0}" #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format msgid "{0} - {1} | Arduino {2}" -msgstr "" +msgstr "{0} - {1} | Arduino {2}" #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format msgid "{0} file signature verification failed" -msgstr "" +msgstr "{0} αρχείο απέτυχε η επαλήθευση της υπογραφής" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format msgid "{0} file signature verification failed. File ignored." -msgstr "" +msgstr "{0} αρχείο απέτυχε η επαλήθευση της υπογραφής. Αγνόηση αρχείου." #: Editor.java:380 #, java-format msgid "{0} files added to the sketch." -msgstr "" +msgstr "{0} αρχεία προστέθηκαν στο σχέδιο." #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format msgid "{0} libraries" -msgstr "" +msgstr "{0} βιβλιοθήκες" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "το {0} πρέπει να είναι φάκελος" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format msgid "{0} pattern is missing" -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}" #: ../../../processing/app/Base.java:519 #, java-format msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" +msgstr "{0}: Μη έγκυρο όρισμα στο --pref, πρέπει να έχει την μορφή \"pref=τιμή\"" #: ../../../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}: Μη έγκυρο όνομα πλακέτας, πρέπει να έχει την μορφή \"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 "" +msgstr "{0}: Μη έγκυρη επιλογή \"{1}\" για την πλακέτα \"{2}\"" #: ../../../processing/app/Base.java:507 #, java-format msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" +msgstr "{0}: Μη έγκυρη επιλογή για την πλακέτα \"{1}\"" #: ../../../processing/app/Base.java:502 #, java-format msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" +msgstr "{0}: Μη έγκυρη επιλογή, πρέπει να είναι της μορφής \"όνομα=τιμή\"" #: ../../../processing/app/Base.java:486 #, java-format msgid "{0}: Unknown architecture" -msgstr "" +msgstr "{0}: Άγνωστη αρχιτεκτονική " #: ../../../processing/app/Base.java:491 #, java-format msgid "{0}: Unknown board" -msgstr "" +msgstr "{0}: Άγνωστη πλακέτα" #: ../../../processing/app/Base.java:481 #, java-format msgid "{0}: Unknown package" -msgstr "" +msgstr "{0}: Άγνωστο πακέτο" 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 e14f97c90..b205c691d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_el_GR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_el_GR.properties @@ -8,10 +8,12 @@ # Translators: # Translators: # Translators: +# Translators: # Dimitris Zervas <01ttouch@gmail.com>, 2012 +# firewalker , 2015 # Spyridon Papanastasiou , 2015 # \u0393\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2 \u03a3\u03c6\u03b1\u03ba\u03b9\u03b1\u03bd\u03ac\u03ba\u03b7\u03c2 , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Greek (Greece) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Greek (Greece) (http\://www.transifex.com/mbanzi/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) @@ -24,41 +26,41 @@ #, java-format \ Used\:\ {0}=\u03a3\u03b5 \u03c7\u03c1\u03ae\u03c3\u03b7\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u03a4\u03bf \u00abKeyboard\u00bb \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u03a4\u03bf \u00abMouse\u00bb \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 'arch' \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd\! \u0394\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf http\://goo.gl/gfFJzU \u03b3\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03bc\u03cc\u03bd\u03bf \u03cc\u03c4\u03b1\u03bd \u03c4\u03bf Arduino \u03b4\u03b5\u03bd \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 -!(legacy)= +(legacy)=(\u03c0\u03b1\u03bb\u03b1\u03b9\u03cc) #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=\u03c4\u03bf --curdir \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd #: ../../../processing/app/Base.java:468 ---verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=\u03c4\u03b1 --verbose, --verbose-upload \u03ba\u03b1\u03b9 --verbose-build \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03bc\u03cc\u03bd\u03bf \u03bc\u03b1\u03b6\u03af \u03bc\u03b5 \u03c4\u03b1 --verify \u03ae --upload +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=\u03c4\u03b1 --verbose, --verbose-upload \u03ba\u03b1\u03b9 --verbose-build \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03bc\u03cc\u03bd\u03bf \u03bc\u03b1\u03b6\u03af \u03bc\u03b5 \u03c4\u03b1 --verify \u03ae --upload #: Sketch.java:746 -!.pde\ ->\ .ino= +.pde\ ->\ .ino=.pde -> .ino #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03c1\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 {0}\u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2{1} \u03c3\u03b1\u03c2 #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03c1\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 {0}\u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2{1} \u03ba\u03b1\u03b9 {2}\u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03c3\u03b1\u03c2{3} \u03c3\u03b1\u03c2 #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03c1\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 {0}\u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2{1} \u03c3\u03b1\u03c2 #: 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.= \u0398\u03b5\u03c2 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b9\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf
\u03c0\u03c1\u03b9\u03bd \u03bd\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03b9\u03c2;

\u0391\u03bd \u03b4\u03b5\u03bd \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2, \u03bf\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03bf\u03c5 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03bf\u03cd\u03bd. @@ -80,53 +82,53 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!A\ newer\ {0}\ package\ is\ available= +A\ newer\ {0}\ package\ is\ available=\u0388\u03bd\u03b1 \u03bd\u03ad\u03bf {0} \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf #: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= +A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=\u0388\u03bd\u03b1\u03c2 \u03c5\u03c0\u03bf\u03c6\u03ac\u03ba\u03b5\u03bb\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 sketchbook \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03b3\u03c5\u03c1\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 #: Editor.java:1116 -!About\ Arduino= +About\ Arduino=\u03a0\u03b5\u03c1\u03af \u03c4\u03bf\u03c5 Arduino #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 ZIP... #: Editor.java:650 -!Add\ File...= +Add\ File...=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5... #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= +Additional\ Boards\ Manager\ URLs=\u0395\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd URLs \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03a0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = +Additional\ Boards\ Manager\ URLs\:\ =\u0395\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd URLs \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03a0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd\: #: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= +Afrikaans=\u0391\u03c6\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:96 -!Albanian= +Albanian=\u0391\u03bb\u03b2\u03b1\u03bd\u03b9\u03ba\u03ac #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= +All=\u038c\u03bb\u03b1 #: 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=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1 \u03b5\u03c0\u03b9\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5.\n\u039c\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ba\u03b1\u03b8\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9\n\u03c4\u03b7\u03bd \u03c0\u03b1\u03bb\u03b9\u03ac \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7. \u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9.\n #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= +An\ error\ occurred\ while\ updating\ libraries\ index\!=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd\! #: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= +An\ error\ occurred\ while\ uploading\ the\ sketch=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: ../../../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=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7/\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: 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 @@ -138,25 +140,25 @@ Arabic=\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac Aragonese=\u0391\u03c1\u03b1\u03b3\u03bf\u03bd\u03af\u03b1\u03c2 #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c9\u03c2\: #: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= +Archive\ sketch\ canceled.=\u0391\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. #: 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.=\u0397 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b5\u03c0\u03b5\u03b9\u03b4\u03ae\n\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c3\u03c9\u03c3\u03c4\u03ac. #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2 Arduino ARM (32-bits) #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2 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=\u03a4\u03bf Arduino \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b4\u03b9\u03ba\u03ac \u03c4\u03bf\u03c5 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1\n\u03ba\u03b1\u03b9 \u03ac\u03bb\u03bb\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03c5 \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03bf\u03c5\u03bd \u03c3\u03b5 .ino \u03ae .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. @@ -165,213 +167,213 @@ 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.=\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 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 Sketchbook. #: ../../../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}"?=\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03c2 \u03c0\u03c9\u03c2 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf "{0}"; #: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03c2 \u03c0\u03c9\u03c2 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf; #: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= +Argument\ required\ for\ --board=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf --board #: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= +Argument\ required\ for\ --port=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf --port #: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= +Argument\ required\ for\ --pref=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf --pref #: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= +Argument\ required\ for\ --preferences-file=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf --preferences-file #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format -!Argument\ required\ for\ {0}= +Argument\ required\ for\ {0}=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf {0} #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u0391\u03c1\u03bc\u03ad\u03bd\u03b9\u03ba\u03b1 #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u0391\u03c5\u03c3\u03c4\u03c1\u03b9\u03b1\u03ba\u03ac #: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= +Authorization\ required=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7 #: tools/AutoFormat.java:91 -!Auto\ Format= +Auto\ Format=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u0394\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7 #: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= +Auto\ Format\ finished.=\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u0394\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03bd\u03af\u03c7\u03bd\u03b5\u03c5\u03c3\u03b7 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03b4\u03b9\u03b1\u03bc\u03b5\u03c3\u03bf\u03bb\u03b1\u03b2\u03b7\u03c4\u03ae #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=URL \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bc\u03b5\u03c3\u03bf\u03bb\u03b1\u03b2\u03b7\u03c4\u03ae\: #: SerialMonitor.java:110 -!Autoscroll= +Autoscroll=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03ba\u03cd\u03bb\u03b9\u03c3\u03b7 #: Editor.java:2619 #, java-format -!Bad\ error\ line\:\ {0}= +Bad\ error\ line\:\ {0}=\u039a\u03b1\u03ba\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2\: {0} #: Editor.java:2136 -!Bad\ file\ selected= +Bad\ file\ selected=\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03c4\u03b7\u03ba\u03b5 \u03ba\u03b1\u03ba\u03cc \u03b1\u03c1\u03c7\u03b5\u03af\u03bf #: ../../../processing/app/Preferences.java:149 -!Basque= +Basque=\u0392\u03b1\u03c3\u03ba\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=\u039b\u03b5\u03c5\u03ba\u03bf\u03c1\u03c9\u03c3\u03b9\u03ba\u03ac #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format -!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=\u0397 \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 {0} (\u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1 {1}, \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf {2}) \u03b5\u03af\u03bd\u03b1\u03b9 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 #: ../../../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}=\u0397 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 {0}\:{1}\:{2} \u03b4\u03b5\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03af\u03b6\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae ''build.board''. \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c3\u03c4\u03bf\: {3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\: #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= +Boards\ Manager=\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u03a0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd #: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= +Boards\ Manager...=\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u03a0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd... #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= +Boards\ included\ in\ this\ package\:=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf\: #: ../../../processing/app/debug/Compiler.java:1273 #, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= +Bootloader\ file\ specified\ but\ missing\:\ {0}=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 Bootloader \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03b1\u03bb\u03bb\u03ac \u03bb\u03b5\u03af\u03c0\u03b5\u03b9\: {0} #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u0392\u03bf\u03c3\u03bd\u03b9\u03b1\u03ba\u03ac #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=\u0391\u03bc\u03c6\u03cc\u03c4\u03b5\u03c1\u03b1 NL & CR #: Preferences.java:81 Browse=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 #: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= +Build\ options\ changed,\ rebuilding\ all=\u039f\u03b9 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u039a\u03c4\u03b9\u03c3\u03af\u03bc\u03b1\u03c4\u03bf\u03c2 \u03ac\u03bb\u03bb\u03b1\u03be\u03b1\u03bd, \u03b1\u03bd\u03b1\u03b4\u03cc\u03bc\u03b7\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd #: ../../../../../app/src/processing/app/Base.java:1210 -!Built-in\ Examples= +Built-in\ Examples=\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b1 \u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1 #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=\u0392\u03bf\u03c5\u03bb\u03b3\u03ac\u03c1\u03b9\u03ba\u03b1 #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=Burmese (Myanmar) #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=\u0393\u03c1\u03ac\u03c8\u03b9\u03bc\u03bf 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)...=\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 Bootloader \u03c3\u03c4\u03b7\u03bd \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u0399/\u039f (\u03af\u03c3\u03c9\u03c2 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bb\u03af\u03b3\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf)... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= +CRC\ doesn't\ match.\ File\ is\ corrupted.=\u039f CRC \u03b4\u03b5\u03bd \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03b5\u03b9. \u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03c4\u03b1\u03ba\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf. #: ../../../processing/app/Base.java:379 #, java-format -!Can\ only\ pass\ one\ of\:\ {0}= +Can\ only\ pass\ one\ of\:\ {0}=\u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bc\u03cc\u03bd\u03bf \u03bd\u03b1 \u03c0\u03b5\u03c1\u03ac\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc\: {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=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03b7 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u039a\u03b1\u03bd\u03b1\u03b4\u03ac #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 Cancel=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 #: Sketch.java:455 -!Cannot\ Rename= +Cannot\ Rename=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u039c\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af #: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= +Cannot\ specify\ any\ sketch\ files=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: SerialMonitor.java:112 -!Carriage\ return= +Carriage\ return=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 #: Preferences.java:87 Catalan=\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac #: Preferences.java:419 -!Check\ for\ updates\ on\ startup= +Check\ for\ updates\ on\ startup=\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=Chinese (China) #: ../../../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) #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= +Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\u039a\u03bb\u03af\u03ba \u03b3\u03b9\u03b1 \u03bb\u03af\u03c3\u03c4\u03b1 URLs \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 \u03b1\u03bd\u03b5\u03c0\u03af\u03c3\u03b7\u03bc\u03c9\u03bd \u03c0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd #: Editor.java:521 Editor.java:2024 -!Close= +Close=\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf #: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= +Comment/Uncomment=\u03a3\u03c7\u03bf\u03bb\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2/\u0391\u03c0\u03bf\u03c3\u03c7\u03bf\u03bb\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = +Compiler\ warnings\:\ =\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2 \u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03c4\u03ae\: #: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= +Compiling\ sketch...=\u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5... #: Editor.java:1157 Editor.java:2707 -!Copy= +Copy=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae #: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= +Copy\ as\ HTML=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c9\u03c2 HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2 #: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= +Copy\ for\ Forum=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c0\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5\u03bc #: Sketch.java:1089 #, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c4\u03bf\u03c5 "{0}" \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf. #: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= +Could\ not\ copy\ to\ a\ proper\ location.=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c3\u03b5 \u03bc\u03af\u03b1 \u03c3\u03c9\u03c3\u03c4\u03ae \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1. #: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= +Could\ not\ create\ the\ sketch\ folder.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. #: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= +Could\ not\ create\ the\ sketch.=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf. #: Sketch.java:617 #, java-format -!Could\ not\ delete\ "{0}".= +Could\ not\ delete\ "{0}".=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c4\u03bf "{0}". #: Sketch.java:1066 #, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c4\u03bf \u03c5\u03c0\u03ac\u03c1\u03c7\u03c9\u03bd "{0}" \u03b1\u03c1\u03c7\u03b5\u03af\u03bf. #: Base.java:2533 Base.java:2556 #, java-format @@ -379,15 +381,15 @@ Could\ not\ delete\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af #: ../../../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?=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03c4\u03bf boards.txt \u03c3\u03c4\u03bf {0}. \u0395\u03af\u03bd\u03b1\u03b9 \u03c0\u03c1\u03bf-1.5; #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf {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}=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf {0} \u03b1\u03c0\u03cc \u03c4\u03bf \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf {1} #: Base.java:1934 #, java-format @@ -398,13 +400,13 @@ Could\ not\ open\ the\ URL\n{0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b Could\ not\ open\ the\ folder\n{0}=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\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.=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03c3\u03c9\u03c3\u03c4\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf,\n\u03ba\u03b1\u03b9 \u03af\u03c3\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ce\u03c1\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c3\u03b1\u03c2 \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03ac\u03bb\u03bb\u03bf \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5. #: Sketch.java:1768 -!Could\ not\ re-save\ sketch= +Could\ not\ re-save\ sketch=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b5\u03c0\u03b1\u03bd-\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: 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.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03b8\u03ad\u03bc\u03b1\u03c4\u03bf\u03c2.\n\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 \u03c4\u03bf Arduino. #: 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. @@ -415,124 +417,124 @@ Could\ not\ remove\ old\ version\ of\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\ #: Sketch.java:483 Sketch.java:528 #, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c4\u03bf {0} \u03c3\u03b5 {1} #: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= +Could\ not\ rename\ the\ sketch.\ (0)=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (0) #: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= +Could\ not\ rename\ the\ sketch.\ (1)=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (1) #: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= +Could\ not\ rename\ the\ sketch.\ (2)=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (2) #: Base.java:2492 #, 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} #: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= +Couldn't\ archive\ sketch=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= +Couldn't\ determine\ program\ size\:\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03c4\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2\: {0} #: Sketch.java:616 -!Couldn't\ do\ it= +Couldn't\ do\ it=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 #: 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.=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03bd \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03bc\u03b9\u03b1 \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b8\u03cd\u03c1\u03b1. \u0395\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c0\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03b8\u03cd\u03c1\u03b1. \u0391\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c9\u03c3\u03c4\u03ae, \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03b9\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf reset \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03c4\u03b7\u03c2 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2. #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=Croatian #: Editor.java:1149 Editor.java:2699 -!Cut= +Cut=\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae #: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= +Czech\ (Czech\ Republic)=\u03a4\u03c3\u03ad\u03c7\u03b9\u03ba\u03b1 (\u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2 \u03a4\u03c3\u03b5\u03c7\u03af\u03b1\u03c2) #: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= +Danish\ (Denmark)=\u0394\u03b1\u03bd\u03b9\u03ba\u03ac (\u0394\u03b1\u03bd\u03af\u03b1) #: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= +Decrease\ Indent=\u039c\u03b5\u03af\u03c9\u03c3\u03b7 \u0395\u03c3\u03bf\u03c7\u03ae\u03c2 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= +Default=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae #: EditorHeader.java:314 Sketch.java:591 -!Delete= +Delete=\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae #: 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=\u0397 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03b4\u03b5\u03bd \u03b1\u03c0\u03bf\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9, \u03b5\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c0\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03b8\u03cd\u03c1\u03b1 \u03ae \u03b3\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c9\u03c3\u03c4\u03cc RESET \u03c4\u03b7\u03c2 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae. #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=\u0391\u03c0\u03cc\u03c1\u03c1\u03b9\u03c8\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5; #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b1\u03c1\u03b9\u03b8\u03bc\u03ce\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= +Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf {0};\n\u0391\u03bd \u03bd\u03b1\u03b9, \u03b4\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bc\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03c0\u03bb\u03ad\u03bf\u03bd \u03c4\u03bf {0}. #: Editor.java:2064 -!Don't\ Save= +Don't\ Save=\u039c\u03b7\u03bd \u03b3\u03af\u03bd\u03b5\u03b9 \u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 #: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= +Done\ Saving.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2. #: Editor.java:2510 -!Done\ burning\ bootloader.= +Done\ burning\ bootloader.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 bootloader. #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= +Done\ compiling=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\u03c2 #: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= +Done\ compiling.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\u03c2. #: Editor.java:2564 -!Done\ printing.= +Done\ printing.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7\u03c2. #: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= +Done\ uploading=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 #: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= +Done\ uploading.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= +Downloaded\ {0}kb\ of\ {1}kb.=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 {0}kb \u03b1\u03c0\u03cc {1}kb. #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= +Downloading\ boards\ definitions.=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03bf\u03c1\u03b9\u03c3\u03bc\u03ce\u03bd \u03c4\u03c9\u03bd \u03c0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= +Downloading\ libraries\ index...=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format -!Downloading\ library\:\ {0}= +Downloading\ library\:\ {0}=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= +Downloading\ platforms\ index...=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03c0\u03bb\u03b1\u03c4\u03c6\u03bf\u03c1\u03bc\u03ce\u03bd... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format -!Downloading\ tools\ ({0}/{1}).= +Downloading\ tools\ ({0}/{1}).=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd ({0}/{1}). #: Preferences.java:91 Dutch=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac (\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03af\u03b1) #: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= +Edison\ Help=\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1 Edison #: Editor.java:1130 -!Edit= +Edit=\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 #: Preferences.java:370 Editor\ font\ size\:\ =\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2\: @@ -541,23 +543,23 @@ Editor\ font\ size\:\ =\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u Editor\ language\:\ =\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= +Enable\ Code\ Folding=\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u0391\u03bd\u03b1\u03b4\u03af\u03c0\u03bb\u03c9\u03c3\u03b7\u03c2 \u039a\u03ce\u03b4\u03b9\u03ba\u03b1 #: Preferences.java:92 English=\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=English (United Kingdom) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= +Enter\ a\ comma\ separated\ list\ of\ urls=\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b1\u03b9 \u03bc\u03af\u03b1 \u03bb\u03af\u03c3\u03c4\u03b1 urls \u03c7\u03c9\u03c1\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b1 \u03b1\u03c0\u03cc \u03ba\u03cc\u03bc\u03bc\u03b1 #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= +Enter\ additional\ URLs,\ one\ for\ each\ row=\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd URLs, \u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03ba\u03ac\u03b8\u03b5 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae #: Editor.java:1062 -!Environment= +Environment=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 @@ -565,35 +567,35 @@ English=\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac Error=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 #: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= +Error\ adding\ file=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 #: debug/Compiler.java:369 -!Error\ compiling.= +Error\ compiling.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\u03c2. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format -!Error\ downloading\ {0}= +Error\ downloading\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2 {0} #: Base.java:1674 Error\ getting\ the\ Arduino\ data\ folder.=\u039b\u03ac\u03b8\u03bf\u03c2 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03bf\u03c5 Arduino #: Serial.java:593 #, java-format -!Error\ inside\ Serial.{0}()= +Error\ inside\ Serial.{0}()=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03bf \u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc.{0}() #: ../../../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}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 {0} #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2 "{0}". #: ../../../processing/app/Serial.java:119 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= +Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2 "{0}". \u03a3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03b5\u03c5\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7 \u03c3\u03c4\u03bf http\://playground.arduino.cc/Linux/All\#Permission #: Preferences.java:277 Error\ reading\ preferences=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ac\u03bd\u03b1\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03c9\u03bd @@ -605,170 +607,174 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= +Error\ running\ post\ install\ script=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03b5\u03bd\u03b1\u03c1\u03af\u03bf\u03c5 \u03c0\u03c1\u03bf \u03c4\u03b7\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c3\u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03bc\u03b5\u03b8\u03cc\u03b4\u03bf\u03c5\u03c2 \u03b1\u03bd\u03b1\u03ba\u03ac\u03bb\u03c5\u03c8\u03b7\u03c2\: #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c5\u03bb\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2 "{0}". #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= +Error\ while\ burning\ bootloader.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae bootloader. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae bootloader\: \u0391\u03c0\u03bf\u03c5\u03c3\u03af\u03b1 '{0}' \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2 #: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\: \u0391\u03c0\u03bf\u03c5\u03c3\u03af\u03b1 '{0}' \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2 #: 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} #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7. + +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= #: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= +Error\ while\ uploading=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\: \u0391\u03c0\u03bf\u03c5\u03c3\u03af\u03b1 '{0}' \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2 #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= +Error\ while\ verifying=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 #: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= +Error\ while\ verifying/uploading=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7/\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 #: Preferences.java:93 Estonian=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac (\u0395\u03c3\u03b8\u03bf\u03bd\u03af\u03b1) #: Editor.java:516 -!Examples= +Examples=\u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1 #: ../../../../../app/src/processing/app/Base.java:1244 -!Examples\ from\ Custom\ Libraries= +Examples\ from\ Custom\ Libraries=\u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1 \u03b1\u03c0\u03cc \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 #: ../../../../../app/src/processing/app/Base.java:1222 -!Examples\ from\ Libraries= +Examples\ from\ Libraries=\u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1 \u03b1\u03c0\u03cc \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 #: ../../../../../app/src/processing/app/Editor.java:753 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0397 \u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5, \u03bf\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03c0\u03c1\u03ce\u03c4\u03b1. #: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= +Export\ compiled\ Binary=\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u0394\u03c5\u03b1\u03b4\u03b9\u03ba\u03bf\u03cd #: ../../../processing/app/Base.java:416 #, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= +Failed\ to\ open\ sketch\:\ "{0}"=\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5\: "{0}" #: Editor.java:491 -!File= +File=\u0391\u03c1\u03c7\u03b5\u03af\u03bf #: Preferences.java:94 Filipino=\u03a6\u03b9\u03bb\u03bb\u03b9\u03c0\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= +Filter\ your\ search...=\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2... #: FindReplace.java:124 FindReplace.java:127 Find=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 #: Editor.java:1249 -!Find\ Next= +Find\ Next=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5 #: Editor.java:1259 -!Find\ Previous= +Find\ Previous=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c5 #: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= +Find\ in\ Reference=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03c1\u03b1\u03c0\u03bf\u03bc\u03c0\u03ae #: Editor.java:1234 -!Find...= +Find...=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7... #: FindReplace.java:80 Find\:=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=\u03a6\u03b9\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= +Fix\ Encoding\ &\ Reload=\u0395\u03c0\u03b9\u03c3\u03ba\u03b5\u03c5\u03ae \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 #: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=\u0393\u03b9\u03b1 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd, \u03b4\u03b5\u03af\u03c4\u03b5\: http\://www.arduino.cc/en/Guide/Libraries\n #: ../../../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}=\u0395\u03be\u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 1200bps \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1/\u03ba\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf \u03c3\u03c4\u03b7\u03bd \u03b8\u03cd\u03c1\u03b1 {0} #: Preferences.java:95 French=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac #: Editor.java:1097 -!Frequently\ Asked\ Questions= +Frequently\ Asked\ Questions=\u03a3\u03c5\u03c7\u03bd\u03ad\u03c2 \u0395\u03c1\u03c9\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 #: Preferences.java:96 -!Galician= +Galician=\u0393\u03b1\u03bb\u03b9\u03ba\u03b9\u03b1\u03ba\u03ac #: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= +Galician\ (Spain)=\u0393\u03b1\u03bb\u03b9\u03ba\u03b9\u03b1\u03ba\u03ac (\u0399\u03c3\u03c0\u03b1\u03bd\u03af\u03b1) #: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= +Galileo\ Help=\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1 Galileo #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=\u0393\u03b5\u03c9\u03c1\u03b3\u03b9\u03b1\u03bd\u03ac #: Preferences.java:97 German=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac #: Editor.java:1054 -!Getting\ Started= +Getting\ Started=\u039e\u03b5\u03ba\u03b9\u03bd\u03ce\u03bd\u03c4\u03b1\u03c2 #: ../../../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.=\u039f\u03b9 \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b2\u03bb\u03b7\u03c4\u03ad\u03c2 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd {0} bytes ({2}%%) \u03b4\u03c5\u03bd\u03b1\u03bc\u03b9\u03ba\u03ae\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7\u03c2, \u03b1\u03c6\u03ae\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 {3} bytes \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c0\u03b9\u03ba\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b2\u03bb\u03b7\u03c4\u03ad\u03c2. \u03a4\u03bf \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 {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.=\u039f\u03b9 \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b2\u03bb\u03b7\u03c4\u03ad\u03c2 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd {0} bytes \u03b4\u03c5\u03bd\u03b1\u03bc\u03b9\u03ba\u03ae\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7\u03c2. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=\u03a0\u03ae\u03b3\u03b1\u03b9\u03bd\u03b5 \u03c3\u03c4\u03b7\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=\u03a0\u03ae\u03b3\u03b1\u03b9\u03bd\u03b5 \u03c3\u03c4\u03b7\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae... #: Preferences.java:98 Greek=\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=\u0395\u03b2\u03c1\u03b1\u03ca\u03ba\u03ac #: Editor.java:1015 -!Help= +Help=\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1 #: Preferences.java:99 Hindi=\u03a7\u03af\u03bd\u03c4\u03b9 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=\u038c\u03bd\u03bf\u03bc\u03b1 \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03ae\: #: 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?=\u03a4\u03b9 \u03bb\u03ad\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c0\u03c1\u03ce\u03c4\u03b1 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf\n\u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03b5\u03c4\u03b5; #: Sketch.java:882 -!How\ very\ Borges\ of\ you= +How\ very\ Borges\ of\ you=\u03a0\u03bf\u03bb\u03cd "Borges" \u03b1\u03c0\u03cc \u03bc\u03ad\u03c1\u03bf\u03c5\u03c2 \u03c3\u03b1\u03c2 #: Preferences.java:100 Hungarian=\u039f\u03c5\u03b3\u03b3\u03b1\u03c1\u03ad\u03b6\u03b9\u03ba\u03b1 @@ -783,23 +789,23 @@ Ignoring\ bad\ library\ name=\u03a4\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03cc\ Ignoring\ sketch\ with\ bad\ name=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 #: ../../../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?=\u03a3\u03c4\u03bf Arduino 1.0, \u03b7 \u03c0\u03c1\u03bf\u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03b9\n\u03b1\u03c0\u03cc .pde \u03c3\u03b5 .ino. \u039d\u03ad\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1 (\u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b1\u03c5\u03c4\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd\n\u03bc\u03b5 \u03c4\u03bf "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03a9\u03c2") \u03b8\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03bd\u03ad\u03b1 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7. \u0397 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7\n\u03c4\u03c9\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b8\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03bf\u03cd\u03bd \u03ba\u03b1\u03c4\u03ac \u03c3\u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7, \u03b1\u03bb\u03bb\u03ac \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5\n\u03bd\u03b1 \u03c4\u03bf \u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf\u03bd \u03b4\u03b9\u03ac\u03bb\u03bf\u03b3\u03bf \u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2.\n\n\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7\u03c2; #: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= +Include\ Library=\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=\u0395\u03c3\u03c6\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 IDE #: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= +Increase\ Indent=\u0391\u03cd\u03be\u03b7\u03c3\u03b7 \u0395\u03c3\u03bf\u03c7\u03ae\u03c2 #: Preferences.java:101 Indonesian=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac #: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= +Initializing\ packages...=\u0391\u03c1\u03c7\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c0\u03b1\u03ba\u03ad\u03c4\u03c9\u03bd... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -807,36 +813,36 @@ Indonesian=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=\u0397 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=\u0395\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= +Installing\ boards...=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2\:{0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd ({0}/{1})... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7... #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=\u0392\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b7 \u03ad\u03b3\u03b3\u03c5\u03c1\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03bf {0}\: {1} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format -!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=\u039c\u03b7 \u03ad\u03b3\u03b3\u03c5\u03c1\u03b7 \u03c0\u03b1\u03c1\u03ac\u03b8\u03b5\u03c3\u03b7\: \u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1\u03c2 [{0}] \u03ba\u03bb\u03b5\u03b9\u03c3\u03af\u03bc\u03b1\u03c4\u03bf\u03c2. #: Preferences.java:102 Italian=\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac @@ -848,180 +854,180 @@ Japanese=\u0393\u03b9\u03b1\u03c0\u03c9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 Korean=\u039a\u03bf\u03c1\u03b5\u03ac\u03c4\u03b9\u03ba\u03b1 #: Preferences.java:105 -!Latvian= +Latvian=\u039b\u03b5\u03c4\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 #: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03c3\u03b1\u03c2. \u0395\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 -!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03b1\u03bc\u03c6\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 'src' \u03ba\u03b1\u03b9 'utility'. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= +Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ae\u03b4\u03b7 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b7\: {0} \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03b5\u03b9\u03c1\u03ac\u03c2\: #: Preferences.java:106 Lithuaninan=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1\u03c2 #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2... #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format -!Looking\ for\ recipes\ like\ {0}*{1}= +Looking\ for\ recipes\ like\ {0}*{1}=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bd\u03c4\u03b1\u03b3\u03ad\u03c2 \u03cc\u03c0\u03c9\u03c2 {0}*{1} #: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= +Low\ memory\ available,\ stability\ problems\ may\ occur.=\u039b\u03af\u03b3\u03b7 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03bc\u03bd\u03ae\u03bc\u03b7, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c0\u03c1\u03bf\u03ba\u03cd\u03c8\u03bf\u03c5\u03bd \u03c0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b5\u03c5\u03c3\u03c4\u03ac\u03b8\u03b5\u03b9\u03b1\u03c2. #: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= +Manage\ Libraries...=\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=\u03a7\u03b5\u03b9\u03c1\u03bf\u03ba\u03af\u03bd\u03b7\u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03bc\u03b5\u03c3\u03bf\u03bb\u03b1\u03b2\u03b7\u03c4\u03ae #: Preferences.java:107 -!Marathi= +Marathi=Marathi #: Base.java:2112 Message=\u039c\u03ae\u03bd\u03c5\u03bc\u03b1 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format -!Missing\ '{0}'\ from\ library\ in\ {1}= +Missing\ '{0}'\ from\ library\ in\ {1}=\u039b\u03b5\u03af\u03c0\u03b5\u03b9 \u03c4\u03bf '{0}' \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03bf {1} #: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= +Mode\ not\ supported=\u0397 \u039c\u03ad\u03b8\u03bf\u03b4\u03bf\u03c2 \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=\u0395\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd #: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u039f\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf #: Editor.java:2156 -!Moving= +Moving=\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 #: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= +Multiple\ files\ not\ supported=\u0394\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 #: ../../../processing/app/debug/Compiler.java:520 #, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= +Multiple\ libraries\ were\ found\ for\ "{0}"=\u0392\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03c0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ad\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03b3\u03b9\u03b1 "{0}" #: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= +Must\ specify\ exactly\ one\ sketch\ file=\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03b5\u03c4\u03b5 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: Sketch.java:282 -!Name\ for\ new\ file\:= +Name\ for\ new\ file\:=\u038c\u03bd\u03bf\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03ad\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nepali #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=\u0394\u03af\u03ba\u03c4\u03c5\u03bf #: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= +Network\ ports=\u0398\u03cd\u03c1\u03b5\u03c2 \u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03bc\u03ad\u03c3\u03c9 \u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 #: EditorToolbar.java:41 Editor.java:493 New=\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 #: EditorHeader.java:292 -!New\ Tab= +New\ Tab=\u039d\u03ad\u03b1 \u03ba\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 #: SerialMonitor.java:112 -!Newline= +Newline=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 #: EditorHeader.java:340 -!Next\ Tab= +Next\ Tab=\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 #: Preferences.java:78 UpdateCheck.java:108 No=\u038c\u03c7\u03b9 #: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= +No\ authorization\ data\ found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7\u03c2 #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= +No\ changes\ necessary\ for\ Auto\ Format.=\u0394\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7. #: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= +No\ command\ line\ parameters\ found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03ba\u03b1\u03bc\u03b9\u03ac \u03c0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd #: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= +No\ compiled\ sketch\ found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=\u0394\u03b5\u03bd \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf. #: Platform.java:167 -!No\ launcher\ available= +No\ launcher\ available=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf\u03c2 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2 #: SerialMonitor.java:112 -!No\ line\ ending= +No\ line\ ending=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c4\u03ad\u03bb\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 #: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= +No\ parameters=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03b9 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c3\u03bf\u03bb\u03b1\u03b2\u03b7\u03c4\u03ae\u03c2 #: 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 #: Editor.java:1872 #, java-format -!No\ reference\ available\ for\ "{0}"= +No\ reference\ available\ for\ "{0}"=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b3\u03b9\u03b1 \u03c4\u03bf "{0}" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= +No\ sketch=\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf #: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= +No\ sketchbook=\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 sketchbook #: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= +No\ valid\ code\ files\ found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03ad\u03b3\u03ba\u03c5\u03c1\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf\u03b9 \u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03af \u03c5\u03bb\u03b9\u03ba\u03bf\u03cd \u03c3\u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf {0}. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= +None=\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +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.=\u039c\u03b7 \u03b5\u03c0\u03b1\u03c1\u03ba\u03ae\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7, \u03b4\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u03b3\u03b9\u03b1 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03bb\u03ac\u03c4\u03c4\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7\u03c2. #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 OK=\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9 #: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= +One\ file\ added\ to\ the\ sketch.=\u0388\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf. #: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=\u039c\u03cc\u03bd\u03bf \u03c4\u03b1 --verify, --upload \u03ae --get-pref \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 #: EditorToolbar.java:41 Open=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 #: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= +Open\ Recent=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03ac\u03c4\u03bf\u03c5 #: Editor.java:2688 -!Open\ URL= +Open\ URL=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 URL #: Base.java:636 Open\ an\ Arduino\ sketch...=\u0386\u03bd\u03bf\u03b9\u03be\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf Arduino... @@ -1030,78 +1036,78 @@ Open\ an\ Arduino\ sketch...=\u0386\u03bd\u03bf\u03b9\u03be\u03b5 \u03ad\u03bd\u Open...=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1... #: Editor.java:563 -!Page\ Setup= +Page\ Setup=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2 #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=\u03a3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\: #: Editor.java:1189 Editor.java:2731 -!Paste= +Paste=\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 #: Preferences.java:109 Persian=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= +Persian\ (Iran)=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac (\u0399\u03c1\u03ac\u03bd) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format -!Platform\ {0}\ (package\ {1})\ is\ unknown= +Platform\ {0}\ (package\ {1})\ is\ unknown=\u0397 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1 {0} (\u03c0\u03b1\u03ba\u03ad\u03c4\u03bf {1}) \u03b5\u03af\u03bd\u03b1\u03b9 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= +Please\ confirm\ boards\ deletion=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= +Please\ confirm\ library\ deletion=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 #: 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.=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf > \u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2. #: ../../../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.=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Wire \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf > \u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2. #: ../../../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=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -> \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae\u03c2 #: Preferences.java:110 Polish=\u03a0\u03bf\u03bb\u03c9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 #: ../../../processing/app/Editor.java:718 -!Port= +Port=\u0398\u03cd\u03c1\u03b1 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2\: #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac (\u0392\u03c1\u03b1\u03b6\u03b9\u03bb\u03af\u03b1) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac (\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03af\u03b1) #: Preferences.java:295 Editor.java:583 Preferences=\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 #: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= +Preparing\ boards...=\u03a0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03c0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd... #: FindReplace.java:123 FindReplace.java:128 Previous=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf #: EditorHeader.java:326 -!Previous\ Tab= +Previous\ Tab=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 #: Editor.java:571 -!Print= +Print=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 #: Editor.java:2571 -!Printing\ canceled.= +Printing\ canceled.=\u0397 \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5. #: Editor.java:2547 -!Printing...= +Printing...=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7... #: Base.java:1957 Problem\ Opening\ Folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u0391\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 @@ -1113,55 +1119,55 @@ Problem\ Opening\ URL=\u03a0\u03c1\u03bf\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c3\u0 Problem\ Setting\ the\ Platform=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03b5\u03b4\u03c1\u03b1\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1\u03c2 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03c3\u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf #: Base.java:1673 Problem\ getting\ data\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd #: 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.=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1. \u0394\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u03b3\u03b9\u03b1 \u03c5\u03c0\u03bf\u03b4\u03b5\u03af\u03be\u03b5\u03b9\u03c2. #: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= +Problem\ with\ rename=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae\u03c2 #: Editor.java:704 -!Programmer= +Programmer=\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae\u03c2 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format -!Progress\ {0}= +Progress\ {0}=\u03a0\u03c1\u03cc\u03bf\u03b4\u03bf\u03c2 {0} #: Base.java:783 Editor.java:593 Quit=\u0388\u03be\u03bf\u03b4\u03bf\u03c2 #: ../../../../../app/src/processing/app/Base.java:1233 -!RETIRED= +RETIRED=\u03a0\u0391\u03a1\u039f\u03a0\u039b\u0399\u03a3\u039c\u0395\u039d\u039f #: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= +Redo=\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7 #: Editor.java:1078 -!Reference= +Reference=\u03a0\u03b1\u03c1\u03b1\u03c0\u03bf\u03bc\u03c0\u03ae #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= +Remove=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format -!Removing\ library\:\ {0}= +Removing\ library\:\ {0}=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2\: {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= +Removing...=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7... #: EditorHeader.java:300 -!Rename= +Rename=\u039c\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 Replace=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 @@ -1174,7 +1180,7 @@ Replace\ All=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\ #: Sketch.java:1043 #, java-format -!Replace\ the\ existing\ version\ of\ {0}?= +Replace\ the\ existing\ version\ of\ {0}?=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03c3\u03b1\u03c2 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2 \u03b1\u03c0\u03cc {0}; #: FindReplace.java:81 Replace\ with\:=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03bc\u03b5\: @@ -1184,11 +1190,11 @@ Romanian=\u03a1\u03bf\u03c5\u03bc\u03ac\u03bd\u03b9\u03ba\u03b1 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format -!Running\ recipe\:\ {0}= +Running\ recipe\:\ {0}=\u0395\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03c3\u03c5\u03bd\u03c4\u03b1\u03b3\u03ae\u03c2\: {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format -!Running\:\ {0}= +Running\:\ {0}=\u0395\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7\: {0} #: Preferences.java:114 Russian=\u03a1\u03ce\u03c3\u03c3\u03b9\u03ba\u03b1 @@ -1198,121 +1204,121 @@ Russian=\u03a1\u03ce\u03c3\u03c3\u03b9\u03ba\u03b1 Save=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 #: Editor.java:537 -!Save\ As...= +Save\ As...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c9\u03c2... #: Editor.java:2317 -!Save\ Canceled.= +Save\ Canceled.=\u0397 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u0391\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5. #: Editor.java:2020 #, java-format -!Save\ changes\ to\ "{0}"?\ \ = +Save\ changes\ to\ "{0}"?\ \ =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03bf "{0}"; #: Sketch.java:825 -!Save\ sketch\ folder\ as...= +Save\ sketch\ folder\ as...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c9\u03c2... #: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= +Save\ when\ verifying\ or\ uploading=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03ae \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 #: Editor.java:2270 Editor.java:2308 -!Saving...= +Saving...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7... #: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= +Search\ all\ Sketch\ Tabs=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b5\u03c2 \u03c4\u03bf\u03c5 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: 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... #: Editor.java:1198 Editor.java:2739 -!Select\ All= +Select\ All=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u038c\u03bb\u03c9\u03bd #: Base.java:2636 Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c0\u03bf\u03c5 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b1 \u03c0\u03bf\u03c5 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5 #: 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=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03ae \u03ac\u03bb\u03bb\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b1\u03c2 #: Preferences.java:330 Select\ new\ sketchbook\ location=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bd\u03ad\u03b1 \u03b8\u03ad\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf Sketchbook #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= +Select\ version=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2 #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=\u0397 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03b5\u03be\u03b1\u03c1\u03c4\u03ac\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1 {0} (\u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf\u03c2). #: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= +Selected\ board\ is\ not\ available=\u0397 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 #: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= +Selected\ library\ is\ not\ available=\u0397 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 #: SerialMonitor.java:93 -!Send= +Send=\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 Serial\ Monitor=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u039f\u03b8\u03cc\u03bd\u03b7 #: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= +Serial\ Plotter=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc Plotter #: 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?=\u0397 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 "{0}" \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5. \u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03b1\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c3\u03c9\u03c3\u03c4\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 > \u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u0398\u03cd\u03c1\u03b1; #: 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?=\u0397 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 "{0}" \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5.\n\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1; #: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= +Serial\ ports=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ad\u03c2 \u03b8\u03cd\u03c1\u03b5\u03c2 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format -!Setting\ build\ path\ to\ {0}= +Setting\ build\ path\ to\ {0}=\u03a1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2 \u03c7\u03c4\u03b9\u03c3\u03af\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf {0} #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 #: Base.java:1681 Settings\ issues=\u03a0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd #: Editor.java:641 -!Show\ Sketch\ Folder= +Show\ Sketch\ Folder=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b4\u03b9\u03b5\u03be\u03bf\u03b4\u03b9\u03ba\u03ae\u03c2 \u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7 #: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = +Show\ verbose\ output\ during\:\ =\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b4\u03b9\u03b5\u03be\u03bf\u03b4\u03b9\u03ba\u03ae\u03c2 \u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd\: #: Editor.java:607 -!Sketch= +Sketch=\u03a3\u03c7\u03ad\u03b4\u03b9\u03bf #: Sketch.java:1754 -!Sketch\ Disappeared= +Sketch\ Disappeared=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u0395\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 #: Base.java:1411 Sketch\ Does\ Not\ Exist=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= +Sketch\ is\ Read-Only=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u039c\u03cc\u03bd\u03bf-\u03b3\u03b9\u03b1-\u0391\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 #: Sketch.java:294 -!Sketch\ is\ Untitled= +Sketch\ is\ Untitled=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03c7\u03c9\u03c1\u03af\u03c2 \u03a4\u03af\u03c4\u03bb\u03bf #: Sketch.java:720 -!Sketch\ is\ read-only= +Sketch\ is\ read-only=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf-\u03b3\u03b9\u03b1-\u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 #: 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.=\u03a0\u03bf\u03bb\u03cd \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf, \u03b4\u03b5\u03c2 \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ad\u03c2 \u03c3\u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bc\u03b5\u03af\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5. #: ../../../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.=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af {0} bytes ({2}%%) \u03c4\u03bf\u03c5 \u03c7\u03ce\u03c1\u03bf\u03c5 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2. \u03a4\u03bf \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 {1} bytes. #: Editor.java:510 -!Sketchbook= +Sketchbook=Sketchbook #: Base.java:258 Sketchbook\ folder\ disappeared=\u03a7\u03ac\u03b8\u03b7\u03ba\u03b5 \u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 Sketchbook @@ -1321,80 +1327,80 @@ Sketchbook\ folder\ disappeared=\u03a7\u03ac\u03b8\u03b7\u03ba\u03b5 \u03bf \u03 Sketchbook\ location\:=\u0398\u03ad\u03c3\u03b7 Sketchbook\: #: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= +Sketchbook\ path\ not\ defined=\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03bf\u03c5 Sketchbook \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7. #: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= +Slovak=\u03a3\u03bb\u03bf\u03b2\u03ac\u03ba\u03b9\u03ba\u03b1 #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=\u03a3\u03bb\u03bf\u03b2\u03ad\u03bd\u03b9\u03ba\u03b1 #: 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.=\u039c\u03b5\u03c1\u03b9\u03ba\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c3\u03b7\u03bc\u03b1\u03c3\u03bc\u03ad\u03bd\u03b1 "\u03bc\u03cc\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7", \u03bf\u03c0\u03cc\u03c4\u03b5\n\u03b8\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1,\n\u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9. #: 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.=\u039c\u03b5\u03c1\u03b9\u03ba\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c3\u03b7\u03bc\u03b1\u03c3\u03bc\u03ad\u03bd\u03b1 "\u03bc\u03cc\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7", \u03bf\u03c0\u03cc\u03c4\u03b5\n\u03b8\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 #: Sketch.java:457 #, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u03a3\u03c5\u03b3\u03bd\u03ce\u03bc\u03b7, \u03b1\u03bb\u03bb\u03ac \u03ad\u03bd\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf (\u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2) \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{0}" \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7. #: Preferences.java:115 Spanish=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac #: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= +Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=\u039f \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2/zip \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03bc\u03af\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 #: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= +Starting...=\u0395\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7... #: Base.java:540 Sunshine=\u039b\u03b9\u03b1\u03ba\u03ac\u03b4\u03b1 #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=\u03a3\u03bf\u03c5\u03b7\u03b4\u03b9\u03ba\u03ac #: Preferences.java:84 System\ Default=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 #: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= +Talossan=Talossan #: Preferences.java:116 Tamil=\u03a4\u03b1\u03bc\u03af\u03bb #: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0397 \u03bb\u03ad\u03be\u03b7 \u03ba\u03bb\u03b5\u03b9\u03b4\u03af 'BYTE' \u03c0\u03bb\u03ad\u03bf\u03bd \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9. #: ../../../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=\u0397 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae --upload \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c4\u03b9 \u03c6\u03bf\u03c1\u03ac #: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Client \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetClient. #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= +The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=\u03a4\u03bf IDE \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf {0} \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf, \u03b1\u03bb\u03bb\u03ac \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf.\n\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf {0}; #: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Server \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetServer. #: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Udp \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetUdp. #: 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?=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf "{0}" \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd\n\u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 "{1}". \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c5\u03c4\u03bf\u03cd\n\u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5, \u03bc\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1; #: 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)=\u0397 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 "{0}" \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af.\n\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b2\u03b1\u03c3\u03b9\u03ba\u03bf\u03cd\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03c5\u03c2.\n(\u03bc\u03cc\u03bd\u03bf ASCII \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b5\u03bd\u03ac, \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc) #: 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)=\u03a4\u03bf \u03ba\u03c5\u03c1\u03af\u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7.\n(\u038a\u03c3\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03ac\u03c3\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1 "\u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc" \n\u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd) #: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= +The\ name\ cannot\ start\ with\ a\ period.=\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03ac \u03bc\u03b5 \u03c4\u03b5\u03bb\u03b5\u03af\u03b1. #: Base.java:1412 The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a0\u03b9\u03b8\u03b1\u03bd\u03cc\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino \u03c0\u03c1\u03bf\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03bd\u03b5\u03c9\u03b8\u03b5\u03af \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03c4\u03bf\u03c5 Sketchbook. @@ -1404,278 +1410,278 @@ 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}=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf "{0}" \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03b5\u03b9\u03b7\u03b8\u03b5\u03af.\n\u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bc\u03cc\u03bd\u03bf \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2\n(ASCII- \u03bc\u03cc\u03bd\u03bf \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b5\u03bd\u03ac, \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc).\n\u0393\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, \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf\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.=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af.\n\u0398\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c3\u03c4\u03b7\u03bd \u03af\u03b4\u03b9\u03b1 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1,\n\u03b1\u03bb\u03bb\u03ac \u03bf\u03c4\u03b9\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03b5\u03af. #: ../../../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.=\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af. \u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03a3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd\n\u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd ASCII \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2 (\u03b1\u03bb\u03bb\u03ac \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd\n\u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc). \u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b1\u03c0\u03cc 64 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2. #: 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. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= +The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=\u039f \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 sketchbook \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03b1\u03bd\u03c4\u03af\u03b3\u03c1\u03b1\u03c6\u03bf \u03c4\u03bf\u03c5 IDE.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c4\u03bf sketchbook \u03c3\u03b1\u03c2. #: 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'.=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b1\u03c5\u03c4\u03cc \u03ad\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c3\u03c4\u03b7\u03bd\n\u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \n\u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5. \u0394\u03b5\u03bd \u03b8\u03b1 \u03ba\u03ac\u03bd\u03c9 \u03c4\u03af\u03c0\u03bf\u03c4\u03b5. #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= +This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=\u0391\u03c5\u03c4\u03ae \u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c3\u03c4\u03bf\u03bd \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2. \u0394\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5\n\u03bd\u03b1 \u03c4\u03bf \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c0\u03cc \u03b5\u03b4\u03ce. \u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03c0\u03c9\u03c2 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5; #: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= +This\ report\ would\ have\ more\ information\ with=\u0391\u03c5\u03c4\u03ae \u03b7 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b8\u03b1 \u03b5\u03af\u03c7\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03b5 #: Base.java:535 Time\ for\ a\ Break=\u038f\u03c1\u03b1 \u03b3\u03b9\u03b1 \u03b4\u03b5\u03b9\u03ac\u03bb\u03b5\u03b9\u03bc\u03b1 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= +Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=\u03a4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf {0} \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b9\u03ba\u03cc \u03c3\u03b1\u03c2 \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1. #: Editor.java:663 -!Tools= +Tools=\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= +Topic=\u0398\u03ad\u03bc\u03b1 #: Editor.java:1070 -!Troubleshooting= +Troubleshooting=\u0395\u03c0\u03af\u03bb\u03c5\u03c3\u03b7 \u03c0\u03c1\u03bf\u03b2\u03bb\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=\u03a4\u03bf\u03cd\u03c1\u03ba\u03b9\u03ba\u03b1 #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= +Type=\u03a4\u03cd\u03c0\u03bf\u03c2 #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=\u03a0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03bd\u03c3\u03cc\u03bb\u03b1 \u03c4\u03bf\u03c5 #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=\u03a0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c6\u03bf\u03c1\u03c4\u03ce\u03c3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03bd\u03ad\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +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?=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2\: \u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03c4\u03b7\u03bd \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1; #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2\: \u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7 #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2\: \u039b\u03ac\u03b8\u03bf\u03c2 \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc; #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format -!Unable\ to\ find\ {0}\ in\ {1}= +Unable\ to\ find\ {0}\ in\ {1}=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 {0} \u03c3\u03c4\u03bf {1} #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03bf\u03b8\u03cc\u03bd\u03b7\u03c2 #: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= +Unable\ to\ open\ serial\ plotter=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03bf\u03cd plotter #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= +Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 Arduino.cc \u03bb\u03cc\u03b3\u03bf \u03c0\u03b9\u03b8\u03b1\u03bd\u03bf\u03cd \u03c0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf \u03b4\u03af\u03ba\u03c4\u03c5\u03bf. #: Editor.java:1133 Editor.java:1355 -!Undo= +Undo=\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -!Unhandled\ type\ {0}\ in\ context\ key\ {1}= +Unhandled\ type\ {0}\ in\ context\ key\ {1}=\u0391\u03bd\u03b5\u03c0\u03af\u03bb\u03c5\u03c4\u03bf\u03c2 \u03c4\u03cd\u03c0\u03bf\u03c2 {0} \u03c3\u03c4\u03bf \u03b2\u03b1\u03c3\u03b9\u03ba\u03cc \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf {1} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format -!Unknown\ sketch\ file\ extension\:\ {0}= +Unknown\ sketch\ file\ extension\:\ {0}=\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5\: {0} #: 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=\u0391\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03cc\u03c1\u03b9\u03c3\u03c4\u03b7 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1, \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf\u03c2 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2.\n\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 URL \u03ae \u03c6\u03b1\u03ba\u03ad\u03bb\u03c9\u03bd, \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5\n "launcher\=/\u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae/\u03c3\u03c4\u03b7\u03bd/\u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae" \u03c3\u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf preferences.txt #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b9\u03bc\u03bf #: UpdateCheck.java:111 -!Update= +Update=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 #: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c3\u03b5 \u03bd\u03ad\u03b1 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 (.ped -> .ino) #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= +Updating\ list\ of\ installed\ libraries=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03c9\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd #: EditorToolbar.java:41 Editor.java:545 -Upload=\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae +Upload=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 #: EditorToolbar.java:46 Editor.java:553 -Upload\ Using\ Programmer=\u0395\u03be\u03b1\u03b3\u03ce\u03b3\u03b7 \u039c\u03ad\u03c3\u03c9 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae +Upload\ Using\ Programmer=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u039c\u03ad\u03c3\u03c9 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae #: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= +Upload\ canceled.=\u0397 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u0397 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5. #: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= +Uploading\ to\ I/O\ Board...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u0399/\u039f \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1... #: Sketch.java:1622 -!Uploading...= +Uploading...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7... #: Editor.java:1269 -!Use\ Selection\ For\ Find= +Use\ Selection\ For\ Find=\u03a7\u03c1\u03ae\u03c3\u03b7 \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2 \u0393\u03b9\u03b1 \u0395\u03cd\u03c1\u03b5\u03c3\u03b7 #: Preferences.java:409 -!Use\ external\ editor= +Use\ external\ editor=\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03bf\u03cd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=\u038c\u03bd\u03bf\u03bc\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= +Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 {0} \u03c3\u03c4\u03b7\u03bd \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 {1} \u03c3\u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\: {2} {3} #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 {0} \u03c3\u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03ad\u03bd\u03c9\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7/\u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7 #: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= +Verifying\ and\ uploading...=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= +Verifying\ archive\ integrity...=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b1\u03ba\u03b5\u03c1\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7\u03c2... #: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= +Verifying...=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format -!Version\ {0}= +Version\ {0}=\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= +Version\ unknown=\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format -!Version\ {0}= +Version\ {0}=\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 {0} #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnamese #: Editor.java:1105 -!Visit\ Arduino.cc= +Visit\ Arduino.cc=\u0395\u03c0\u03b9\u03c3\u03ba\u03b5\u03c6\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf Arduino.cc #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format -!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=\u03a0\u03a1\u039f\u0395\u0399\u0394\u039f\u03a0\u039f\u0399\u0397\u03a3\u0397\: \u0397 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 '{0}' \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 {1} \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03b3\u03c5\u03c1\u03b7. \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c4\u03b7\u03c2 '{2}' #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format -!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=\u03a0\u03a1\u039f\u0395\u0399\u0394\u039f\u03a0\u039f\u0399\u0397\u03a3\u0397\: \u03a0\u03b1\u03c1\u03b1\u03c3\u03b9\u03c4\u03b9\u03ba\u03cc\u03c2 {0} \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd '{1}' \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 #: ../../../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).=\u03a0\u03a1\u039f\u0395\u0399\u0394\u039f\u03a0\u039f\u0399\u0397\u03a3\u0397\: \u0397 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 {0} \u03b9\u03c3\u03c7\u03c5\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9 \u03c3\u03b5 \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ad\u03c2(\u03ae) {1} \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c5\u03bc\u03b2\u03b1\u03c4\u03ae \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03b1\u03c2 \u03c0\u03bf\u03c5 \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9 \u03c3\u03b5 {2} \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ad\u03c2(\u03ae). #: Base.java:2128 Warning=\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 #: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= +Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7; \u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1\u03c2 \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03b5\u03c5\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03bd \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03cc \u03c4\u03b7\u03c2. #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= +Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf {0} \u03c3\u03c5\u03bd\u03b4\u03ad\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03b1\u03c0\u03cc\u03bb\u03c5\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u0395\u03be\u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03bc\u03c0\u03b9\u03c3\u03c4\u03bf\u03c3\u03cd\u03bd\u03b7 \u03c3\u03b5 \u03bc\u03b7 \u03ad\u03bc\u03c0\u03b9\u03c3\u03c4\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b5\u03b9\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u0395\u03be\u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03bc\u03b7 \u03ad\u03bc\u03c0\u03b9\u03c3\u03c4\u03bf\u03c5 \u03c3\u03b5\u03bd\u03b1\u03c1\u03af\u03bf\u03c5 ({0}) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u039c\u03b7 \u03ad\u03bc\u03c0\u03b9\u03c3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03b5\u03b9\u03c3\u03c6\u03bf\u03c1\u03ac, \u03c0\u03b1\u03c1\u03ac\u03bb\u03b7\u03c8\u03b7 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03c3\u03b5\u03bd\u03b1\u03c1\u03af\u03bf\u03c5 ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u03a4\u03bf platform.txt \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1 '{0}' \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03be\u03b5\u03c0\u03b5\u03c1\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf {1}, \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c3\u03b5 {2}. \u0395\u03be\u03b5\u03c4\u03ac\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b1\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1. #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u03a3\u03c4\u03bf platform.txt \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1 '{0}' \u03bb\u03b5\u03af\u03c0\u03b5\u03b9 \u03b7 \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 '{1}', \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c4\u03b9\u03bc\u03ae\u03c2 '{2}'. \u03a3\u03ba\u03b5\u03c6\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1. #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u03a3\u03c4\u03bf platform.txt \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1 '{0}' \u03bb\u03b5\u03af\u03c0\u03b5\u03b9 \u03b7 \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 '{1}', \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c4\u03b9\u03bc\u03ae '{2}'. \u03a3\u03ba\u03b5\u03c6\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1. #: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= +Western\ Frisian=Western Frisian #: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= +Wire.receive()\ has\ been\ renamed\ Wire.read().=\u03a4\u03bf Wire.receive() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 Wire.read(). #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=\u03a4\u03bf Wire.send() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 Wire.write(). #: FindReplace.java:105 -!Wrap\ Around= +Wrap\ Around=\u0391\u03bd\u03b1\u03b4\u03af\u03c0\u03bb\u03c9\u03c3\u03b7 \u0393\u03cd\u03c1\u03c9 #: 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?=\u0392\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bb\u03ac\u03b8\u03bf\u03c2 \u03bc\u03b9\u03ba\u03c1\u03bf\u03b5\u03bb\u03b5\u03b3\u03ba\u03c4\u03ae\u03c2. \u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03b1\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c3\u03c9\u03c3\u03c4\u03ae \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 > \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1; #: Preferences.java:77 UpdateCheck.java:108 Yes=\u039d\u03b1\u03b9 #: Sketch.java:1074 -!You\ can't\ fool\ me= +You\ can't\ fool\ me=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5 \u03b3\u03b5\u03bb\u03ac\u03c3\u03b5\u03b9\u03c2 #: 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.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf .cpp \u03af\u03b4\u03b9\u03bf\u03c5 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03bc\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf. #: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= +You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03c4\u03bf sketchbook \u03c3\u03b1\u03c2 #: 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.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf "{0}"\n\u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ad\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03ad\u03bd\u03b1 .cpp \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03bc\u03b5 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b1\u03c5\u03c4\u03cc. -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: 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.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\n\u03c3\u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5. \u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b9\u03b6\u03b5 \u03b1\u03b5\u03bd\u03ac\u03c9\u03c2. #: Base.java:1888 You\ forgot\ your\ sketchbook=\u039e\u03ad\u03c7\u03b1\u03c3\u03b5\u03c2 \u03c4\u03bf Sketchbook \u03c3\u03bf\u03c5 #: ../../../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?=\u03a0\u03b9\u03ad\u03c3\u03b1\u03c4\u03b5 {0} \u03b1\u03bb\u03bb\u03ac \u03b4\u03b5\u03bd \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5 \u03c4\u03af\u03c0\u03bf\u03c4\u03b5. \u039c\u03ae\u03c0\u03c9\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03c4\u03b5 \u03c4\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03cc \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2; #: Base.java:536 You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0388\u03c6\u03c4\u03b1\u03c3\u03b5\u03c2 \u03c4\u03bf \u03cc\u03c1\u03b9\u03bf \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1\u03c2 \u03c4\u03c9\u03bd \u03bd\u03ad\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd, \u03b3\u03b9\u03b1 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1.\n\u03a4\u03b9 \u03b8\u03b1 \u0384\u03bb\u03b5\u03b3\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03af\u03b3\u03bf \u03c0\u03b5\u03c1\u03c0\u03ac\u03c4\u03b7\u03bc\u03b1; #: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=\u03a4\u03bf \u03b1\u03bd\u03c4\u03af\u03b3\u03c1\u03b1\u03c6\u03bf \u03c4\u03bf\u03c5 IDE \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c5\u03c0\u03bf\u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c3\u03b1\u03c2.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03bc\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf IDE \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03ac\u03bb\u03bb\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf. #: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=\u03a4\u03bf \u03b1\u03bd\u03c4\u03af\u03b3\u03c1\u03b1\u03c6\u03bf \u03c4\u03bf\u03c5 IDE \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c5\u03c0\u03bf\u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 sketchbook \u03c3\u03b1\u03c2.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03bc\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf IDE \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03ac\u03bb\u03bb\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf. #: Base.java:2638 ZIP\ files\ or\ folders=\u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9 @@ -1685,147 +1691,147 @@ Zip\ doesn't\ contain\ a\ library=\u03a4\u03bf \u03c3\u03c5\u03bc\u03c0\u03b9\u0 #: Sketch.java:364 #, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7. #: 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.=\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 \u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03bc\u03b5 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino, \u03af\u03c3\u03c9\u03c2 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -> \u0395\u03c0\u03b9\u03c3\u03ba\u03b5\u03c5\u03ae \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 & \u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c3\u03b5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 UTF-8. \u0391\u03bd \u03cc\u03c7\u03b9, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf\u03c5 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03c6\u03cd\u03b3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7. #: 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\u0391\u03c0\u03cc \u03c4\u03bf Arduino 0019, \u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \u03b5\u03be\u03b1\u03c1\u03c4\u03ac\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI.\n\u039c\u03bf\u03b9\u03ac\u03b6\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b7\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03ae \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03ac\u03bb\u03bb\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03bf\u03c5 \u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03bf\u03c5 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=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03bb\u03ad\u03be\u03b7 \u03ba\u03bb\u03b5\u03b9\u03b4\u03af 'BYTE' \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c3\u03c4\u03b5 \u03c4\u03bf 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= +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03ba\u03bb\u03ac\u03c3\u03b7 Client \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \n\u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 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= +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03ba\u03bb\u03ac\u03c3\u03b7 Server \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \n\u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 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=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03ba\u03bb\u03ac\u03c3\u03b7 Udp \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \n\u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 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=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03c3\u03c5\u03bd\u03ac\u03c1\u03c4\u03b7\u03c3\u03b7 Wire.receive() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \nWire.read() \u03b3\u03b9\u03b1 \u03bf\u03bc\u03bf\u03b9\u03bf\u03bc\u03bf\u03c1\u03c6\u03af\u03b1 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2.\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\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03c3\u03c5\u03bd\u03ac\u03c1\u03c4\u03b7\u03c3\u03b7 Wire.send() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \nWire.write() \u03b3\u03b9\u03b1 \u03bf\u03bc\u03bf\u03b9\u03bf\u03bc\u03bf\u03c1\u03c6\u03af\u03b1 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2.\n\n #: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= +baud=baud #: Preferences.java:389 -!compilation\ = +compilation\ =\u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7 #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=\u03c3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03bf\! #: Sketch.java:540 -!createNewFile()\ returned\ false= +createNewFile()\ returned\ false=To createNewFile() \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03bf \u0391\u03c1\u03c7\u03b5\u03af\u03bf > \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2. #: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= +http\://www.arduino.cc/=http\://www.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 #: Preferences.java:625 #, java-format -!ignoring\ invalid\ font\ size\ {0}= +ignoring\ invalid\ font\ size\ {0}=\u03b1\u03b3\u03bd\u03cc\u03b7\u03c3\u03b7 \u03bc\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf\u03c5 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 {0} #: Editor.java:936 Editor.java:943 -!name\ is\ null= +name\ is\ null=\u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc #: Editor.java:932 -!serialMenu\ is\ null= +serialMenu\ is\ null=\u03c4\u03bf \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc\u039c\u03b5\u03bd\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc #: 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=\u03b7 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 {0} \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae \u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03b7 #: ../../../processing/app/Base.java:389 #, java-format -!unknown\ option\:\ {0}= +unknown\ option\:\ {0}=\u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03c0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03c2\: {0} #: Preferences.java:391 -!upload= +upload=\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format -!version\ {0}= +version\ {0}=\u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 {0} #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= +{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | Arduino {2} #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format -!{0}\ file\ signature\ verification\ failed= +{0}\ file\ signature\ verification\ failed={0} \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 \u03b7 \u03b5\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= +{0}\ file\ signature\ verification\ failed.\ File\ ignored.={0} \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 \u03b7 \u03b5\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2. \u0391\u03b3\u03bd\u03cc\u03b7\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5. #: Editor.java:380 #, java-format -!{0}\ files\ added\ to\ the\ sketch.= +{0}\ files\ added\ to\ the\ sketch.={0} \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf. #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format -!{0}\ libraries= +{0}\ libraries={0} \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder=\u03c4\u03bf {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format -!{0}\ pattern\ is\ missing= +{0}\ pattern\ is\ missing=\u03c4\u03bf {0} \u03c5\u03c0\u03cc\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1 \u03bb\u03b5\u03af\u03c0\u03b5\u03b9 #: debug/Compiler.java:365 #, java-format -!{0}\ returned\ {1}= +{0}\ returned\ {1}=\u03c4\u03bf {0} \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 {1} #: Editor.java:2213 #, java-format -!{0}\ |\ Arduino\ {1}= +{0}\ |\ Arduino\ {1}={0} | Arduino {1} #: ../../../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}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03c3\u03c4\u03bf --pref, \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c4\u03b7\u03bd \u03bc\u03bf\u03c1\u03c6\u03ae "pref\=\u03c4\u03b9\u03bc\u03ae" #: ../../../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}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2, \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c4\u03b7\u03bd \u03bc\u03bf\u03c1\u03c6\u03ae "package\:arch\:board" \u03ae "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}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae "{1}" \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 "{2}" #: ../../../processing/app/Base.java:507 #, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 "{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}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae, \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03c1\u03c6\u03ae\u03c2 "\u03cc\u03bd\u03bf\u03bc\u03b1\=\u03c4\u03b9\u03bc\u03ae" #: ../../../processing/app/Base.java:486 #, java-format -!{0}\:\ Unknown\ architecture= +{0}\:\ Unknown\ architecture={0}\: \u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ae #: ../../../processing/app/Base.java:491 #, java-format -!{0}\:\ Unknown\ board= +{0}\:\ Unknown\ board={0}\: \u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 #: ../../../processing/app/Base.java:481 #, java-format -!{0}\:\ Unknown\ package= +{0}\:\ Unknown\ package={0}\: \u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf diff --git a/arduino-core/src/processing/app/i18n/Resources_en.po b/arduino-core/src/processing/app/i18n/Resources_en.po index 24e05f098..936abffe9 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en.po +++ b/arduino-core/src/processing/app/i18n/Resources_en.po @@ -8,12 +8,13 @@ # Translators: # Translators: # Translators: +# Translators: msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: English (http://www.transifex.com/mbanzi/arduino-ide-15/language/en/)\n" "MIME-Version: 1.0\n" @@ -36,13 +37,16 @@ msgstr " Not used: {0}" msgid " Used: {0}" msgstr " Used: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "'Keyboard' not found. Does your sketch include the line '#include '?" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "'Mouse' not found. Does your sketch include the line '#include '?" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -873,6 +877,11 @@ msgstr "Error while loading code {0}" msgid "Error while printing." msgstr "Error while printing." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "Error while setting serial port parameters: {0} {1} {2} {3}" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Error while uploading" @@ -2302,11 +2311,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "You can't rename the sketch to \"{0}\"\nbecause the sketch already has a .cpp file with that name." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "You can't save the sketch as \"{0}\"\nbecause the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." +msgstr "You can't save the sketch as \"{0}\"\nbecause the sketch already has a file with that name." #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_en.properties b/arduino-core/src/processing/app/i18n/Resources_en.properties index c8a33103b..d3e5f86f7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en.properties +++ b/arduino-core/src/processing/app/i18n/Resources_en.properties @@ -8,7 +8,8 @@ # Translators: # Translators: # 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: English (http\://www.transifex.com/mbanzi/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 +# 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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: English (http\://www.transifex.com/mbanzi/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) @@ -21,11 +22,11 @@ #, java-format \ Used\:\ {0}=\ Used\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' only supported on the Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?='Keyboard' not found. Does your sketch include the line '\#include '? -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' only supported on the Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?='Mouse' not found. Does your sketch include the line '\#include '? #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information='arch' folder is no longer supported\! See http\://goo.gl/gfFJzU for more information @@ -627,6 +628,10 @@ Error\ while\ loading\ code\ {0}=Error while loading code {0} #: Editor.java:2567 Error\ while\ printing.=Error while printing. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=Error while setting serial port parameters\: {0} {1} {2} {3} + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Error while uploading @@ -1653,8 +1658,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=You can't import #: 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. -#: 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. +#: ../../../../../app/src/processing/app/Sketch.java:659 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=You can't save the sketch as "{0}"\nbecause the sketch already has a file with that name. #: 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. 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 7a1b9191c..923bfea2e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en_GB.po +++ b/arduino-core/src/processing/app/i18n/Resources_en_GB.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Andi Chandler , 2013-2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/mbanzi/arduino-ide-15/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -37,13 +38,16 @@ msgstr " Not used: {0}" msgid " Used: {0}" msgstr " Used: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -874,6 +878,11 @@ msgstr "Error while loading code {0}" msgid "Error while printing." msgstr "Error while printing." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Error while uploading" @@ -2303,11 +2312,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "You can't rename the sketch to \"{0}\"\nbecause the sketch already has a .cpp file with that name." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "You can't save the sketch as \"{0}\"\nbecause the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 936745f52..da4b9e20c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en_GB.properties +++ b/arduino-core/src/processing/app/i18n/Resources_en_GB.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Andi Chandler , 2013-2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/mbanzi/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) @@ -22,11 +23,11 @@ #, java-format \ Used\:\ {0}=\ Used\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' only supported on the Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' only supported on the Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Error while loading code {0} #: Editor.java:2567 Error\ while\ printing.=Error while printing. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Error while uploading @@ -1654,8 +1659,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=You can't import #: 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. -#: 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. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: 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. diff --git a/arduino-core/src/processing/app/i18n/Resources_es.po b/arduino-core/src/processing/app/i18n/Resources_es.po index 96feb502f..23646c60b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_es.po +++ b/arduino-core/src/processing/app/i18n/Resources_es.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # David Martin Garcia , 2012 # Miguel Ángel Barrio Vázquez , 2012 # Erik Fargas , 2015 @@ -22,7 +23,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Spanish (http://www.transifex.com/mbanzi/arduino-ide-15/language/es/)\n" "MIME-Version: 1.0\n" @@ -45,13 +46,16 @@ msgstr " No usado: {0}" msgid " Used: {0}" msgstr "Usado: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Teclado' sólo soportado por Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Ratón' sólo soportado por Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -882,6 +886,11 @@ msgstr "Error mientras se cargaba, código {0}" msgid "Error while printing." msgstr "Error al imprimir." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Error mientras se enviaba" @@ -2311,11 +2320,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "No puedes renombrar el programa a \"{0}\"\nporque el programa aún tiene un fichero .cpp con ese nombre" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "No puedes guardar el programa como \"{0}\"\nporque el programa aún tiene un fichero .cpp con ese nombre" +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_es.properties b/arduino-core/src/processing/app/i18n/Resources_es.properties index 86f5cde15..1fe189aaf 100644 --- a/arduino-core/src/processing/app/i18n/Resources_es.properties +++ b/arduino-core/src/processing/app/i18n/Resources_es.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # David Martin Garcia , 2012 # Miguel \u00c1ngel Barrio V\u00e1zquez , 2012 # Erik Fargas , 2015 @@ -17,7 +18,7 @@ # Moritz Werner Casero , 2015 # Pedro Luis , 2015 # Salvador Parra Camacho , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Spanish (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Spanish (http\://www.transifex.com/mbanzi/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) @@ -30,11 +31,11 @@ #, java-format \ Used\:\ {0}=Usado\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclado' s\u00f3lo soportado por Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rat\u00f3n' s\u00f3lo soportado por Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -636,6 +637,10 @@ Error\ while\ loading\ code\ {0}=Error mientras se cargaba, c\u00f3digo {0} #: Editor.java:2567 Error\ while\ printing.=Error al imprimir. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Error mientras se enviaba @@ -1662,8 +1667,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Usted no puede i #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puedes renombrar el programa a "{0}"\nporque el programa a\u00fan tiene un fichero .cpp con ese nombre -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puedes guardar el programa como "{0}"\nporque el programa a\u00fan tiene un fichero .cpp con ese nombre +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No puedes guardar el programa dentro de una carpeta en su interior.\nEsto ser\u00eda infinito. diff --git a/arduino-core/src/processing/app/i18n/Resources_et.po b/arduino-core/src/processing/app/i18n/Resources_et.po index 9a2b3c6b2..d2acffdf4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et.po +++ b/arduino-core/src/processing/app/i18n/Resources_et.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Cougar , 2013 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Estonian (http://www.transifex.com/mbanzi/arduino-ide-15/language/et/)\n" "MIME-Version: 1.0\n" @@ -37,13 +38,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' töötab vaid Arduino Leonardo peal" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' töötab vaid Arduino Leonardo peal" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -874,6 +878,11 @@ msgstr "Koodi laadimise viga {0}" msgid "Error while printing." msgstr "Viga trükkimisel." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2303,11 +2312,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Visandit ei saa nimetada \"{0}\" sest sellise nimega .cpp fail on juba olemas." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Visandit ei saa salvestada nimega {0}\" sest\nsellise nimega .cpp fail on juba olemas." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_et.properties b/arduino-core/src/processing/app/i18n/Resources_et.properties index 9f8b367a7..0e1866f30 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et.properties +++ b/arduino-core/src/processing/app/i18n/Resources_et.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Cougar , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Estonian (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Estonian (http\://www.transifex.com/mbanzi/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) @@ -22,11 +23,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' t\u00f6\u00f6tab vaid Arduino Leonardo peal +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' t\u00f6\u00f6tab vaid Arduino Leonardo peal +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0} #: Editor.java:2567 Error\ while\ printing.=Viga tr\u00fckkimisel. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1654,8 +1659,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sama ni #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa nimetada "{0}" sest sellise nimega .cpp fail on juba olemas. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa salvestada nimega {0}" sest\nsellise nimega .cpp fail on juba olemas. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sa ei saa salvestada visandit kausta,\nmis on sama kausta sees. 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 027f722b1..1dfe6aa5e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et_EE.po +++ b/arduino-core/src/processing/app/i18n/Resources_et_EE.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Cougar , 2012 # Georg, 2014 msgid "" @@ -15,7 +16,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -38,13 +39,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' on toetatud vaid Arduino Leonardo plaatidega" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' on toetatud vaid Arduino Leonardo plaatidega" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -875,6 +879,11 @@ msgstr "Koodi laadimise viga {0}" msgid "Error while printing." msgstr "Viga trükkimisel." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2304,11 +2313,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Visandit ei saa nimetada \"{0}\" sest\nsellise nimega .cpp fail on juba olemas." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Visandit ei saa salvestada nimega \"{0}\" sest\nsellise nimega .cpp fail on juba olemas." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 7cdcb0b84..6f87d1d4a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et_EE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_et_EE.properties @@ -8,9 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Cougar , 2012 # Georg, 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Estonian (Estonia) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Estonian (Estonia) (http\://www.transifex.com/mbanzi/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) @@ -23,11 +24,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' on toetatud vaid Arduino Leonardo plaatidega +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' on toetatud vaid Arduino Leonardo plaatidega +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -629,6 +630,10 @@ Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0} #: Editor.java:2567 Error\ while\ printing.=Viga tr\u00fckkimisel. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sama ni #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa nimetada "{0}" sest\nsellise nimega .cpp fail on juba olemas. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa salvestada nimega "{0}" sest\nsellise nimega .cpp fail on juba olemas. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sa ei saa salvestada visandit kausta,\nmis on sama kausta sees. diff --git a/arduino-core/src/processing/app/i18n/Resources_eu.po b/arduino-core/src/processing/app/i18n/Resources_eu.po index 8e05e134d..d637aa3e2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_eu.po +++ b/arduino-core/src/processing/app/i18n/Resources_eu.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # @atzerritik, 2014 # Ivan Barquero , 2014 # Ivan Barquero , 2014 @@ -17,7 +18,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Basque (http://www.transifex.com/mbanzi/arduino-ide-15/language/eu/)\n" "MIME-Version: 1.0\n" @@ -40,13 +41,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Teklatua' Arduino Leonardo-rekin bateragarria da soilik" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Sagua' Arduino Leonardo-rekin bateragarria da soilik" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -877,6 +881,11 @@ msgstr "Kodea {0} kargatzerakoan hutsa" msgid "Error while printing." msgstr "Inprimatzerakoan hutsa." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2306,11 +2315,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Ezin duzu Sketcha berrizendatu \"{0}\"\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Ezin duzu sketcha gorde \"{0}\"-a bezala\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_eu.properties b/arduino-core/src/processing/app/i18n/Resources_eu.properties index 3d299d992..4159c29cc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_eu.properties +++ b/arduino-core/src/processing/app/i18n/Resources_eu.properties @@ -8,11 +8,12 @@ # Translators: # Translators: # Translators: +# Translators: # @atzerritik, 2014 # Ivan Barquero , 2014 # Ivan Barquero , 2014 # Zylu , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Basque (http\://www.transifex.com/mbanzi/arduino-ide-15/language/eu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: eu\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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Basque (http\://www.transifex.com/mbanzi/arduino-ide-15/language/eu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: eu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(Arduinoa berabiarazi behar da) @@ -25,11 +26,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teklatua' Arduino Leonardo-rekin bateragarria da soilik +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Sagua' Arduino Leonardo-rekin bateragarria da soilik +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -631,6 +632,10 @@ Error\ while\ loading\ code\ {0}=Kodea {0} kargatzerakoan hutsa #: Editor.java:2567 Error\ while\ printing.=Inprimatzerakoan hutsa. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1657,8 +1662,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Ezin du #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Ezin duzu Sketcha berrizendatu "{0}"\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Ezin duzu sketcha gorde "{0}"-a bezala\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Ezin duzu sketcha gorde bere burua \nbarruan karpeta batean. Honek betiko jarraituko luke. diff --git a/arduino-core/src/processing/app/i18n/Resources_fa.po b/arduino-core/src/processing/app/i18n/Resources_fa.po index 1286dcb41..e5348bbce 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa.po +++ b/arduino-core/src/processing/app/i18n/Resources_fa.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # arminjavan , 2014 # Ebrahim Byagowi , 2012 msgid "" @@ -15,7 +16,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Persian (http://www.transifex.com/mbanzi/arduino-ide-15/language/fa/)\n" "MIME-Version: 1.0\n" @@ -38,13 +39,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "\"صفحه کلید\" فقط دربردهای آردوینو لئوناردو پشتیبانی می گردد" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "\"ماوس\" فقط دربردهای آردوینو لئوناردو پشتیبانی می گردد" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -875,6 +879,11 @@ msgstr "خطا به هنگام بارگیری کد {0}" msgid "Error while printing." msgstr "خطا هنگام چاپ‌کردن." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2304,11 +2313,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "شما نمی‌توانید طرح را به \"{0}\" تغییر نام دهید\nبه این دلیل که طرح در حال حاضر دارای یک پروندهٔ .cpp با نام مشابه است." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "شما نمی‌توانید طرح را به‌عنوان \"{0}\" ذخیره‌سازید به این دلیل که طرح در حال حاضردارای یک پروندهٔ .cpp با نام مشابه است." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fa.properties b/arduino-core/src/processing/app/i18n/Resources_fa.properties index eb61d96a8..fbd72dead 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fa.properties @@ -8,9 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # arminjavan , 2014 # 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\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Persian (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Persian (http\://www.transifex.com/mbanzi/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 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648) @@ -23,11 +24,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'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 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'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 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -629,6 +630,10 @@ 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. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0634\ #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u0628\u0647 "{0}" \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0647\u06cc\u062f\n\u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0637\u0631\u062d \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 .cpp \u0628\u0627 \u0646\u0627\u0645 \u0645\u0634\u0627\u0628\u0647 \u0627\u0633\u062a. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u0628\u0647\u200c\u0639\u0646\u0648\u0627\u0646 "{0}" \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0637\u0631\u062d \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631\u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 .cpp \u0628\u0627 \u0646\u0627\u0645 \u0645\u0634\u0627\u0628\u0647 \u0627\u0633\u062a. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u062f\u0631 \u062f\u0631\u0648\u0646 \u067e\u0648\u0634\u0647\u0654 \u062e\u0648\u062f\u0634 \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc\u062f\n\u0627\u06cc\u0646 \u0634\u0627\u06cc\u062f \u0628\u0631\u0627\u06cc \u0647\u0645\u06cc\u0634\u0647 \u0628\u0627\u0634\u062f. diff --git a/arduino-core/src/processing/app/i18n/Resources_fa_IR.po b/arduino-core/src/processing/app/i18n/Resources_fa_IR.po index 35b1323fd..511815804 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa_IR.po +++ b/arduino-core/src/processing/app/i18n/Resources_fa_IR.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Ali Mirjamali , 2013 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Persian (Iran) (http://www.transifex.com/mbanzi/arduino-ide-15/language/fa_IR/)\n" "MIME-Version: 1.0\n" @@ -37,13 +38,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "کی‌برد فقط در آردوینو لئوناردو پشتیبانی می‌شود" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "ماوس فقط در آردوینو لئوناردو پشتیبانی می‌شود" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -874,6 +878,11 @@ msgstr "" msgid "Error while printing." msgstr "خطا در هنگام چاپ." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2303,10 +2312,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 diff --git a/arduino-core/src/processing/app/i18n/Resources_fa_IR.properties b/arduino-core/src/processing/app/i18n/Resources_fa_IR.properties index 092ef74eb..0f22a37d1 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa_IR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fa_IR.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Ali Mirjamali , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Persian (Iran) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa_IR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa_IR\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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Persian (Iran) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa_IR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa_IR\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -22,11 +23,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u06a9\u06cc\u200c\u0628\u0631\u062f \u0641\u0642\u0637 \u062f\u0631 \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\u200c\u0634\u0648\u062f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u0645\u0627\u0648\u0633 \u0641\u0642\u0637 \u062f\u0631 \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\u200c\u0634\u0648\u062f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Error\ touching\ serial\ port\ ''{0}''.=\u062e\u0637\u0627 \u062f\u0631 \u062f\u #: Editor.java:2567 Error\ while\ printing.=\u062e\u0637\u0627 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u0686\u0627\u067e. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1654,8 +1659,8 @@ You\ can't\ fool\ me=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc \u06 #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= diff --git a/arduino-core/src/processing/app/i18n/Resources_fi.po b/arduino-core/src/processing/app/i18n/Resources_fi.po index 0c9ebcc5f..d2e9155fc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fi.po +++ b/arduino-core/src/processing/app/i18n/Resources_fi.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Jaakko Fagerlund , 2013 # lotof , 2014 msgid "" @@ -15,7 +16,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Finnish (http://www.transifex.com/mbanzi/arduino-ide-15/language/fi/)\n" "MIME-Version: 1.0\n" @@ -38,13 +39,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' on tuettu vain Arduino Leonardossa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' on tuettu vain Arduino Leonardossa." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -875,6 +879,11 @@ msgstr "Virhe ladatessa koodia {0}" msgid "Error while printing." msgstr "Virhe tulostaessa." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2304,11 +2313,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Et voi nimetä ohjelmaasi \"{0}\" uudelleen,\nkoska samanniminen .cpp tiedosto on jo olemassa." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Et voi tallentaa sketsiäsi nimellä \"{0}\"\nkoska sketsillä on jo samanniminen .cpp tiedosto." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fi.properties b/arduino-core/src/processing/app/i18n/Resources_fi.properties index 00c5f5339..093c721ab 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fi.properties @@ -8,9 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Jaakko Fagerlund , 2013 # lotof , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Finnish (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Finnish (http\://www.transifex.com/mbanzi/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 @@ -23,11 +24,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' on tuettu vain Arduino Leonardossa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' on tuettu vain Arduino Leonardossa. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -629,6 +630,10 @@ Error\ while\ loading\ code\ {0}=Virhe ladatessa koodia {0} #: Editor.java:2567 Error\ while\ printing.=Virhe tulostaessa. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sinulla #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Et voi nimet\u00e4 ohjelmaasi "{0}" uudelleen,\nkoska samanniminen .cpp tiedosto on jo olemassa. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Et voi tallentaa sketsi\u00e4si nimell\u00e4 "{0}"\nkoska sketsill\u00e4 on jo samanniminen .cpp tiedosto. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Et voi tallentaa sketsia kansioon kansion\nitsens\u00e4 sis\u00e4ll\u00e4. T\u00e4m\u00e4h\u00e4n jatkuisi loputtomiin. diff --git a/arduino-core/src/processing/app/i18n/Resources_fil.po b/arduino-core/src/processing/app/i18n/Resources_fil.po index 6b96b7535..9803ad35f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fil.po +++ b/arduino-core/src/processing/app/i18n/Resources_fil.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # David A. Mellis <>, 2012 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Filipino (http://www.transifex.com/mbanzi/arduino-ide-15/language/fil/)\n" "MIME-Version: 1.0\n" @@ -37,12 +38,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -874,6 +878,11 @@ msgstr "May mali habang niloload ang code {0}" msgid "Error while printing." msgstr "May mali habang nagpi-print." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2303,11 +2312,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Hindi maaaring palitan ang pangalan sa \"{0}\"\nsapagkat mayroon ng .cpp file na may ganyang pangalan sa sketch." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Hindi maaaring ma-save ang sketch bilang \"{0}\"\ndahil ang mayroon na itong .cpp na may parehong pangalan." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_fil.properties b/arduino-core/src/processing/app/i18n/Resources_fil.properties index e4e4a5d4a..a38426931 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fil.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fil.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # 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\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Filipino (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Filipino (http\://www.transifex.com/mbanzi/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) @@ -22,11 +23,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=May mali habang niloload ang code {0} #: Editor.java:2567 Error\ while\ printing.=May mali habang nagpi-print. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1654,8 +1659,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Hindi m #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Hindi maaaring palitan ang pangalan sa "{0}"\nsapagkat mayroon ng .cpp file na may ganyang pangalan sa sketch. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Hindi maaaring ma-save ang sketch bilang "{0}"\ndahil ang mayroon na itong .cpp na may parehong pangalan. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Hindi mo maaaring i-save ang sketch sa loob ng folder\nkung saaan nakalagay sketch. Magpapatuloy lamang ito ng walang katapusan. diff --git a/arduino-core/src/processing/app/i18n/Resources_fr.po b/arduino-core/src/processing/app/i18n/Resources_fr.po index d97189c9c..71d45304e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr.po +++ b/arduino-core/src/processing/app/i18n/Resources_fr.po @@ -8,8 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Alexis Morin , 2012 # AntoineM , 2012 +# BlueskyFR , 2015 # dbarbier , 2013-2014 # dbarbier , 2012 # dbarbier , 2012 @@ -25,7 +27,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: French (http://www.transifex.com/mbanzi/arduino-ide-15/language/fr/)\n" "MIME-Version: 1.0\n" @@ -41,26 +43,29 @@ msgstr " (nécessite un redémarrage d'Arduino)" #: ../../../processing/app/debug/Compiler.java:529 #, java-format msgid " Not used: {0}" -msgstr "Non utilisé: {0}" +msgstr "Non utilisé : {0}" #: ../../../processing/app/debug/Compiler.java:525 #, java-format msgid " Used: {0}" -msgstr "Utilisé: {0}" +msgstr "Utilisé : {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "« Keyboard » n'est pris en compte que par l'Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "« Mouse » n'est pris en compte que par l'Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " "information" -msgstr "le dossier 'arch' n'est plus supporté! Pour plus d'informations http://goo.gl/gfFJzU" +msgstr "le dossier 'arch' n'est plus supporté ! Voir http://goo.gl/gfFJzU pour plus d'informations" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -78,7 +83,7 @@ msgstr "--curdir n'est plus supporté" msgid "" "--verbose, --verbose-upload and --verbose-build can only be used together " "with --verify or --upload" -msgstr "--verbose, --verbose-upload et --verbose-build ne peuvent être utilisées qu'avec --verify ou --upload" +msgstr "--verbose, --verbose-upload et --verbose-build ne peuvent être utilisées ensemble qu'avec --verify ou --upload" #: Sketch.java:746 msgid ".pde -> .ino" @@ -87,18 +92,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "
Mise a jour disponible pour certaine des vos {0}cartes{1}" +msgstr "
Mise à jour disponible pour certaines des vos {0}cartes{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "
Mise a jour disponible pour certaine des vos {0}cartes{1} et {2}bibliothèques{3}" +msgstr "
Mise à jour disponible pour certaines des vos {0}cartes{1} et {2}bibliothèques{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "
Mise a jour disponible pour certaine des vos {0}bibliothèques{1}" +msgstr "
Mise à jour disponible pour certaines de vos {0}bibliothèques{1}" #: Editor.java:2053 msgid "" @@ -132,7 +137,7 @@ msgstr "Une nouvelle version d'Arduino est disponible,\nvoulez-vous visiter la p #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "A newer {0} package is available" -msgstr "Un nouveau paquet {0} est disponible" +msgstr "Un nouveau package {0} est disponible" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" @@ -144,7 +149,7 @@ msgstr "À propos d'Arduino" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "Ajouter la bibliothèque .ZIP" +msgstr "Ajouter la bibliothèque .ZIP..." #: Editor.java:650 msgid "Add File..." @@ -185,7 +190,7 @@ msgstr "Une erreur s'est produit durant la mise a jour du catalogue de biblioth #: ../../../processing/app/BaseNoGui.java:528 msgid "An error occurred while uploading the sketch" -msgstr "Une erreur est survenue lors du téléversement du croquis" +msgstr "Une erreur est survenue lors du transfert du croquis" #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 @@ -195,7 +200,7 @@ msgstr "Une erreur est survenue lors de la vérification du croquis" #: ../../../processing/app/BaseNoGui.java:521 msgid "An error occurred while verifying/uploading the sketch" -msgstr "Une erreur est survenue lors de la vérification et du téléversement du croquis" +msgstr "Une erreur est survenue lors de la vérification et du transfert du croquis" #: Base.java:228 msgid "" @@ -709,7 +714,7 @@ msgstr "Impression terminée." #: ../../../processing/app/BaseNoGui.java:514 msgid "Done uploading" -msgstr "Téléversement terminé" +msgstr "Transfert terminé" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." @@ -885,9 +890,14 @@ msgstr "Erreur lors du chargement du code {0}" msgid "Error while printing." msgstr "Erreur d'impression." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" -msgstr "Erreur lors du téléversement" +msgstr "Erreur lors du transfert" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 @@ -902,7 +912,7 @@ msgstr "Erreur lors de la vérification" #: ../../../processing/app/BaseNoGui.java:521 msgid "Error while verifying/uploading" -msgstr "Erreur lors de la vérification et du téléversement." +msgstr "Erreur lors de la vérification et du transfert." #: Preferences.java:93 msgid "Estonian" @@ -1039,11 +1049,11 @@ msgstr "Les variables globales utilisent {0} octets de mémoire dynamique." #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Aller à la ligne" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Aller à la ligne..." #: Preferences.java:98 msgid "Greek" @@ -1204,7 +1214,7 @@ msgstr "La bibliothèque est déja installé: {0} version {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Ligne numéro :" #: Preferences.java:106 msgid "Lithuaninan" @@ -1217,7 +1227,7 @@ msgstr "Chargement de la configuration" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format msgid "Looking for recipes like {0}*{1}" -msgstr "" +msgstr "Recherche des recettes comme {0}*{1}" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." @@ -1242,7 +1252,7 @@ msgstr "Message" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format msgid "Missing '{0}' from library in {1}" -msgstr "" +msgstr "Fichier manquant '{0}' de la bibliothèque dans {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1291,7 +1301,7 @@ msgstr "Ports réseau" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "Le téléversement par réseau en utilisant le programmateur n'est pas pris en charge" +msgstr "Le transfert par réseau via le programmateur n'est pas pris en charge" #: EditorToolbar.java:41 Editor.java:493 msgid "New" @@ -1446,7 +1456,7 @@ msgstr "persan (Iran)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format msgid "Platform {0} (package {1}) is unknown" -msgstr "" +msgstr "La plateforme {0} (package{1}) est incconu" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" @@ -1566,7 +1576,7 @@ msgstr "Programmateur" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format msgid "Progress {0}" -msgstr "" +msgstr "Progression {0}" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1574,7 +1584,7 @@ msgstr "Quitter" #: ../../../../../app/src/processing/app/Base.java:1233 msgid "RETIRED" -msgstr "" +msgstr "Retiré" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" @@ -1630,12 +1640,12 @@ msgstr "roumain" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format msgid "Running recipe: {0}" -msgstr "" +msgstr "Exécution de la recette : {0}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format msgid "Running: {0}" -msgstr "" +msgstr "Exécution de : {0}" #: Preferences.java:114 msgid "Russian" @@ -1665,7 +1675,7 @@ msgstr "Enregistrer le dossier des croquis sous..." #: ../../../../../app/src/processing/app/Preferences.java:425 msgid "Save when verifying or uploading" -msgstr "Sauvegarder avant la vérification ou le téléversement" +msgstr "Sauvegarder pendant la vérification ou le transfert" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." @@ -1745,7 +1755,7 @@ msgstr "Ports série" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format msgid "Setting build path to {0}" -msgstr "" +msgstr "Définition du chemin de compilation sur {0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" @@ -2031,7 +2041,7 @@ msgstr "Tapez le mot de passe de la carte pour accéder à sa console" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "Tapez le mot de passe de la carte pour téléverser un nouveau croquis" +msgstr "Tapez le mot de passe de la carte pour transférer un nouveau croquis" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -2053,7 +2063,7 @@ msgstr "Connexion impossible : mauvais mot de passe ?" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format msgid "Unable to find {0} in {1}" -msgstr "" +msgstr "Impossible de trouver {0} dans {1}" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" @@ -2075,12 +2085,12 @@ msgstr "Annuler" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format msgid "Unhandled type {0} in context key {1}" -msgstr "" +msgstr "Exception non-gérée {0} dans le contexte-clé {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format msgid "Unknown sketch file extension: {0}" -msgstr "" +msgstr "Extension de croquis inconnue : {0}" #: Platform.java:168 msgid "" @@ -2207,12 +2217,12 @@ msgstr "Visiter Arduino.cc" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" -msgstr "" +msgstr "ATTENTION : La catégorie '{0}' dans la bibliothèque {1} n'est pas valide. Définition sur : '{2}'" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format msgid "WARNING: Spurious {0} folder in '{1}' library" -msgstr "" +msgstr "ATTENTION : Faux {0} dossier dans la bibliothèque '{1}'" #: ../../../processing/app/debug/Compiler.java:115 #, java-format @@ -2261,7 +2271,7 @@ msgstr "Attention: platform.txt du cœur '{0}' contiens {1} dépassé, converti msgid "" "Warning: platform.txt from core '{0}' misses property '{1}', using default " "value '{2}'. Consider upgrading this core." -msgstr "" +msgstr "Attention : platform.txt du noyau '{0}' ne contient pas la propriété '{1}', utilisation de la valeur par défaut '{2}'. Pensez à mettre à jour ce noyau." #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format @@ -2314,11 +2324,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Vous ne pouvez renommer le croquis en « {0} »\ncar il existe déjà un fichier .cpp portant ce nom." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Vous ne pouvez enregistrer le croquis sous « {0} »\nCar il existe déjà un fichier .cpp portant ce nom." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" @@ -2520,12 +2530,12 @@ msgstr "{0} bibliothèques" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "{0} doit être un dossier" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format msgid "{0} pattern is missing" -msgstr "" +msgstr "{0} est un schéma manquant" #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_fr.properties b/arduino-core/src/processing/app/i18n/Resources_fr.properties index 159c03222..0756d7367 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fr.properties @@ -8,8 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Alexis Morin , 2012 # AntoineM , 2012 +# BlueskyFR , 2015 # dbarbier , 2013-2014 # dbarbier , 2012 # dbarbier , 2012 @@ -20,27 +22,27 @@ # R D , 2012 # Simon , 2015 # Vincent Moulin , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: French (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: French (http\://www.transifex.com/mbanzi/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) #: ../../../processing/app/debug/Compiler.java:529 #, java-format -\ Not\ used\:\ {0}=Non utilis\u00e9\: {0} +\ Not\ used\:\ {0}=Non utilis\u00e9 \: {0} #: ../../../processing/app/debug/Compiler.java:525 #, java-format -\ Used\:\ {0}=Utilis\u00e9\: {0} +\ Used\:\ {0}=Utilis\u00e9 \: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab\u00a0Keyboard\u00a0\u00bb n'est pris en compte que par l'Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab\u00a0Mouse\u00a0\u00bb n'est pris en compte que par l'Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=le dossier 'arch' n'est plus support\u00e9\! Pour plus d'informations http\://goo.gl/gfFJzU +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=le dossier 'arch' n'est plus support\u00e9 \! Voir http\://goo.gl/gfFJzU pour plus d'informations #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e9diter uniquement lorsque Arduino ne s'ex\u00e9cute pas) @@ -52,22 +54,22 @@ --curdir\ no\ longer\ supported=--curdir n'est plus support\u00e9 #: ../../../processing/app/Base.java:468 ---verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload et --verbose-build ne peuvent \u00eatre utilis\u00e9es qu'avec --verify ou --upload +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload et --verbose-build ne peuvent \u00eatre utilis\u00e9es ensemble qu'avec --verify ou --upload #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
Mise a jour disponible pour certaine des vos {0}cartes{1} +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
Mise \u00e0 jour disponible pour certaines des vos {0}cartes{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
Mise a jour disponible pour certaine des vos {0}cartes{1} et {2}biblioth\u00e8ques{3} +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
Mise \u00e0 jour disponible pour certaines des vos {0}cartes{1} et {2}biblioth\u00e8ques{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
Mise a jour disponible pour certaine des vos {0}biblioth\u00e8ques{1} +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
Mise \u00e0 jour disponible pour certaines de vos {0}biblioth\u00e8ques{1} #: 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.= Voulez-vous enregistrer les changements
avant de fermer\u00a0?

Si vous n'enregistrez pas, vos changements seront perdus. @@ -89,7 +91,7 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -A\ newer\ {0}\ package\ is\ available=Un nouveau paquet {0} est disponible +A\ newer\ {0}\ package\ is\ available=Un nouveau package {0} est disponible #: ../../../../../app/src/processing/app/Base.java:2307 A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Un sous-dossier de votre carnet de croquis n'est pas une biblioth\u00e8que valide @@ -98,7 +100,7 @@ A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Un sous-dossier d About\ Arduino=\u00c0 propos d'Arduino #: ../../../../../app/src/processing/app/Base.java:1177 -Add\ .ZIP\ Library...=Ajouter la biblioth\u00e8que .ZIP +Add\ .ZIP\ Library...=Ajouter la biblioth\u00e8que .ZIP... #: Editor.java:650 Add\ File...=Ajouter un fichier... @@ -127,7 +129,7 @@ An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ atte An\ error\ occurred\ while\ updating\ libraries\ index\!=Une erreur s'est produit durant la mise a jour du catalogue de biblioth\u00e8que #: ../../../processing/app/BaseNoGui.java:528 -An\ error\ occurred\ while\ uploading\ the\ sketch=Une erreur est survenue lors du t\u00e9l\u00e9versement du croquis +An\ error\ occurred\ while\ uploading\ the\ sketch=Une erreur est survenue lors du transfert du croquis #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 @@ -135,7 +137,7 @@ An\ error\ occurred\ while\ uploading\ the\ sketch=Une erreur est survenue lors An\ error\ occurred\ while\ verifying\ the\ sketch=Une erreur est survenue lors de la v\u00e9rification du croquis #: ../../../processing/app/BaseNoGui.java:521 -An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Une erreur est survenue lors de la v\u00e9rification et du t\u00e9l\u00e9versement du croquis +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Une erreur est survenue lors de la v\u00e9rification et du transfert du croquis #: 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. @@ -505,7 +507,7 @@ Done\ compiling.=Compilation termin\u00e9e. Done\ printing.=Impression termin\u00e9e. #: ../../../processing/app/BaseNoGui.java:514 -Done\ uploading=T\u00e9l\u00e9versement termin\u00e9 +Done\ uploading=Transfert termin\u00e9 #: Editor.java:2395 Editor.java:2431 Done\ uploading.=T\u00e9l\u00e9versement termin\u00e9 @@ -639,8 +641,12 @@ Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0} #: Editor.java:2567 Error\ while\ printing.=Erreur d'impression. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 -Error\ while\ uploading=Erreur lors du t\u00e9l\u00e9versement +Error\ while\ uploading=Erreur lors du transfert #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 @@ -652,7 +658,7 @@ Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Erreur lors Error\ while\ verifying=Erreur lors de la v\u00e9rification #: ../../../processing/app/BaseNoGui.java:521 -Error\ while\ verifying/uploading=Erreur lors de la v\u00e9rification et du t\u00e9l\u00e9versement. +Error\ while\ verifying/uploading=Erreur lors de la v\u00e9rification et du transfert. #: Preferences.java:93 Estonian=estonien @@ -753,10 +759,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Les variables globales utilisent {0} octets de m\u00e9moire dynamique. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=Aller \u00e0 la ligne #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=Aller \u00e0 la ligne... #: Preferences.java:98 Greek=grec @@ -873,7 +879,7 @@ Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Une librairie ne peut Library\ is\ already\ installed\:\ {0}\ version\ {1}=La biblioth\u00e8que est d\u00e9ja install\u00e9\: {0} version {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=Ligne num\u00e9ro \: #: Preferences.java:106 Lithuaninan=lituanien @@ -883,7 +889,7 @@ Loading\ configuration...=Chargement de la configuration #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format -!Looking\ for\ recipes\ like\ {0}*{1}= +Looking\ for\ recipes\ like\ {0}*{1}=Recherche des recettes comme {0}*{1} #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=La m\u00e9moire disponible faible, des probl\u00e8mes de stabilit\u00e9 pourraient survenir. @@ -902,7 +908,7 @@ Message=Message #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format -!Missing\ '{0}'\ from\ library\ in\ {1}= +Missing\ '{0}'\ from\ library\ in\ {1}=Fichier manquant '{0}' de la biblioth\u00e8que dans {1} #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Mode non support\u00e9 @@ -939,7 +945,7 @@ Network=R\u00e9seau Network\ ports=Ports r\u00e9seau #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -Network\ upload\ using\ programmer\ not\ supported=Le t\u00e9l\u00e9versement par r\u00e9seau en utilisant le programmateur n'est pas pris en charge +Network\ upload\ using\ programmer\ not\ supported=Le transfert par r\u00e9seau via le programmateur n'est pas pris en charge #: EditorToolbar.java:41 Editor.java:493 New=Nouveau @@ -1055,7 +1061,7 @@ Persian\ (Iran)=persan (Iran) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format -!Platform\ {0}\ (package\ {1})\ is\ unknown= +Platform\ {0}\ (package\ {1})\ is\ unknown=La plateforme {0} (package{1}) est incconu #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Confirmez la suppression des cartes @@ -1144,13 +1150,13 @@ Programmer=Programmateur #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format -!Progress\ {0}= +Progress\ {0}=Progression {0} #: Base.java:783 Editor.java:593 Quit=Quitter #: ../../../../../app/src/processing/app/Base.java:1233 -!RETIRED= +RETIRED=Retir\u00e9 #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=R\u00e9tablir @@ -1193,11 +1199,11 @@ Romanian=roumain #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format -!Running\ recipe\:\ {0}= +Running\ recipe\:\ {0}=Ex\u00e9cution de la recette \: {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format -!Running\:\ {0}= +Running\:\ {0}=Ex\u00e9cution de \: {0} #: Preferences.java:114 Russian=russe @@ -1220,7 +1226,7 @@ Save\ changes\ to\ "{0}"?\ \ =Enregistrer les changements dans \u00ab\u00a0{0}\u Save\ sketch\ folder\ as...=Enregistrer le dossier des croquis sous... #: ../../../../../app/src/processing/app/Preferences.java:425 -Save\ when\ verifying\ or\ uploading=Sauvegarder avant la v\u00e9rification ou le t\u00e9l\u00e9versement +Save\ when\ verifying\ or\ uploading=Sauvegarder pendant la v\u00e9rification ou le transfert #: Editor.java:2270 Editor.java:2308 Saving...=Enregistrement... @@ -1278,7 +1284,7 @@ Serial\ ports=Ports s\u00e9rie #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format -!Setting\ build\ path\ to\ {0}= +Setting\ build\ path\ to\ {0}=D\u00e9finition du chemin de compilation sur {0} #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=Param\u00e8tres @@ -1460,7 +1466,7 @@ Type=Type Type\ board\ password\ to\ access\ its\ console=Tapez le mot de passe de la carte pour acc\u00e9der \u00e0 sa console #: ../../../processing/app/Sketch.java:1673 -Type\ board\ password\ to\ upload\ a\ new\ sketch=Tapez le mot de passe de la carte pour t\u00e9l\u00e9verser un nouveau croquis +Type\ board\ password\ to\ upload\ a\ new\ sketch=Tapez le mot de passe de la carte pour transf\u00e9rer un nouveau croquis #: ../../../processing/app/Preferences.java:118 Ukrainian=ukrainien @@ -1477,7 +1483,7 @@ Unable\ to\ connect\:\ wrong\ password?=Connexion impossible \: mauvais mot de p #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format -!Unable\ to\ find\ {0}\ in\ {1}= +Unable\ to\ find\ {0}\ in\ {1}=Impossible de trouver {0} dans {1} #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Impossible d'ouvrir le moniteur s\u00e9rie @@ -1494,11 +1500,11 @@ Undo=Annuler #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -!Unhandled\ type\ {0}\ in\ context\ key\ {1}= +Unhandled\ type\ {0}\ in\ context\ key\ {1}=Exception non-g\u00e9r\u00e9e {0} dans le contexte-cl\u00e9 {1} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format -!Unknown\ sketch\ file\ extension\:\ {0}= +Unknown\ sketch\ file\ extension\:\ {0}=Extension de croquis inconnue \: {0} #: 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=Plate-forme non sp\u00e9cifi\u00e9e, aucun lanceur disponible.\nPour permettre l'ouverture d'URLs ou de dossiers, \najouter une ligne \u00ab\u00a0launcher\=/chemin/vers/app\u00a0\u00bb \u00e0 preferences.txt @@ -1593,11 +1599,11 @@ Visit\ Arduino.cc=Visiter Arduino.cc #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format -!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=ATTENTION \: La cat\u00e9gorie '{0}' dans la biblioth\u00e8que {1} n'est pas valide. D\u00e9finition sur \: '{2}' #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format -!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=ATTENTION \: Faux {0} dossier dans la biblioth\u00e8que '{1}' #: ../../../processing/app/debug/Compiler.java:115 #, java-format @@ -1629,7 +1635,7 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Atten Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Attention\: platform.txt du c\u0153ur '{0}' contiens {1} d\u00e9pass\u00e9, converti automatiquement en {2}. La mise a niveau de ce c\u0153ur est conseill\u00e9e. #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=Attention \: platform.txt du noyau '{0}' ne contient pas la propri\u00e9t\u00e9 '{1}', utilisation de la valeur par d\u00e9faut '{2}'. Pensez \u00e0 mettre \u00e0 jour ce noyau. #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format @@ -1665,8 +1671,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Vous ne pouvez p #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Vous ne pouvez renommer le croquis en \u00ab\u00a0{0}\u00a0\u00bb\ncar il existe d\u00e9j\u00e0 un fichier .cpp portant ce nom. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Vous ne pouvez enregistrer le croquis sous \u00ab\u00a0{0}\u00a0\u00bb\nCar il existe d\u00e9j\u00e0 un fichier .cpp portant ce nom. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Vous ne pouvez enregistrer ce croquis dans son\npropre dossier. Cela ferait une boucle infinie. @@ -1793,11 +1799,11 @@ version\ {0}=version {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder={0} doit \u00eatre un dossier #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format -!{0}\ pattern\ is\ missing= +{0}\ pattern\ is\ missing={0} est un sch\u00e9ma manquant #: debug/Compiler.java:365 #, java-format 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 496be2a48..e1072ce44 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr_CA.po +++ b/arduino-core/src/processing/app/i18n/Resources_fr_CA.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Alexis Morin , 2015 # Alexis Morin , 2012 msgid "" @@ -15,7 +16,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: French (Canada) (http://www.transifex.com/mbanzi/arduino-ide-15/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -38,13 +39,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "« Keyboard » n'est supporté que sur l'Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "« Mouse » n'est supporté que sur l'Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -875,6 +879,11 @@ msgstr "Erreur lors du chargement du code {0}" msgid "Error while printing." msgstr "Erreur d'impression." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2304,11 +2313,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Vous ne pouvez renommer le croquis en « {0} »\ncar il existe déjà un fichier .cpp portant ce nom." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Vous ne pouvez enregistrer le croquis sous « {0} »\nCar il existe déjà un fichier .cpp portant ce nom." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 75333eded..1e78167fa 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties @@ -8,9 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Alexis Morin , 2015 # Alexis Morin , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: French (Canada) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: French (Canada) (http\://www.transifex.com/mbanzi/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) @@ -23,11 +24,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab Keyboard \u00bb n'est support\u00e9 que sur l'Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab Mouse \u00bb n'est support\u00e9 que sur l'Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -629,6 +630,10 @@ Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0} #: Editor.java:2567 Error\ while\ printing.=Erreur d'impression. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Vous ne #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Vous ne pouvez renommer le croquis en \u00ab {0} \u00bb\ncar il existe d\u00e9j\u00e0 un fichier .cpp portant ce nom. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Vous ne pouvez enregistrer le croquis sous \u00ab {0} \u00bb\nCar il existe d\u00e9j\u00e0 un fichier .cpp portant ce nom. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Vous ne pouvez enregistrer le croquis dans un dossier\nse contenant. \u00c7a irait pour toujours. diff --git a/arduino-core/src/processing/app/i18n/Resources_fy.po b/arduino-core/src/processing/app/i18n/Resources_fy.po index da8428a30..43011c3d0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fy.po +++ b/arduino-core/src/processing/app/i18n/Resources_fy.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Robin van der Vliet , 2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Western Frisian (http://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\n" "MIME-Version: 1.0\n" @@ -37,12 +38,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -874,6 +878,11 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2303,10 +2312,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 diff --git a/arduino-core/src/processing/app/i18n/Resources_fy.properties b/arduino-core/src/processing/app/i18n/Resources_fy.properties index 05968caf7..7a1c86778 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fy.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fy.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Robin van der Vliet , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Western Frisian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fy\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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Western Frisian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -22,11 +23,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Error\ inside\ Serial.{0}()=Flater yn Serial.{0}() #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1654,8 +1659,8 @@ Yes=Ja #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= diff --git a/arduino-core/src/processing/app/i18n/Resources_gl.po b/arduino-core/src/processing/app/i18n/Resources_gl.po index 349b0d863..991e7f894 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl.po +++ b/arduino-core/src/processing/app/i18n/Resources_gl.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # ccpr1l , 2014 # Diego Prado Gesto <>, 2012 # Marce Villarino , 2013 @@ -17,7 +18,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Galician (http://www.transifex.com/mbanzi/arduino-ide-15/language/gl/)\n" "MIME-Version: 1.0\n" @@ -40,13 +41,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "«Keyboard» so é compatíbel coa Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "«Mouse» só é compatíbel coa Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -877,6 +881,11 @@ msgstr "Produciuse un erro mentres se cargaba o código {0}" msgid "Error while printing." msgstr "Erro na impresión." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2306,11 +2315,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Non podes cambiar o nome do sketch a «{0}»\nporque o sketch xa ten un ficheiro .cpp con ese nome." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Non podes gardar o sketch como «{0}»\nporque o sketch xa ten un ficheiro .cpp con ese nome." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_gl.properties b/arduino-core/src/processing/app/i18n/Resources_gl.properties index 091442555..4a6fca8fb 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_gl.properties @@ -8,11 +8,12 @@ # Translators: # Translators: # Translators: +# Translators: # ccpr1l , 2014 # Diego Prado Gesto <>, 2012 # Marce Villarino , 2013 # Marce Villarino , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Galician (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Galician (http\://www.transifex.com/mbanzi/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) @@ -25,11 +26,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00abKeyboard\u00bb so \u00e9 compat\u00edbel coa Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00abMouse\u00bb s\u00f3 \u00e9 compat\u00edbel coa Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -631,6 +632,10 @@ Error\ while\ loading\ code\ {0}=Produciuse un erro mentres se cargaba o c\u00f3 #: Editor.java:2567 Error\ while\ printing.=Erro na impresi\u00f3n. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1657,8 +1662,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Non pod #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes cambiar o nome do sketch a \u00ab{0}\u00bb\nporque o sketch xa ten un ficheiro .cpp con ese nome. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes gardar o sketch como \u00ab{0}\u00bb\nporque o sketch xa ten un ficheiro .cpp con ese nome. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Non podes gardar o sketch nun cartafol\ndentro de si mesmo. Isto poder\u00eda acabar nun bucle infinito. diff --git a/arduino-core/src/processing/app/i18n/Resources_gl_ES.po b/arduino-core/src/processing/app/i18n/Resources_gl_ES.po index ec40424ea..edd6352a4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl_ES.po +++ b/arduino-core/src/processing/app/i18n/Resources_gl_ES.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Xurxo Guerra Perez , 2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Galician (Spain) (http://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\n" "MIME-Version: 1.0\n" @@ -30,20 +31,23 @@ msgstr "(requírese o reinicio de Arduino)" #: ../../../processing/app/debug/Compiler.java:529 #, java-format msgid " Not used: {0}" -msgstr "" +msgstr "Sen usar: {0}" #: ../../../processing/app/debug/Compiler.java:525 #, java-format msgid " Used: {0}" +msgstr "Usado: {0}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Teclado' só soportado no Arduino Leonardo" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Rato' só soportado no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -57,11 +61,11 @@ msgstr "(editar só cando Arduino non está en execución)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 msgid "(legacy)" -msgstr "" +msgstr "(herdanza)" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" -msgstr "" +msgstr "--curdir non soportado" #: ../../../processing/app/Base.java:468 msgid "" @@ -121,7 +125,7 @@ msgstr "Esta dispoñible unha nova versión de Arduino,\nDesexas visitar a páxi #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "A newer {0} package is available" -msgstr "" +msgstr "Hai un novo paquete dispoñible {0}" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" @@ -133,7 +137,7 @@ msgstr "Sobre Arduino" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr "Engadir a biblioteca .ZIP..." #: Editor.java:650 msgid "Add File..." @@ -159,7 +163,7 @@ msgstr "Albanés" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 msgid "All" -msgstr "" +msgstr "Todo" #: tools/FixEncoding.java:77 msgid "" @@ -170,7 +174,7 @@ msgstr "" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 msgid "An error occurred while updating libraries index!" -msgstr "" +msgstr "Produciuse un erro ao actualizar o índice das bibliotecas!" #: ../../../processing/app/BaseNoGui.java:528 msgid "An error occurred while uploading the sketch" @@ -372,7 +376,7 @@ msgstr "Bosniaco" #: SerialMonitor.java:112 msgid "Both NL & CR" -msgstr "" +msgstr "Ambos NL e CR" #: Preferences.java:81 msgid "Browse" @@ -644,7 +648,7 @@ msgstr "" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" -msgstr "" +msgstr "Predefinido" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" @@ -658,7 +662,7 @@ msgstr "" #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" -msgstr "" +msgstr "Desbotar todos os cambios e volver cargar o sketch?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" @@ -669,7 +673,7 @@ msgstr "Amosar os números de liña" msgid "" "Do you want to remove {0}?\n" "If you do so you won't be able to use {0} any more." -msgstr "" +msgstr "Queres eliminar {0}?\nSe o fas non poderás empregar {0} nunca máis." #: Editor.java:2064 msgid "Don't Save" @@ -698,16 +702,16 @@ msgstr "Impresión satisfactoria." #: ../../../processing/app/BaseNoGui.java:514 msgid "Done uploading" -msgstr "" +msgstr "Subido correctamente" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." -msgstr "" +msgstr "Subido correctamente." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format msgid "Downloaded {0}kb of {1}kb." -msgstr "" +msgstr "Descargados {0}kb de {1}kb." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 msgid "Downloading boards definitions." @@ -715,21 +719,21 @@ msgstr "" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 msgid "Downloading libraries index..." -msgstr "" +msgstr "Descangando o índice das bibliotecas..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format msgid "Downloading library: {0}" -msgstr "" +msgstr "Descargando a biblioteca: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 msgid "Downloading platforms index..." -msgstr "" +msgstr "Descargando o índice das plataformas..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format msgid "Downloading tools ({0}/{1})." -msgstr "" +msgstr "Descargando ferramentas ({0}/{1})." #: Preferences.java:91 msgid "Dutch" @@ -874,6 +878,11 @@ msgstr "Produciuse un erro ao cargar o código {0}" msgid "Error while printing." msgstr "Erro na impresión." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Erro ao subir" @@ -1028,11 +1037,11 @@ msgstr "As variables globais usan {0} bytes de memoria dinámica." #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Ir á liña" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Ir á liña..." #: Preferences.java:98 msgid "Greek" @@ -1052,7 +1061,7 @@ msgstr "Hindi" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Nome da máquina:" #: Sketch.java:295 msgid "" @@ -1093,12 +1102,12 @@ msgstr "" #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" -msgstr "" +msgstr "Incluír biblioteca" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "Cartafol de instalación do IDE incorrecto" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -1110,7 +1119,7 @@ msgstr "Indonesio" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." -msgstr "" +msgstr "Inicializando os paquetes..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -1119,15 +1128,15 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Instalar" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Instalación completada!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Instalado" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." @@ -1136,17 +1145,17 @@ msgstr "" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "Instalando a biblioteca: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "Instalando ferramentas ({0}/{1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Instalando..." #: ../../../processing/app/Base.java:1204 #, java-format @@ -1176,7 +1185,7 @@ msgstr "Letón" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Xestor da biblioteca" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" @@ -1189,11 +1198,11 @@ msgstr "" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" -msgstr "" +msgstr "A biblioteca xa está instalada: {0} versión {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Número de liña:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1201,7 +1210,7 @@ msgstr "Lituano" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." -msgstr "" +msgstr "Cargando a configuración..." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format @@ -1239,7 +1248,7 @@ msgstr "Modo non soportado" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "Máis" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1272,7 +1281,7 @@ msgstr "Nepalés" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Rede" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" @@ -2303,10 +2312,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 diff --git a/arduino-core/src/processing/app/i18n/Resources_gl_ES.properties b/arduino-core/src/processing/app/i18n/Resources_gl_ES.properties index bb446d9af..40ab20652 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl_ES.properties +++ b/arduino-core/src/processing/app/i18n/Resources_gl_ES.properties @@ -8,25 +8,26 @@ # Translators: # Translators: # Translators: +# Translators: # Xurxo Guerra Perez , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Galician (Spain) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl_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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Galician (Spain) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl_ES\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requ\u00edrese o reinicio de Arduino) #: ../../../processing/app/debug/Compiler.java:529 #, java-format -!\ Not\ used\:\ {0}= +\ Not\ used\:\ {0}=Sen usar\: {0} #: ../../../processing/app/debug/Compiler.java:525 #, java-format -!\ Used\:\ {0}= +\ Used\:\ {0}=Usado\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclado' s\u00f3 soportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rato' s\u00f3 soportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -35,10 +36,10 @@ (edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3 cando Arduino non est\u00e1 en execuci\u00f3n) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 -!(legacy)= +(legacy)=(herdanza) #: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= +--curdir\ no\ longer\ supported=--curdir non soportado #: ../../../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 se poden empregar xunto con --verify ou --upload @@ -78,7 +79,7 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!A\ newer\ {0}\ package\ is\ available= +A\ newer\ {0}\ package\ is\ available=Hai un novo paquete dispo\u00f1ible {0} #: ../../../../../app/src/processing/app/Base.java:2307 !A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= @@ -87,7 +88,7 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ About\ Arduino=Sobre Arduino #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=Engadir a biblioteca .ZIP... #: Editor.java:650 Add\ File...=Engadir ficheiro... @@ -107,13 +108,13 @@ Albanian=Alban\u00e9s #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= +All=Todo #: 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= #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= +An\ error\ occurred\ while\ updating\ libraries\ index\!=Produciuse un erro ao actualizar o \u00edndice das bibliotecas\! #: ../../../processing/app/BaseNoGui.java:528 An\ error\ occurred\ while\ uploading\ the\ sketch=Produciuse un erro subindo o sketch @@ -258,7 +259,7 @@ Board\:\ =Placa\: Bosnian=Bosniaco #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=Ambos NL e CR #: Preferences.java:81 !Browse= @@ -456,7 +457,7 @@ Danish\ (Denmark)=Dan\u00e9s (Dinamarca) !Decrease\ Indent= #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= +Default=Predefinido #: EditorHeader.java:314 Sketch.java:591 Delete=Eliminar @@ -465,14 +466,14 @@ Delete=Eliminar !Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=Desbotar todos os cambios e volver cargar o sketch? #: ../../../processing/app/Preferences.java:438 Display\ line\ numbers=Amosar os n\u00fameros de li\u00f1a #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= +Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=Queres eliminar {0}?\nSe o fas non poder\u00e1s empregar {0} nunca m\u00e1is. #: Editor.java:2064 Don't\ Save=Non gardar @@ -494,31 +495,31 @@ Done\ compiling.=Compilaci\u00f3n satisfactoria. Done\ printing.=Impresi\u00f3n satisfactoria. #: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= +Done\ uploading=Subido correctamente #: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= +Done\ uploading.=Subido correctamente. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= +Downloaded\ {0}kb\ of\ {1}kb.=Descargados {0}kb de {1}kb. #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 !Downloading\ boards\ definitions.= #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= +Downloading\ libraries\ index...=Descangando o \u00edndice das bibliotecas... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format -!Downloading\ library\:\ {0}= +Downloading\ library\:\ {0}=Descargando a biblioteca\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= +Downloading\ platforms\ index...=Descargando o \u00edndice das plataformas... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format -!Downloading\ tools\ ({0}/{1}).= +Downloading\ tools\ ({0}/{1}).=Descargando ferramentas ({0}/{1}). #: Preferences.java:91 Dutch=Neerland\u00e9s @@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Produciuse un erro ao cargar o c\u00f3digo {0} #: Editor.java:2567 Error\ while\ printing.=Erro na impresi\u00f3n. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Erro ao subir @@ -742,10 +747,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=As variables globais usan {0} bytes de memoria din\u00e1mica. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=Ir \u00e1 li\u00f1a #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=Ir \u00e1 li\u00f1a... #: Preferences.java:98 Greek=Grego @@ -760,7 +765,7 @@ Help=Axuda Hindi=Hindi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Nome da m\u00e1quina\: #: Sketch.java:295 !How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= @@ -784,11 +789,11 @@ Ignoring\ bad\ library\ name=Ignorar os nomes de biblioteca non v\u00e1lidos !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?= #: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= +Include\ Library=Inclu\u00edr biblioteca #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=Cartafol de instalaci\u00f3n do IDE incorrecto #: Editor.java:1216 Editor.java:2757 !Increase\ Indent= @@ -797,7 +802,7 @@ Ignoring\ bad\ library\ name=Ignorar os nomes de biblioteca non v\u00e1lidos Indonesian=Indonesio #: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= +Initializing\ packages...=Inicializando os paquetes... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -805,28 +810,28 @@ Indonesian=Indonesio #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=Instalar #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=Instalaci\u00f3n completada\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=Instalado #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 !Installing\ boards...= #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=Instalando a biblioteca\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=Instalando ferramentas ({0}/{1})... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=Instalando... #: ../../../processing/app/Base.java:1204 #, java-format @@ -849,7 +854,7 @@ Korean=Coreano Latvian=Let\u00f3n #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=Xestor da biblioteca #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= @@ -859,16 +864,16 @@ Latvian=Let\u00f3n #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= +Library\ is\ already\ installed\:\ {0}\ version\ {1}=A biblioteca xa est\u00e1 instalada\: {0} versi\u00f3n {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=N\u00famero de li\u00f1a\: #: Preferences.java:106 Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=Cargando a configuraci\u00f3n... #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format @@ -897,7 +902,7 @@ Message=Mensaxe Mode\ not\ supported=Modo non soportado #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=M\u00e1is #: Preferences.java:449 !More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= @@ -922,7 +927,7 @@ Name\ for\ new\ file\:=Nome do novo ficheiro\: Nepali=Nepal\u00e9s #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=Rede #: ../../../../../app/src/processing/app/Editor.java:65 Network\ ports=Portos de rede @@ -1654,8 +1659,8 @@ Yes=Si #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= diff --git a/arduino-core/src/processing/app/i18n/Resources_hi.po b/arduino-core/src/processing/app/i18n/Resources_hi.po index 91bf2df09..ddbf6a824 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hi.po +++ b/arduino-core/src/processing/app/i18n/Resources_hi.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Gaurav Waghmare , 2015 # Nishant Sood , 2012 # Parimal Naigaonkar , 2012 @@ -16,7 +17,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Hindi (http://www.transifex.com/mbanzi/arduino-ide-15/language/hi/)\n" "MIME-Version: 1.0\n" @@ -39,12 +40,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -876,6 +880,11 @@ msgstr "कोड लोड करते समय त्रुटी {0}" msgid "Error while printing." msgstr "प्रिंटिंग करते समय त्रुटी " +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2305,11 +2314,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "स्केत्च का नाम बदल के \"{0}\" नहीं रखा जा सकता \nक्यूंकि इस नाम की .cpp फाइल पहले से hai" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "आप स्केत्च को {०} की तरह नहीं सेव कर सकते\nक्यूंकि इस नाम की .cpp फाइल पहले ही वहां है " +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_hi.properties b/arduino-core/src/processing/app/i18n/Resources_hi.properties index 4ac218201..0dc62ed86 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hi.properties @@ -8,10 +8,11 @@ # Translators: # Translators: # Translators: +# Translators: # Gaurav Waghmare , 2015 # 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\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Hindi (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Hindi (http\://www.transifex.com/mbanzi/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\u0928\u0947 \u0915\u0940 \u0906\u0935\u0936\u094d\u092f\u0915) @@ -24,11 +25,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -630,6 +631,10 @@ 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 +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1656,8 +1661,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0938\ #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932 \u0915\u0947 "{0}" \u0928\u0939\u0940\u0902 \u0930\u0916\u093e \u091c\u093e \u0938\u0915\u0924\u093e \n\u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 .cpp \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0938\u0947 hai -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0906\u092a \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b {\u0966} \u0915\u0940 \u0924\u0930\u0939 \u0928\u0939\u0940\u0902 \u0938\u0947\u0935 \u0915\u0930 \u0938\u0915\u0924\u0947\n\u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 .cpp \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0939\u0940 \u0935\u0939\u093e\u0902 \u0939\u0948 +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0906\u092a \u090f\u0915 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u0940 \u092a\u0941\u0938\u093f\u0924\u0915\u093e \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0939\u0940 \u0909\u0938 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947 \n\u092f\u0939 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0924\u093e ,\u0907\u0938\u0915\u093e \u0915\u094b\u0908 \u0905\u0902\u0924 \u0928\u0939\u0940\u0902 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 a01d95a5b..bf6e8020e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hr_HR.po +++ b/arduino-core/src/processing/app/i18n/Resources_hr_HR.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Dubravko Penezic , 2012 # Dubravko Penezic , 2013 # mbruck , 2014 @@ -16,7 +17,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/hr_HR/)\n" "MIME-Version: 1.0\n" @@ -39,13 +40,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' podrška dostupna samo na Arduino Leonardu" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' podrška dostupna samo na Arduino Leonardo-u" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -876,6 +880,11 @@ msgstr "Greška pri učitavanju koda {0}" msgid "Error while printing." msgstr "Greška pri tiskanju." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2305,11 +2314,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Nemoguće je preimenovati skicu u \"{0}\"\njer takva skica već ima .cpp datoteku s istim imenom" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Nemožete snimiti skicu kao \"{0}\"\nzato što skica već ima .cpp kao ime datoteke." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" 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 b4720979f..c70c08aee 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties @@ -8,10 +8,11 @@ # Translators: # Translators: # Translators: +# Translators: # Dubravko Penezic , 2012 # Dubravko Penezic , 2013 # mbruck , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Croatian (Croatia) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Croatian (Croatia) (http\://www.transifex.com/mbanzi/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) @@ -24,11 +25,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' podr\u0161ka dostupna samo na Arduino Leonardu +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' podr\u0161ka dostupna samo na Arduino Leonardo-u +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -630,6 +631,10 @@ Error\ while\ loading\ code\ {0}=Gre\u0161ka pri u\u010ditavanju koda {0} #: Editor.java:2567 Error\ while\ printing.=Gre\u0161ka pri tiskanju. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1656,8 +1661,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nemogu\ #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nemogu\u0107e je preimenovati skicu u "{0}"\njer takva skica ve\u0107 ima .cpp datoteku s istim imenom -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nemo\u017eete snimiti skicu kao "{0}"\nzato \u0161to skica ve\u0107 ima .cpp kao ime datoteke. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nemogu\u0107e je pohraniti skicu u mapu\nunutar samog sebe. To bi potrajalo u beskona\u010dnost. diff --git a/arduino-core/src/processing/app/i18n/Resources_hu.po b/arduino-core/src/processing/app/i18n/Resources_hu.po index 6fc8d5a9a..76fdc2a97 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hu.po +++ b/arduino-core/src/processing/app/i18n/Resources_hu.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # benewfy , 2015 # Melinda , 2014 # Cseh Robert , 2012 @@ -16,7 +17,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Hungarian (http://www.transifex.com/mbanzi/arduino-ide-15/language/hu/)\n" "MIME-Version: 1.0\n" @@ -39,13 +40,16 @@ msgstr "Nem használt: {0}" msgid " Used: {0}" msgstr "Használt: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "Az 'USB billentyűzet' megvalósítást csak az Arduino Leonardo támogatja." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "Az 'USB Egér' megvalósítást csak az Arduino Leonardo támogatja." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -63,7 +67,7 @@ msgstr "" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" -msgstr "" +msgstr "--curdir továbbiakban nem támogatott" #: ../../../processing/app/Base.java:468 msgid "" @@ -97,7 +101,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 " Szeretné menteni a változtatásokat ezen a Sketchen
mielött bezárná?

Ha nem menti el, a változtatások elvesznek." +msgstr " Szeretné menteni a változtatásokat ezen a vázlaton
mielött bezárná?

Ha nem menti el, a változtatások elvesznek." #: Sketch.java:398 #, java-format @@ -107,7 +111,7 @@ 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 "Ez a mappa \"{0}\" már létezik. Sketchet nem lehet megnyitni." +msgstr "\"{0}\" nevű mappa már létezik. Vázlatot nem lehet megnyitni." #: Base.java:2690 #, java-format @@ -127,7 +131,7 @@ msgstr "Egy új {0} csomag elérhető" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" +msgstr "A vázlatfüzetének egy almappája nem egy érvényes könyvtár" #: Editor.java:1116 msgid "About Arduino" @@ -135,7 +139,7 @@ msgstr "Arduinoról" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr ".ZIP könyvtár hozzáadása..." #: Editor.java:650 msgid "Add File..." @@ -151,7 +155,7 @@ msgstr "" #: ../../../../../app/src/processing/app/Preferences.java:161 msgid "Afrikaans" -msgstr "" +msgstr "Afrikaans" #: ../../../processing/app/Preferences.java:96 msgid "Albanian" @@ -204,11 +208,11 @@ msgstr "Aragóniai" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "Sketch arhiválása" +msgstr "Vázlat arhiválása" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "Sketch arhiválása másként:" +msgstr "Vázlat archiválása másként:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." @@ -244,7 +248,7 @@ msgstr "Arduino nem futtatható, mert nem hozható létre\\na felhasználói be msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "Arduino nem futtatható, mert nem hozható létre\\na felhasználói Sketch mentések mappája." +msgstr "Arduino nem futtatható, mert nem hozható létre\nfelhasználói mappa a vázlatfüzete tárolására." #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " @@ -283,11 +287,11 @@ msgstr "" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Örmény" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Asztúriai" #: ../../../processing/app/debug/Compiler.java:145 msgid "Authorization required" @@ -324,11 +328,11 @@ msgstr "" #: ../../../processing/app/Preferences.java:149 msgid "Basque" -msgstr "" +msgstr "Baszk" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" +msgstr "Fehérorosz" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -370,7 +374,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bosnyák" #: SerialMonitor.java:112 msgid "Both NL & CR" @@ -390,15 +394,15 @@ msgstr "" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "Bolgár" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "Burmai (Mianmar)" #: Editor.java:708 msgid "Burn Bootloader" -msgstr "" +msgstr "Bootloader égetése" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." @@ -406,7 +410,7 @@ msgstr "" #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." -msgstr "" +msgstr "CRC nem egyezik. A fájl sérült." #: ../../../processing/app/Base.java:379 #, java-format @@ -420,12 +424,12 @@ msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "Kanadai francia" #: 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 "Mégse" #: Sketch.java:455 msgid "Cannot Rename" @@ -441,7 +445,7 @@ msgstr "Soremelés" #: Preferences.java:87 msgid "Catalan" -msgstr "" +msgstr "Katalán" #: Preferences.java:419 msgid "Check for updates on startup" @@ -449,15 +453,15 @@ msgstr "Újabb verzió ellenőrzése indításkor" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" +msgstr "Kínai (Kína)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Kínai (Tajvan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Kínai (Tajvan) (Big5)" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" @@ -481,11 +485,11 @@ msgstr "" #: Editor.java:1157 Editor.java:2707 msgid "Copy" -msgstr "" +msgstr "Másolás" #: Editor.java:1177 Editor.java:2723 msgid "Copy as HTML" -msgstr "" +msgstr "Másolás HTML-ként" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" @@ -506,11 +510,11 @@ msgstr "Nem másolható a megfelelő helyre." #: Editor.java:2179 msgid "Could not create the sketch folder." -msgstr "" +msgstr "A vázlat mappa nem hozható létre." #: Editor.java:2206 msgid "Could not create the sketch." -msgstr "Sketch nem hozható létre." +msgstr "A vázlat nem hozható létre." #: Sketch.java:617 #, java-format @@ -626,19 +630,19 @@ msgstr "" #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr "Horvát" #: Editor.java:1149 Editor.java:2699 msgid "Cut" -msgstr "" +msgstr "Kivágás" #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" -msgstr "" +msgstr "Cseh (Cseh Köztársaság)" #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" -msgstr "" +msgstr "Dán (Dánia)" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" @@ -646,7 +650,7 @@ msgstr "" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" -msgstr "" +msgstr "Alapértelmezett" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" @@ -735,11 +739,11 @@ msgstr "" #: Preferences.java:91 msgid "Dutch" -msgstr "" +msgstr "Holland" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Holland (Hollandia)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" @@ -747,7 +751,7 @@ msgstr "" #: Editor.java:1130 msgid "Edit" -msgstr "" +msgstr "Szerkesztés" #: Preferences.java:370 msgid "Editor font size: " @@ -763,11 +767,11 @@ msgstr "" #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "Angol" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "Angol (Egyesült Királyság)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 @@ -780,7 +784,7 @@ msgstr "" #: Editor.java:1062 msgid "Environment" -msgstr "" +msgstr "Környezet" #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 @@ -857,7 +861,7 @@ msgstr "Hiba a \"{0}\" port hozzáférés során." #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." -msgstr "" +msgstr "Hiba a bootloader égetése közben." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" @@ -874,6 +878,11 @@ msgstr "" #: Editor.java:2567 msgid "Error while printing." +msgstr "Hiba a nyomtatás közben." + +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" msgstr "" #: ../../../processing/app/BaseNoGui.java:528 @@ -897,15 +906,15 @@ msgstr "" #: Preferences.java:93 msgid "Estonian" -msgstr "" +msgstr "Észt" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Észt (Észtország)" #: Editor.java:516 msgid "Examples" -msgstr "" +msgstr "Példák" #: ../../../../../app/src/processing/app/Base.java:1244 msgid "Examples from Custom Libraries" @@ -930,11 +939,11 @@ msgstr "" #: Editor.java:491 msgid "File" -msgstr "" +msgstr "Fájl" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "Filippínó" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." @@ -966,7 +975,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Finn" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -986,19 +995,19 @@ msgstr "" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "Francia" #: Editor.java:1097 msgid "Frequently Asked Questions" -msgstr "" +msgstr "Gyakran Ismételt Kérdések" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "Galíciai" #: ../../../../../app/src/processing/app/Preferences.java:176 msgid "Galician (Spain)" -msgstr "" +msgstr "Galíciai (Spanyolország)" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" @@ -1006,11 +1015,11 @@ msgstr "" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "Grúz" #: Preferences.java:97 msgid "German" -msgstr "" +msgstr "Német" #: Editor.java:1054 msgid "Getting Started" @@ -1038,19 +1047,19 @@ msgstr "" #: Preferences.java:98 msgid "Greek" -msgstr "" +msgstr "Görög" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "Héber" #: Editor.java:1015 msgid "Help" -msgstr "" +msgstr "Súgó" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "Hindi" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" @@ -1060,7 +1069,7 @@ msgstr "" msgid "" "How about saving the sketch first \n" "before trying to rename it?" -msgstr "A Sketch csak mentés után\\nnevezhető át!" +msgstr "Mi lenne, ha mentené a vázlatot, \nmielőtt megpróbálja átnevezni?" #: Sketch.java:882 msgid "How very Borges of you" @@ -1068,7 +1077,7 @@ msgstr "" #: Preferences.java:100 msgid "Hungarian" -msgstr "" +msgstr "Magyar" #: FindReplace.java:96 msgid "Ignore Case" @@ -1080,7 +1089,7 @@ msgstr "Hibás könyvtárnév kihagyása" #: Base.java:1436 msgid "Ignoring sketch with bad name" -msgstr "Hibás Sketch név kihagyása" +msgstr "Hibás nevű vázlat kihagyása" #: ../../../processing/app/Sketch.java:736 msgid "" @@ -1108,7 +1117,7 @@ msgstr "" #: Preferences.java:101 msgid "Indonesian" -msgstr "" +msgstr "Indonéz" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." @@ -1121,15 +1130,15 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Telepítés" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Telepítés befejeződött!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Telepítve" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." @@ -1148,7 +1157,7 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Telepítés..." #: ../../../processing/app/Base.java:1204 #, java-format @@ -1162,7 +1171,7 @@ msgstr "" #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "Olasz" #: Preferences.java:103 msgid "Japanese" @@ -1178,7 +1187,7 @@ msgstr "Lett" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Könyvtár kezelő" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" @@ -1216,7 +1225,7 @@ msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." -msgstr "" +msgstr "Könyvtárak kezelése..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" @@ -1224,7 +1233,7 @@ msgstr "" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "Marathi" #: Base.java:2112 msgid "Message" @@ -1241,7 +1250,7 @@ msgstr "" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "Továbbiak" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1249,7 +1258,7 @@ msgstr "További számos beállítás elérhető a file közvetlen szerkesztés #: Editor.java:2156 msgid "Moving" -msgstr "" +msgstr "Áthelyezés" #: ../../../processing/app/BaseNoGui.java:484 msgid "Multiple files not supported" @@ -1270,15 +1279,15 @@ msgstr "Új file neve:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepáli" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Hálózat" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" -msgstr "" +msgstr "Hálózati portok" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" @@ -1286,7 +1295,7 @@ msgstr "" #: EditorToolbar.java:41 Editor.java:493 msgid "New" -msgstr "" +msgstr "Új" #: EditorHeader.java:292 msgid "New Tab" @@ -1302,7 +1311,7 @@ msgstr "Következő fül" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" -msgstr "" +msgstr "Nem" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" @@ -1338,7 +1347,7 @@ msgstr "" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Nincs proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1352,11 +1361,11 @@ msgstr "" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "No sketch" -msgstr "" +msgstr "Nincs vázlat" #: ../../../processing/app/BaseNoGui.java:428 msgid "No sketchbook" -msgstr "" +msgstr "Nincs vázlatfüzet" #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" @@ -1373,7 +1382,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" +msgstr "Norvég" #: ../../../processing/app/Sketch.java:1656 msgid "" @@ -1384,7 +1393,7 @@ msgstr "" #: 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." @@ -1408,7 +1417,7 @@ msgstr "" #: Base.java:636 msgid "Open an Arduino sketch..." -msgstr "Arduino Sketch megnyitása..." +msgstr "Arduino vázlat megnyitása..." #: Base.java:903 Editor.java:501 msgid "Open..." @@ -1449,7 +1458,7 @@ 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." +msgstr "Kérem importálja az SPI könyvtárat a Vázlat > Könyvtár Importálása menüből." #: ../../../processing/app/debug/Compiler.java:529 msgid "Please import the Wire library from the Sketch > Import Library menu." @@ -1668,7 +1677,7 @@ msgstr "" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." -msgstr "Válassz (vagy hozz létre) mappát a Sketch-eknek..." +msgstr "Válasszon (vagy hozzon létre) mappát a vázlatoknak..." #: Editor.java:1198 Editor.java:2739 msgid "Select All" @@ -1684,7 +1693,7 @@ msgstr "" #: Preferences.java:330 msgid "Select new sketchbook location" -msgstr "Válasszon új SketchBook mappát" +msgstr "Válasszon új vázlatfüzet helyet" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 @@ -1768,15 +1777,15 @@ msgstr "" #: Base.java:1411 msgid "Sketch Does Not Exist" -msgstr "Sketch nem nyitható meg" +msgstr "A vázlat nem létezik" #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 msgid "Sketch is Read-Only" -msgstr "A Sketch írásvédett" +msgstr "A vázlat csak olvasható" #: Sketch.java:294 msgid "Sketch is Untitled" -msgstr "A Sketch most Névtelen (Untitled)" +msgstr "A vázlat Névtelen" #: Sketch.java:720 msgid "Sketch is read-only" @@ -1801,11 +1810,11 @@ msgstr "" #: Base.java:258 msgid "Sketchbook folder disappeared" -msgstr "A SketchBook mappa elérhetetlen" +msgstr "A vázlatfüzet mappa eltűnt" #: Preferences.java:315 msgid "Sketchbook location:" -msgstr "SketchBook helye:" +msgstr "Vázlatfüzet helye:" #: ../../../processing/app/BaseNoGui.java:428 msgid "Sketchbook path not defined" @@ -1824,7 +1833,7 @@ 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 "Néhány file csak olvasható, így más helyre mentés után\\nújra meg kell próbálni." +msgstr "Néhány fájl \"csak olvasható\"-nak van jelölve, így\nújra kell mentenie a vázlatot másik helyre és\nújrapróbálni." #: Sketch.java:721 msgid "" @@ -1928,7 +1937,7 @@ msgid "" "The selected sketch no longer exists.\n" "You may need to restart Arduino to update\n" "the sketchbook menu." -msgstr "A kiválasztott Sketch nem érhető el.\\nA SketchBook menü frissítéséhez az Arduino\\nújraindítása szükséges." +msgstr "A kiválasztott vázlat már nem létezik.\nLehet, hogy újra kell indítania az Arduino-t,\nhogy frissítse a vázlatfüzet menüt." #: Base.java:1430 #, java-format @@ -1938,7 +1947,7 @@ 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 "A \"{0}\" Sketch nem használható.\\nA Sketch neve csak angol abc betűit, számokat\\ntartalmazhat, szóköz nélkül és az első betűje nem lehet szám.\\nA hibás Sketch-et távolítsd el\\na(z) {1} mappából!" +msgstr "A \"{0}\" vázlat nem használható.\nA vázlatok neve csak angol abc betűit és számokat tartalmazhat\n(csak ASCII szóköz nélkül és nem kezdődhet számmal). Ahhoz,\nhogy megszabaduljon ettől az üzenettőt, távolítsa el a vázlatot innen:\n{1}" #: Sketch.java:1755 msgid "" @@ -1961,7 +1970,7 @@ msgid "" "location, and create a new sketchbook folder if\n" "necessary. Arduino will then stop talking about\n" "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." +msgstr "A vázlatfüzet mappa már nem létezik.\nAz Arduino átvált az alapértelmezett vázlatfüzet\nhelyre, és készít egy új vázlatfüzet mappát, ha\nszükséges. Az Arduino ekkor befejezi magáról a\nharmadik személyként való említést." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 msgid "" @@ -2091,7 +2100,7 @@ msgstr "" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "Sketch frissítése az új kiterjesztéssel (.pde -> .ino)" +msgstr "Vázlat fájlok frissítés új kiterjesztésre mentésnél (.pde -> .ino)" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" @@ -2305,10 +2314,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 @@ -2319,7 +2328,7 @@ msgstr "" #: Base.java:1888 msgid "You forgot your sketchbook" -msgstr "Felejtsd el a SketchBook-odat" +msgstr "Felejtse el a vázlatfüzetét" #: ../../../processing/app/AbstractMonitor.java:92 msgid "" @@ -2330,7 +2339,7 @@ msgstr "" msgid "" "You've reached the limit for auto naming of new sketches\n" "for the day. How about going for a walk instead?" -msgstr "Meghaladtad az egy napra jutó új Sketch-ek létrehozási\\n\nszámot. Nem kéne sétálni egyet - pihenésül?" +msgstr "Meghaladta a napi korlátot az új vázlatok automatikus\nnévadásához. Mi lenne, ha inkább sétálna egyet?" #: ../../../processing/app/BaseNoGui.java:768 msgid "" @@ -2501,7 +2510,7 @@ msgstr "" #: Editor.java:380 #, java-format msgid "{0} files added to the sketch." -msgstr "" +msgstr "{0} fájl hozzáadva a vázlathoz." #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_hu.properties b/arduino-core/src/processing/app/i18n/Resources_hu.properties index 2aa8881c0..104433ee8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hu.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hu.properties @@ -8,10 +8,11 @@ # Translators: # Translators: # Translators: +# Translators: # benewfy , 2015 # Melinda , 2014 # Cseh Robert , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Hungarian (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Hungarian (http\://www.transifex.com/mbanzi/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) @@ -24,11 +25,11 @@ #, java-format \ Used\:\ {0}=Haszn\u00e1lt\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=Az 'USB billenty\u0171zet' megval\u00f3s\u00edt\u00e1st csak az Arduino Leonardo t\u00e1mogatja. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=Az 'USB Eg\u00e9r' megval\u00f3s\u00edt\u00e1st csak az Arduino Leonardo t\u00e1mogatja. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -40,7 +41,7 @@ !(legacy)= #: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= +--curdir\ no\ longer\ supported=--curdir tov\u00e1bbiakban nem t\u00e1mogatott #: ../../../processing/app/Base.java:468 !--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= @@ -61,7 +62,7 @@ !
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= #: 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.= Szeretn\u00e9 menteni a v\u00e1ltoztat\u00e1sokat ezen a Sketchen
miel\u00f6tt bez\u00e1rn\u00e1?

Ha nem menti el, a v\u00e1ltoztat\u00e1sok elvesznek. +\ \ 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 v\u00e1zlaton
miel\u00f6tt bez\u00e1rn\u00e1?

Ha nem menti el, a v\u00e1ltoztat\u00e1sok elvesznek. #: Sketch.java:398 #, java-format @@ -69,7 +70,7 @@ 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.=Ez a mappa "{0}" m\u00e1r l\u00e9tezik. Sketchet nem lehet megnyitni. +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.="{0}" nev\u0171 mappa m\u00e1r l\u00e9tezik. V\u00e1zlatot nem lehet megnyitni. #: Base.java:2690 #, java-format @@ -83,13 +84,13 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ A\ newer\ {0}\ package\ is\ available=Egy \u00faj {0} csomag el\u00e9rhet\u0151 #: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= +A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=A v\u00e1zlatf\u00fczet\u00e9nek egy almapp\u00e1ja nem egy \u00e9rv\u00e9nyes k\u00f6nyvt\u00e1r #: Editor.java:1116 About\ Arduino=Arduinor\u00f3l #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=.ZIP k\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa... #: Editor.java:650 Add\ File...=F\u00e1jl hozz\u00e1ad\u00e1sa... @@ -101,7 +102,7 @@ Add\ File...=F\u00e1jl hozz\u00e1ad\u00e1sa... !Additional\ Boards\ Manager\ URLs\:\ = #: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= +Afrikaans=Afrikaans #: ../../../processing/app/Preferences.java:96 Albanian=Alb\u00e1n @@ -138,10 +139,10 @@ Arabic=Arab Aragonese=Arag\u00f3niai #: tools/Archiver.java:48 -Archive\ Sketch=Sketch arhiv\u00e1l\u00e1sa +Archive\ Sketch=V\u00e1zlat arhiv\u00e1l\u00e1sa #: tools/Archiver.java:109 -Archive\ sketch\ as\:=Sketch arhiv\u00e1l\u00e1sa m\u00e1sk\u00e9nt\: +Archive\ sketch\ as\:=V\u00e1zlat archiv\u00e1l\u00e1sa m\u00e1sk\u00e9nt\: #: tools/Archiver.java:139 !Archive\ sketch\ canceled.= @@ -162,7 +163,7 @@ Archive\ sketch\ as\:=Sketch arhiv\u00e1l\u00e1sa m\u00e1sk\u00e9nt\: 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. #: Base.java:1889 -Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\\na felhaszn\u00e1l\u00f3i Sketch ment\u00e9sek mapp\u00e1ja. +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\nfelhaszn\u00e1l\u00f3i mappa a v\u00e1zlatf\u00fczete t\u00e1rol\u00e1s\u00e1ra. #: ../../../processing/app/EditorStatus.java:471 Arduino\:\ =Arduino\: @@ -192,10 +193,10 @@ Arduino\:\ =Arduino\: !Argument\ required\ for\ {0}= #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u00d6rm\u00e9ny #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=Aszt\u00fariai #: ../../../processing/app/debug/Compiler.java:145 !Authorization\ required= @@ -223,10 +224,10 @@ Arduino\:\ =Arduino\: !Bad\ file\ selected= #: ../../../processing/app/Preferences.java:149 -!Basque= +Basque=Baszk #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=Feh\u00e9rorosz #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 @@ -257,7 +258,7 @@ Arduino\:\ =Arduino\: !Bootloader\ file\ specified\ but\ missing\:\ {0}= #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=Bosny\u00e1k #: SerialMonitor.java:112 Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza @@ -272,19 +273,19 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza !Built-in\ Examples= #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=Bolg\u00e1r #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=Burmai (Mianmar) #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=Bootloader \u00e9get\u00e9se #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= +CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC nem egyezik. A f\u00e1jl s\u00e9r\u00fclt. #: ../../../processing/app/Base.java:379 #, java-format @@ -295,11 +296,11 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza !Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=Kanadai francia #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= +Cancel=M\u00e9gse #: Sketch.java:455 !Cannot\ Rename= @@ -311,19 +312,19 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza Carriage\ return=Soremel\u00e9s #: Preferences.java:87 -!Catalan= +Catalan=Katal\u00e1n #: Preferences.java:419 Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se ind\u00edt\u00e1skor #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=K\u00ednai (K\u00edna) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=K\u00ednai (Tajvan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=K\u00ednai (Tajvan) (Big5) #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -341,10 +342,10 @@ Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se in !Compiling\ sketch...= #: Editor.java:1157 Editor.java:2707 -!Copy= +Copy=M\u00e1sol\u00e1s #: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= +Copy\ as\ HTML=M\u00e1sol\u00e1s HTML-k\u00e9nt #: ../../../processing/app/EditorStatus.java:455 !Copy\ error\ messages= @@ -360,10 +361,10 @@ Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se in Could\ not\ copy\ to\ a\ proper\ location.=Nem m\u00e1solhat\u00f3 a megfelel\u0151 helyre. #: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= +Could\ not\ create\ the\ sketch\ folder.=A v\u00e1zlat mappa nem hozhat\u00f3 l\u00e9tre. #: Editor.java:2206 -Could\ not\ create\ the\ sketch.=Sketch nem hozhat\u00f3 l\u00e9tre. +Could\ not\ create\ the\ sketch.=A v\u00e1zlat nem hozhat\u00f3 l\u00e9tre. #: Sketch.java:617 #, java-format @@ -443,22 +444,22 @@ Could\ not\ replace\ {0}=Nem cser\u00e9lhet\u0151\: {0} !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.= #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=Horv\u00e1t #: Editor.java:1149 Editor.java:2699 -!Cut= +Cut=Kiv\u00e1g\u00e1s #: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= +Czech\ (Czech\ Republic)=Cseh (Cseh K\u00f6zt\u00e1rsas\u00e1g) #: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= +Danish\ (Denmark)=D\u00e1n (D\u00e1nia) #: Editor.java:1224 Editor.java:2765 !Decrease\ Indent= #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= +Default=Alap\u00e9rtelmezett #: EditorHeader.java:314 Sketch.java:591 Delete=T\u00f6rl\u00e9s @@ -523,16 +524,16 @@ Done\ Saving.=Ment\u00e9s k\u00e9sz. !Downloading\ tools\ ({0}/{1}).= #: Preferences.java:91 -!Dutch= +Dutch=Holland #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=Holland (Hollandia) #: ../../../../../app/src/processing/app/Editor.java:1309 !Edison\ Help= #: Editor.java:1130 -!Edit= +Edit=Szerkeszt\u00e9s #: Preferences.java:370 Editor\ font\ size\:\ =Szerkeszt\u0151 bet\u0171m\u00e9ret\: @@ -544,10 +545,10 @@ Editor\ language\:\ =Szerkeszt\u0151 nyelve\: !Enable\ Code\ Folding= #: Preferences.java:92 -!English= +English=Angol #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=Angol (Egyes\u00fclt Kir\u00e1lys\u00e1g) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 @@ -557,7 +558,7 @@ Editor\ language\:\ =Szerkeszt\u0151 nyelve\: !Enter\ additional\ URLs,\ one\ for\ each\ row= #: Editor.java:1062 -!Environment= +Environment=K\u00f6rnyezet #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 @@ -615,7 +616,7 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00e9s sor\u00e1n. #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= +Error\ while\ burning\ bootloader.=Hiba a bootloader \u00e9get\u00e9se k\u00f6zben. #: ../../../processing/app/Editor.java:2555 !Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= @@ -628,7 +629,11 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 !Error\ while\ loading\ code\ {0}= #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=Hiba a nyomtat\u00e1s k\u00f6zben. + +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -646,13 +651,13 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 !Error\ while\ verifying/uploading= #: Preferences.java:93 -!Estonian= +Estonian=\u00c9szt #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u00c9szt (\u00c9sztorsz\u00e1g) #: Editor.java:516 -!Examples= +Examples=P\u00e9ld\u00e1k #: ../../../../../app/src/processing/app/Base.java:1244 !Examples\ from\ Custom\ Libraries= @@ -671,10 +676,10 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 !Failed\ to\ open\ sketch\:\ "{0}"= #: Editor.java:491 -!File= +File=F\u00e1jl #: Preferences.java:94 -!Filipino= +Filipino=Filipp\u00edn\u00f3 #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 !Filter\ your\ search...= @@ -698,7 +703,7 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 !Find\:= #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Finn #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -712,25 +717,25 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 !Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 -!French= +French=Francia #: Editor.java:1097 -!Frequently\ Asked\ Questions= +Frequently\ Asked\ Questions=Gyakran Ism\u00e9telt K\u00e9rd\u00e9sek #: Preferences.java:96 -!Galician= +Galician=Gal\u00edciai #: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= +Galician\ (Spain)=Gal\u00edciai (Spanyolorsz\u00e1g) #: ../../../../../app/src/processing/app/Editor.java:1288 !Galileo\ Help= #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=Gr\u00faz #: Preferences.java:97 -!German= +German=N\u00e9met #: Editor.java:1054 !Getting\ Started= @@ -750,28 +755,28 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 !Go\ to\ line...= #: Preferences.java:98 -!Greek= +Greek=G\u00f6r\u00f6g #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=H\u00e9ber #: Editor.java:1015 -!Help= +Help=S\u00fag\u00f3 #: Preferences.java:99 -!Hindi= +Hindi=Hindi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 !Host\ name\:= #: Sketch.java:295 -How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=A Sketch csak ment\u00e9s ut\u00e1n\\nnevezhet\u0151 \u00e1t\! +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Mi lenne, ha menten\u00e9 a v\u00e1zlatot, \nmiel\u0151tt megpr\u00f3b\u00e1lja \u00e1tnevezni? #: Sketch.java:882 !How\ very\ Borges\ of\ you= #: Preferences.java:100 -!Hungarian= +Hungarian=Magyar #: FindReplace.java:96 !Ignore\ Case= @@ -780,7 +785,7 @@ How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=A Sket Ignoring\ bad\ library\ name=Hib\u00e1s k\u00f6nyvt\u00e1rn\u00e9v kihagy\u00e1sa #: Base.java:1436 -Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa +Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s nev\u0171 v\u00e1zlat kihagy\u00e1sa #: ../../../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?= @@ -796,7 +801,7 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa !Increase\ Indent= #: Preferences.java:101 -!Indonesian= +Indonesian=Indon\u00e9z #: ../../../../../app/src/processing/app/Base.java:295 !Initializing\ packages...= @@ -807,13 +812,13 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=Telep\u00edt\u00e9s #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=Telep\u00edt\u00e9s befejez\u0151d\u00f6tt\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=Telep\u00edtve #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 !Installing\ boards...= @@ -828,7 +833,7 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=Telep\u00edt\u00e9s... #: ../../../processing/app/Base.java:1204 #, java-format @@ -839,7 +844,7 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa !Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= #: Preferences.java:102 -!Italian= +Italian=Olasz #: Preferences.java:103 Japanese=Jap\u00e1n @@ -851,7 +856,7 @@ Korean=Koreai Latvian=Lett #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=K\u00f6nyvt\u00e1r kezel\u0151 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= @@ -880,13 +885,13 @@ Lithuaninan=Litv\u00e1n !Low\ memory\ available,\ stability\ problems\ may\ occur.= #: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= +Manage\ Libraries...=K\u00f6nyvt\u00e1rak kezel\u00e9se... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 !Manual\ proxy\ configuration= #: Preferences.java:107 -!Marathi= +Marathi=Marathi #: Base.java:2112 Message=\u00dczenet @@ -899,13 +904,13 @@ Message=\u00dczenet !Mode\ not\ supported= #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=Tov\u00e1bbiak #: 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= +Moving=\u00c1thelyez\u00e9s #: ../../../processing/app/BaseNoGui.java:484 !Multiple\ files\ not\ supported= @@ -921,19 +926,19 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Tov\u00e1bbi sz\u00e Name\ for\ new\ file\:=\u00daj file neve\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nep\u00e1li #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=H\u00e1l\u00f3zat #: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= +Network\ ports=H\u00e1l\u00f3zati portok #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 !Network\ upload\ using\ programmer\ not\ supported= #: EditorToolbar.java:41 Editor.java:493 -!New= +New=\u00daj #: EditorHeader.java:292 New\ Tab=\u00daj f\u00fcl @@ -945,7 +950,7 @@ New\ Tab=\u00daj f\u00fcl Next\ Tab=K\u00f6vetkez\u0151 f\u00fcl #: Preferences.java:78 UpdateCheck.java:108 -!No= +No=Nem #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= @@ -972,7 +977,7 @@ Next\ Tab=K\u00f6vetkez\u0151 f\u00fcl !No\ parameters= #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=Nincs proxy #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 leveg\u0151zn\u00f6d egyet. @@ -983,10 +988,10 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= +No\ sketch=Nincs v\u00e1zlat #: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= +No\ sketchbook=Nincs v\u00e1zlatf\u00fczet #: ../../../processing/app/Sketch.java:204 !No\ valid\ code\ files\ found= @@ -999,14 +1004,14 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 !None= #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=Norv\u00e9g #: ../../../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= +OK=OK #: Sketch.java:992 Editor.java:376 !One\ file\ added\ to\ the\ sketch.= @@ -1024,7 +1029,7 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 !Open\ URL= #: Base.java:636 -Open\ an\ Arduino\ sketch...=Arduino Sketch megnyit\u00e1sa... +Open\ an\ Arduino\ sketch...=Arduino v\u00e1zlat megnyit\u00e1sa... #: Base.java:903 Editor.java:501 Open...=Megnyit... @@ -1055,7 +1060,7 @@ Persian=Perzsa !Please\ confirm\ library\ deletion= #: 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. +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=K\u00e9rem import\u00e1lja az SPI k\u00f6nyvt\u00e1rat a V\u00e1zlat > K\u00f6nyvt\u00e1r Import\u00e1l\u00e1sa men\u00fcb\u0151l. #: ../../../processing/app/debug/Compiler.java:529 !Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= @@ -1220,7 +1225,7 @@ Saving...=Ment\u00e9s... !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... +Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e1lasszon (vagy hozzon l\u00e9tre) mapp\u00e1t a v\u00e1zlatoknak... #: Editor.java:1198 Editor.java:2739 !Select\ All= @@ -1232,7 +1237,7 @@ Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e1lassz (vagy hozz l\u0 !Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= #: Preferences.java:330 -Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj SketchBook mapp\u00e1t +Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj v\u00e1zlatf\u00fczet helyet #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 @@ -1293,13 +1298,13 @@ Show\ verbose\ output\ during\:\ =Log mutat\u00e1sa\: !Sketch\ Disappeared= #: Base.java:1411 -Sketch\ Does\ Not\ Exist=Sketch nem nyithat\u00f3 meg +Sketch\ Does\ Not\ Exist=A v\u00e1zlat nem l\u00e9tezik #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -Sketch\ is\ Read-Only=A Sketch \u00edr\u00e1sv\u00e9dett +Sketch\ is\ Read-Only=A v\u00e1zlat csak olvashat\u00f3 #: Sketch.java:294 -Sketch\ is\ Untitled=A Sketch most N\u00e9vtelen (Untitled) +Sketch\ is\ Untitled=A v\u00e1zlat N\u00e9vtelen #: Sketch.java:720 !Sketch\ is\ read-only= @@ -1315,10 +1320,10 @@ Sketch\ is\ Untitled=A Sketch most N\u00e9vtelen (Untitled) !Sketchbook= #: Base.java:258 -Sketchbook\ folder\ disappeared=A SketchBook mappa el\u00e9rhetetlen +Sketchbook\ folder\ disappeared=A v\u00e1zlatf\u00fczet mappa elt\u0171nt #: Preferences.java:315 -Sketchbook\ location\:=SketchBook helye\: +Sketchbook\ location\:=V\u00e1zlatf\u00fczet helye\: #: ../../../processing/app/BaseNoGui.java:428 !Sketchbook\ path\ not\ defined= @@ -1330,7 +1335,7 @@ Sketchbook\ location\:=SketchBook helye\: !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.=N\u00e9h\u00e1ny file csak olvashat\u00f3, \u00edgy m\u00e1s helyre ment\u00e9s ut\u00e1n\\n\u00fajra meg kell pr\u00f3b\u00e1lni. +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=N\u00e9h\u00e1ny f\u00e1jl "csak olvashat\u00f3"-nak van jel\u00f6lve, \u00edgy\n\u00fajra kell mentenie a v\u00e1zlatot m\u00e1sik helyre \u00e9s\n\u00fajrapr\u00f3b\u00e1lni. #: Sketch.java:721 !Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= @@ -1397,11 +1402,11 @@ The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ The\ name\ cannot\ start\ with\ a\ period.=A n\u00e9v nem kezd\u0151dhet peri\u00f3dus-jellel. #: Base.java:1412 -The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=A kiv\u00e1lasztott Sketch nem \u00e9rhet\u0151 el.\\nA SketchBook men\u00fc friss\u00edt\u00e9s\u00e9hez az Arduino\\n\u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges. +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=A kiv\u00e1lasztott v\u00e1zlat m\u00e1r nem l\u00e9tezik.\nLehet, hogy \u00fajra kell ind\u00edtania az Arduino-t,\nhogy friss\u00edtse a v\u00e1zlatf\u00fczet men\u00fct. #: 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}=A "{0}" Sketch nem haszn\u00e1lhat\u00f3.\\nA Sketch neve csak angol abc bet\u0171it, sz\u00e1mokat\\ntartalmazhat, sz\u00f3k\u00f6z n\u00e9lk\u00fcl \u00e9s az els\u0151 bet\u0171je nem lehet sz\u00e1m.\\nA hib\u00e1s Sketch-et t\u00e1vol\u00edtsd el\\na(z) {1} mapp\u00e1b\u00f3l\! +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}=A "{0}" v\u00e1zlat nem haszn\u00e1lhat\u00f3.\nA v\u00e1zlatok neve csak angol abc bet\u0171it \u00e9s sz\u00e1mokat tartalmazhat\n(csak ASCII sz\u00f3k\u00f6z n\u00e9lk\u00fcl \u00e9s nem kezd\u0151dhet sz\u00e1mmal). Ahhoz,\nhogy megszabaduljon ett\u0151l az \u00fczenett\u0151t, t\u00e1vol\u00edtsa el a v\u00e1zlatot innen\:\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.= @@ -1410,7 +1415,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic !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. +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 v\u00e1zlatf\u00fczet mappa m\u00e1r nem l\u00e9tezik.\nAz Arduino \u00e1tv\u00e1lt az alap\u00e9rtelmezett v\u00e1zlatf\u00fczet\nhelyre, \u00e9s k\u00e9sz\u00edt egy \u00faj v\u00e1zlatf\u00fczet mapp\u00e1t, ha\nsz\u00fcks\u00e9ges. Az Arduino ekkor befejezi mag\u00e1r\u00f3l a\nharmadik szem\u00e9lyk\u00e9nt val\u00f3 eml\u00edt\u00e9st. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= @@ -1502,7 +1507,7 @@ Time\ for\ a\ Break=Itt az id\u0151 sz\u00fcnetet tartani !Update= #: Preferences.java:428 -Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Sketch friss\u00edt\u00e9se az \u00faj kiterjeszt\u00e9ssel (.pde -> .ino) +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=V\u00e1zlat f\u00e1jlok friss\u00edt\u00e9s \u00faj kiterjeszt\u00e9sre ment\u00e9sn\u00e9l (.pde -> .ino) #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 !Updating\ list\ of\ installed\ libraries= @@ -1656,20 +1661,20 @@ Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= #: Base.java:1888 -You\ forgot\ your\ sketchbook=Felejtsd el a SketchBook-odat +You\ forgot\ your\ sketchbook=Felejtse el a v\u00e1zlatf\u00fczet\u00e9t #: ../../../processing/app/AbstractMonitor.java:92 !You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= #: Base.java:536 -You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Meghaladtad az egy napra jut\u00f3 \u00faj Sketch-ek l\u00e9trehoz\u00e1si\\n\nsz\u00e1mot. Nem k\u00e9ne s\u00e9t\u00e1lni egyet - pihen\u00e9s\u00fcl? +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Meghaladta a napi korl\u00e1tot az \u00faj v\u00e1zlatok automatikus\nn\u00e9vad\u00e1s\u00e1hoz. Mi lenne, ha ink\u00e1bb s\u00e9t\u00e1lna egyet? #: ../../../processing/app/BaseNoGui.java:768 !Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= @@ -1776,7 +1781,7 @@ upload=felt\u00f6lt\u00e9skor #: Editor.java:380 #, java-format -!{0}\ files\ added\ to\ the\ sketch.= +{0}\ files\ added\ to\ the\ sketch.={0} f\u00e1jl hozz\u00e1adva a v\u00e1zlathoz. #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_hy.po b/arduino-core/src/processing/app/i18n/Resources_hy.po index a207fca54..91dff18ea 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hy.po +++ b/arduino-core/src/processing/app/i18n/Resources_hy.po @@ -8,13 +8,15 @@ # Translators: # Translators: # Translators: +# Translators: # zepyur , 2012 +# Levon , 2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Armenian (http://www.transifex.com/mbanzi/arduino-ide-15/language/hy/)\n" "MIME-Version: 1.0\n" @@ -25,69 +27,72 @@ msgstr "" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr "" +msgstr "(պահանջվում է Արդուինոի վերագործարկում)" #: ../../../processing/app/debug/Compiler.java:529 #, java-format msgid " Not used: {0}" -msgstr "" +msgstr "Չօգտագործված: {0}" #: ../../../processing/app/debug/Compiler.java:525 #, java-format msgid " Used: {0}" +msgstr "Օգտագործված: {0}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " "information" -msgstr "" +msgstr "'arch' պանակը այլեւս չի աջակվում! Լրացուցիչ ինֆորմացիայի համար այցելեք http://goo.gl/gfFJzU" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" -msgstr "" +msgstr "(խմբագրել միայն երբ Արդուինոն միացված է)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 msgid "(legacy)" -msgstr "" +msgstr "(ժառանգություն)" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" -msgstr "" +msgstr "--curdir -ը այլեւս չի աջակցվում" #: ../../../processing/app/Base.java:468 msgid "" "--verbose, --verbose-upload and --verbose-build can only be used together " "with --verify or --upload" -msgstr "" +msgstr "--verbose, --verbose-upload եւ --verbose-build կարող կիրառվել միասին միայն --verify կամ --upload -ի հետ" #: Sketch.java:746 msgid ".pde -> .ino" -msgstr "" +msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Թարմացում է հասանելի ձեր որոշ {0}հարթակների համար{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Թարմացում է հասանելի ձեր որոշ {0}հարթակների{1} եւ {2}գրադարանների համար{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Թարմացում է հասանելի ձեր որոշ {0}գրադարանների համար{1}" #: Editor.java:2053 msgid "" @@ -95,37 +100,37 @@ 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 "Արդուինոի նոր տարբերակը արդեն հասանելի է,\nցանկանում եք այցելել Արդուինոի ներբեռման էջը?" #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "A newer {0} package is available" -msgstr "" +msgstr "Նոր {0} փաթեթը հասանելի է" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" +msgstr "Ձեր գծագրի ենթապանակը արդի գրադարան չէ" #: Editor.java:1116 msgid "About Arduino" @@ -133,7 +138,7 @@ msgstr "Արդուինոյի մասին" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr "Ավելացնել .ZIP գրադարան..." #: Editor.java:650 msgid "Add File..." @@ -141,56 +146,56 @@ msgstr "Ավելացնել նիշք․․․" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" -msgstr "" +msgstr "Լրացուցիչ հարթակների կառավարիչների URL-ներ" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 msgid "Additional Boards Manager URLs: " -msgstr "" +msgstr "Լրացուցիչ հարթակների կառավարիչների URL-ներ:" #: ../../../../../app/src/processing/app/Preferences.java:161 msgid "Afrikaans" -msgstr "" +msgstr "Աֆրիկաանս" #: ../../../processing/app/Preferences.java:96 msgid "Albanian" -msgstr "" +msgstr "Ալբաներեն" #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 msgid "All" -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" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 msgid "An error occurred while updating libraries index!" -msgstr "" +msgstr "Գրադարանների ինդեկսի թարմացման ժամանակ սխալ տեղի ունեցավ!" #: ../../../processing/app/BaseNoGui.java:528 msgid "An error occurred while uploading the sketch" -msgstr "" +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 "" +msgstr "Գծագրի ստուգման ընթացքում սխալ տեղի ունեցավ" #: ../../../processing/app/BaseNoGui.java:521 msgid "An error occurred while verifying/uploading the sketch" -msgstr "" +msgstr "Գծագրի ստուգման/վերբեռնման ընթացքում սխալ տեղի ունեցավ" #: 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" @@ -198,181 +203,181 @@ 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 "Արդուինո ARM (32-bit) հարթակները" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" -msgstr "" +msgstr "Արդուինո AVR հարթակներ" #: Editor.java:2137 msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "Արդուինով կարող է բացել միայն սեփական գծանկարները\nեւ այլ ֆայլեր .ino կամ .pde վերջավորությամբ" #: Base.java:1682 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your settings." -msgstr "" +msgstr "Արդուինոն չի կարող աշխատել, քանի որ հնարավոր չէր\nստելծել պանակ ձեր կարգավորումները պահելու համար:" #: Base.java:1889 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "" +msgstr "Արդուինոն չի կարող աշխատել, քանի որ հնարավոր չէր\nստելծել պանակ ձեր գծագրերի գիրքը պահելու համար:" #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Արդուինո:" #: 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/Base.java:356 msgid "Argument required for --board" -msgstr "" +msgstr "--board -ի համար արգումենտ է պահանջվում" #: ../../../processing/app/Base.java:363 msgid "Argument required for --port" -msgstr "" +msgstr "--port -ի համար արգումենտ է պահանջվում" #: ../../../processing/app/Base.java:377 msgid "Argument required for --pref" -msgstr "" +msgstr "--pref -ի համար արգումենտ է պահանջվում" #: ../../../processing/app/Base.java:384 msgid "Argument required for --preferences-file" -msgstr "" +msgstr "--preferences-file -ի համար արգումենտ է պահանջվում" #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format msgid "Argument required for {0}" -msgstr "" +msgstr "{0}-ի համար արգումենտ է պահանջվում" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Հայերեն" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Աստուրերեն" #: ../../../processing/app/debug/Compiler.java:145 msgid "Authorization required" -msgstr "" +msgstr "Լիազորություն է պահանջվում" #: tools/AutoFormat.java:91 msgid "Auto Format" -msgstr "" +msgstr "Ավտոֆորմատավորում" #: tools/AutoFormat.java:944 msgid "Auto Format finished." -msgstr "" +msgstr "Ավտոֆորմատավորումը ավարտված է:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Պրոքսի պարամետրերի ավտոմատ ճանաչում" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "Ավտոմատ պրոքսի կոնֆիգուրացիայի URL:" #: 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:149 msgid "Basque" -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 "Հարթակ" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format msgid "Board {0} (platform {1}, package {2}) is unknown" -msgstr "" +msgstr "Հարթակ {0} (պլատֆորմ {1}, փաթեթ {2}) -ը ճանաչված չէ" #: ../../../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 "Հարթակ:" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" -msgstr "" +msgstr "Հարթակների կառավարիչ" #: ../../../../../app/src/processing/app/Base.java:1320 msgid "Boards Manager..." -msgstr "" +msgstr "Հարթակների կառավարիչ..." #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 msgid "Boards included in this package:" -msgstr "" +msgstr "Հարթակները ներառված են այս փաթեթում:" #: ../../../processing/app/debug/Compiler.java:1273 #, java-format msgid "Bootloader file specified but missing: {0}" -msgstr "" +msgstr "Bootloader ֆայլը նշված է սակայն գտնված չէ: {0}" #: ../../../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" @@ -380,45 +385,45 @@ msgstr "Զննել" #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" -msgstr "" +msgstr "Կառուցման տարբերակները փոփոխվել են, վերակառուցել ամբողջը" #: ../../../../../app/src/processing/app/Base.java:1210 msgid "Built-in Examples" -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-ը վառվում է I/O հարթակին (սա կարող է տեւել միքանի րոպե)..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." -msgstr "" +msgstr "CRC -ին չի համապատասխանում: Ֆայլը վնասված է:" #: ../../../processing/app/Base.java:379 #, java-format msgid "Can only pass one of: {0}" -msgstr "" +msgstr "Հնարավոր է փոխանցել {0}-ից միայն մեկը" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "Can't find the sketch in the specified path" -msgstr "" +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 @@ -427,15 +432,15 @@ msgstr "Չեղարկել" #: Sketch.java:455 msgid "Cannot Rename" -msgstr "" +msgstr "Հնարավոր չէ վերանվանել" #: ../../../processing/app/Base.java:465 msgid "Cannot specify any sketch files" -msgstr "" +msgstr "Հնարավոր չէ նշել որեւէ գծագրի ֆայլ" #: SerialMonitor.java:112 msgid "Carriage return" -msgstr "" +msgstr "Նոր տող" #: Preferences.java:87 msgid "Catalan" @@ -443,23 +448,23 @@ 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:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Չիներեն (Թայվան)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" +msgstr "Chinese (Taiwan) (Big5)" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" -msgstr "" +msgstr "Սեղմեք ոչ օֆիցիալ հարթակների սպասարկման URL-ների ցուցակի համար" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -467,15 +472,15 @@ msgstr "Փակել" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" -msgstr "" +msgstr "Մեկնաբանել/Մեկնաբանությունը չեղարկել" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 msgid "Compiler warnings: " -msgstr "" +msgstr "Կոմպիլիացիայի նախազգուշացումներ:" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -msgstr "" +msgstr "Գծանկարը կոմպիլիացվում է..." #: Editor.java:1157 Editor.java:2707 msgid "Copy" @@ -483,42 +488,42 @@ 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 @@ -528,75 +533,75 @@ 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} -ում. Դա 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 msgid "" "Could not open the URL\n" "{0}" -msgstr "" +msgstr "Հնարավոր չէր բացել հետեւյալ URL-ը\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 "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Հնարավոր չէր կարդալ գունային թեմայի կարգավորումները:\nԴուք պետք է վերատեղադրեք Արդուինոն:" #: Preferences.java:219 msgid "" "Could not read default settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Հնարավոր չէր կարդալ լռելյայն կարգավորումները:\nԴուք պետք է վերատեղադրեք Արդուինոն:" #: 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 @@ -605,71 +610,71 @@ 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 "Կտրել" #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" -msgstr "" +msgstr "Չեխերեն (Չեխիա)" #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" -msgstr "" +msgstr "Դանիերեն (Դանիա)" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" -msgstr "" +msgstr "Փոքրացնել տարածությունը" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" -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 "Ցուցադրել տողերի համարները" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format msgid "" "Do you want to remove {0}?\n" "If you do so you won't be able to use {0} any more." -msgstr "" +msgstr "Ցանկանում եք ջնջել {0}-ը?\nԵթե ցանկանում եք, ապա {0}-ը օգտագործել հնարավոր այլևս չի լինի:" #: Editor.java:2064 msgid "Don't Save" @@ -677,59 +682,59 @@ msgstr "Չհիշել" #: Editor.java:2275 Editor.java:2311 msgid "Done Saving." -msgstr "" +msgstr "Պահումն ավարտված է" #: Editor.java:2510 msgid "Done burning bootloader." -msgstr "" +msgstr "bootloader վառումն ավարտված է:" #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 msgid "Done compiling" -msgstr "" +msgstr "Կոմպիլիացիան ավարտված է" #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." -msgstr "" +msgstr "Կոմպիլիացիան ավարտված է:" #: Editor.java:2564 msgid "Done printing." -msgstr "" +msgstr "Տպելն ավարտված է" #: ../../../processing/app/BaseNoGui.java:514 msgid "Done uploading" -msgstr "" +msgstr "Վերբեռնումն ավարտված է" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." -msgstr "" +msgstr "Վերբեռնումն ավարտված է:" #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format msgid "Downloaded {0}kb of {1}kb." -msgstr "" +msgstr "Ներբեռնված է {0}kb {1}kb-ից:" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 msgid "Downloading boards definitions." -msgstr "" +msgstr "Ներբեռնվում է հարթակի սահմանումները:" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 msgid "Downloading libraries index..." -msgstr "" +msgstr "Ներբեռնվում է գրադարանների ինդեկսը..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format msgid "Downloading library: {0}" -msgstr "" +msgstr "Ներբեռնվում է {0} գրադարանը" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 msgid "Downloading platforms index..." -msgstr "" +msgstr "Ներբեռնվում է պլատֆորմների ինդեկսը..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format msgid "Downloading tools ({0}/{1})." -msgstr "" +msgstr "Ներբեռնվում են գործիքները ({0}/{1})." #: Preferences.java:91 msgid "Dutch" @@ -737,11 +742,11 @@ msgstr "Հոլանդերեն" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Հոլանդերեն (Հոլանդիա)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" -msgstr "" +msgstr "Եդիսոնի օգնություն" #: Editor.java:1130 msgid "Edit" @@ -749,15 +754,15 @@ msgstr "Խմբագրել" #: Preferences.java:370 msgid "Editor font size: " -msgstr "" +msgstr "Խմբագրիչի տառատեսակի չափը:" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "Խմբագրիչի լեզուն:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" -msgstr "" +msgstr "Ակտիվացնել կոդի փաթաթումը" #: Preferences.java:92 msgid "English" @@ -765,16 +770,16 @@ msgstr "Անգլերեն" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "Անգլերեն (Միացյալ Թագավորություն)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 msgid "Enter a comma separated list of urls" -msgstr "" +msgstr "Մուտքագրեք ստորակետով բաժանված url-ների ցանկը" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 msgid "Enter additional URLs, one for each row" -msgstr "" +msgstr "Մուտքագրել լրացուցիչ URL-ներ, մեկական ամեն տողում" #: Editor.java:1062 msgid "Environment" @@ -788,110 +793,115 @@ msgstr "Սխալ" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "" +msgstr "Ֆայլի ավելացման սխալ" #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "" +msgstr "Կոմպիլիացիայի սխալ:" #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format msgid "Error downloading {0}" -msgstr "" +msgstr "Ներբեռման սխալ {0}" #: Base.java:1674 msgid "Error getting the Arduino data folder." -msgstr "" +msgstr "Սխալ Արդունոի տվյալներ պանակը բեռնելիս:" #: Serial.java:593 #, java-format msgid "Error inside Serial.{0}()" -msgstr "" +msgstr "Սխալ սերիալում.{0}()" #: ../../../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}'':" #: ../../../processing/app/Serial.java:119 #, java-format msgid "" "Error opening serial port ''{0}''. Try consulting the documentation at " "http://playground.arduino.cc/Linux/All#Permission" -msgstr "" +msgstr "Սխալ ''{0}' սերիալ պորտը բացելիս: Նայիր փաստաթղթերը այտեղ http://playground.arduino.cc/Linux/All#Permission" #: 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 "Սխալ կարգավորումների ֆայլը կարդալիս: Խնդրում ենք ջնջել(կամ մաքրել) {0}-ը և վերագործարկեք Արդուինոն:" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 msgid "Error running post install script" -msgstr "" +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." -msgstr "" +msgstr "Սխալ bootloader-ի վառման ընթացքում:" #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Սխալ bootloader-ը վառելիս: պակասող '{0}' կոնֆիգուրացիոն պարամետր" #: ../../../../../app/src/processing/app/Editor.java:1940 msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" +msgstr "Սխալ կոմպիլացիայի ընթացքում: պակասող '{0}' կոնֆիգուրացիոն պարամետր" #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" -msgstr "" +msgstr "Սխալ {0}-ի բեռնման ընթացքում" #: Editor.java:2567 msgid "Error while printing." +msgstr "Սխալ տպելու ընթացքում:" + +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" msgstr "" #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" -msgstr "" +msgstr "Սխալ վերբեռնման ընթացքում" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Սխալ վերբեռնման ընթացքում: պակասող '{0}' կոնֆիգուրացիայի պարամետր" #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 msgid "Error while verifying" -msgstr "" +msgstr "Սխալ ստուգման ընթացքում" #: ../../../processing/app/BaseNoGui.java:521 msgid "Error while verifying/uploading" -msgstr "" +msgstr "Սխալ ստուգման/վերբեռնման ընթացքում" #: Preferences.java:93 msgid "Estonian" @@ -899,7 +909,7 @@ msgstr "Էստոներեն" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Էստոներեն (Էստոնիա)" #: Editor.java:516 msgid "Examples" @@ -907,24 +917,24 @@ msgstr "Օրինակներ" #: ../../../../../app/src/processing/app/Base.java:1244 msgid "Examples from Custom Libraries" -msgstr "" +msgstr "Օրինակներ հարմարեցված գրադարաններից" #: ../../../../../app/src/processing/app/Base.java:1222 msgid "Examples from Libraries" -msgstr "" +msgstr "Օրինակներ գրադարանից" #: ../../../../../app/src/processing/app/Editor.java:753 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Արտահանումն չեղարկվեց, փոփոխությունները պետք է առաջին հերթին պահվեն:" #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" -msgstr "" +msgstr "Արտահանել կոմպիլացված բինարը" #: ../../../processing/app/Base.java:416 #, java-format msgid "Failed to open sketch: \"{0}\"" -msgstr "" +msgstr "Ձախողվեց բացել գծագիրը: \"{0}\"" #: Editor.java:491 msgid "File" @@ -932,11 +942,11 @@ msgstr "Նիշք" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "Ֆիլիպիներեն" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." -msgstr "" +msgstr "Ֆիլտրել ձեր որոնումը" #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -952,7 +962,7 @@ msgstr "Գտնել նախկինը" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" -msgstr "" +msgstr "Փնտրել հղումներում" #: Editor.java:1234 msgid "Find..." @@ -960,27 +970,27 @@ 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 "Ուղղել կոդավորումը եւ վերաբեռնել" #: ../../../processing/app/BaseNoGui.java:318 msgid "" "For information on installing libraries, see: " "http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Գրադարանները տեղադրելու մասին ինֆորմացիայի համար տես: http://www.arduino.cc/en/Guide/Libraries\n" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" +msgstr "Ստիպողական վերագործարկում օգտագործելով 1200bps open/close {0}-ի վրա" #: Preferences.java:95 msgid "French" @@ -996,15 +1006,15 @@ msgstr "Գալիսերեն" #: ../../../../../app/src/processing/app/Preferences.java:176 msgid "Galician (Spain)" -msgstr "" +msgstr "Գալիսերեն (Իսպանիա)" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" -msgstr "" +msgstr "Գալիլեոի օգնություն" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "Վրացերեն" #: Preferences.java:97 msgid "German" @@ -1012,27 +1022,27 @@ 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} բայթ ({2}%%), թողնելով {3} բայց լոկալ փոփոխականներին: Առավելագույնը {1} բայթ է: " #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Գլոբալ փոփոխականները օգտագործում են դինամիկ հիշողության {0} բայթ: " #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Անցնել դեպի տող" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Անցնել դեպի տող..." #: Preferences.java:98 msgid "Greek" @@ -1040,7 +1050,7 @@ msgstr "Հունարեն" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "Եփրաերեն" #: Editor.java:1015 msgid "Help" @@ -1048,21 +1058,21 @@ msgstr "Օգնություն" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "Հինդի" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -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 "How very Borges of you" #: Preferences.java:100 msgid "Hungarian" @@ -1070,15 +1080,15 @@ 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 "Անտեսվում է գծագրի վատ անվանումը" #: ../../../processing/app/Sketch.java:736 msgid "" @@ -1089,20 +1099,20 @@ 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Պահել գծագիրը եւ թարմացնել ընդլայնումը?" #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" -msgstr "" +msgstr "Ներառել գրադարան" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "IDE-ի սխալ տեղադրման պանակ" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" -msgstr "" +msgstr "Մեծացնել տարածությունը" #: Preferences.java:101 msgid "Indonesian" @@ -1110,7 +1120,7 @@ msgstr "Ինդոնեզերեն" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." -msgstr "" +msgstr "Փաթեթների ինիցիալիզացիա" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -1119,44 +1129,44 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Տեղադրել" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Տեղադրումը ավարտվեց!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Տեղադրված" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." -msgstr "" +msgstr "Հարտակները տեղադրվում են..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "Տեղադրվում է գրադարանը: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "Տեղադրվում են գործիքները ({0}/{1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Տեղադրվում է..." #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" -msgstr "" +msgstr "Սխալ գրադարան է հայտնաբերվել {0}-ում: {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format msgid "Invalid quoting: no closing [{0}] char found." -msgstr "" +msgstr "Անվավեր մեջբերում: Փակման [{0}] նշանը չի հայտնաբերվել:" #: Preferences.java:102 msgid "Italian" @@ -1176,24 +1186,24 @@ msgstr "Լատվերեն" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Գրադարանի կառավարիչ" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" +msgstr "Գրադարանը ավելացվեց ձեր գրադարանին. Ստուգեք \"Ներառել գրադարան\" մենյուն" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 msgid "Library can't use both 'src' and 'utility' folders." -msgstr "" +msgstr "Գրադարանը չի կարող օգտագործել 'src' և 'utility' պանակները:" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" -msgstr "" +msgstr "Գրադարանը արդեն տեղադրված է: {0} տարբերակ {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Տող համար:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1201,28 +1211,28 @@ msgstr "Լիտվաներեն" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." -msgstr "" +msgstr "Կոնֆիգուրացիայի բեռնում" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format msgid "Looking for recipes like {0}*{1}" -msgstr "" +msgstr "Փնտրվում են {0}*{1}-ին նման բաղադրամասեր" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." -msgstr "" +msgstr "Քիչ հիշողություն է հասանելի, ստաբիլության խնդիրներ կարող են տեղի ունենալ:" #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." -msgstr "" +msgstr "Կառավարել գրադարանները..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Անհատական պրոքսիի կարգավորում" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "Մարաթերեն" #: Base.java:2112 msgid "Message" @@ -1231,19 +1241,19 @@ msgstr "Հաղորդագրություն" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format msgid "Missing '{0}' from library in {1}" -msgstr "" +msgstr "Պակասող '{0}' գրադարանից {1}-ում" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" -msgstr "" +msgstr "Ռեժիմը չի ապահովվում" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "Ավելին" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" -msgstr "" +msgstr "Ավել կարգավորումներ կարող են խմբագրվել անմիջապես ֆայլում" #: Editor.java:2156 msgid "Moving" @@ -1251,36 +1261,36 @@ msgstr "Տեղափոխել" #: ../../../processing/app/BaseNoGui.java:484 msgid "Multiple files not supported" -msgstr "" +msgstr "Բազմակի ֆայլերը չեն աջակցվում" #: ../../../processing/app/debug/Compiler.java:520 #, java-format msgid "Multiple libraries were found for \"{0}\"" -msgstr "" +msgstr "Բազմակի գրադարաններ են հայտնաբերվել \"{0}\"-ի համար" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" -msgstr "" +msgstr "Պետք է նշել միայն մեկ գծագրի ֆայլ" #: Sketch.java:282 msgid "Name for new file:" -msgstr "" +msgstr "Նոր անվանում ֆայլի համար:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Նեպալերեն" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Ցանց" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" -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" @@ -1288,15 +1298,15 @@ msgstr "Նոր" #: EditorHeader.java:292 msgid "New Tab" -msgstr "" +msgstr "Նոր տաբ" #: SerialMonitor.java:112 msgid "Newline" -msgstr "" +msgstr "նոր տող" #: EditorHeader.java:340 msgid "Next Tab" -msgstr "" +msgstr "Հաջորդ տաբ" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" @@ -1304,80 +1314,80 @@ msgstr "Ոչ" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" -msgstr "" +msgstr "Լիազորման տվյալներ չեն գտնվել" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." -msgstr "" +msgstr "Ավտոմատ ֆորմատավորման համառ փոփոխություններ հարկավոր չեն:" #: ../../../processing/app/BaseNoGui.java:665 msgid "No command line parameters found" -msgstr "" +msgstr "Հրամանի տողի պարամետրերը չեն գտնվել" #: ../../../processing/app/debug/Compiler.java:200 msgid "No compiled sketch found" -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 "Չկա տողի վերջավորում" #: ../../../processing/app/BaseNoGui.java:665 msgid "No parameters" -msgstr "" +msgstr "Պարամետրերը չկան" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -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/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "No sketch" -msgstr "" +msgstr "գծագիր չկա" #: ../../../processing/app/BaseNoGui.java:428 msgid "No sketchbook" -msgstr "" +msgstr "Գծագրի գիրք չկա" #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" -msgstr "" +msgstr "Վավեր կոդի ֆայլեր չկան" #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "Վավեր սարքային սահմանումներ {0} պանակում չկան:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 msgid "None" -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 @@ -1386,11 +1396,11 @@ msgstr "Լավ" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." -msgstr "" +msgstr "Մեկ ֆայլ ավելացվեց գծագրին:" #: ../../../processing/app/BaseNoGui.java:455 msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" +msgstr "Միայն --verify, --upload կամ --get-pref են աջակցվում" #: EditorToolbar.java:41 msgid "Open" @@ -1398,15 +1408,15 @@ msgstr "Բացել" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" -msgstr "" +msgstr "Բացել վերջիններից" #: Editor.java:2688 msgid "Open URL" -msgstr "" +msgstr "Բացել URL" #: Base.java:636 msgid "Open an Arduino sketch..." -msgstr "" +msgstr "Բացել Արդուինոի գծագիր..." #: Base.java:903 Editor.java:501 msgid "Open..." @@ -1414,11 +1424,11 @@ 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" @@ -1430,33 +1440,33 @@ msgstr "Պարսկերեն" #: ../../../processing/app/Preferences.java:161 msgid "Persian (Iran)" -msgstr "" +msgstr "Պարսկերեն (Իրան)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format msgid "Platform {0} (package {1}) is unknown" -msgstr "" +msgstr "Անհայտ պլատֆորմ {0} ({1} փաթեթ)" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" -msgstr "" +msgstr "Խնդրում եմ հաստատեք հարթակի ջնջումը" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "Please confirm library deletion" -msgstr "" +msgstr "Խնդրում եմ հաստատեք գրադարանի ջնջումը" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" +msgstr "Խնդրում ենք ներմուծեք SPI գրադարանը Գծագիր > Ներմուծել գրադարան մենյուից:" #: ../../../processing/app/debug/Compiler.java:529 msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" +msgstr "Խնդրում ենք ներմուծեք Wire գրադարանը Գծագիր > Ներմուծել գրադարան մենյուից:" #: ../../../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 "Խնդրում ենք նշել ծրագրավորողը Գործիքներ->Ծրագրավորող մենյուից" #: Preferences.java:110 msgid "Polish" @@ -1464,31 +1474,31 @@ msgstr "Լեհերեն" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Պորտ" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -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 "Կարգավորումներ" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." -msgstr "" +msgstr "Հարթակները նախապատրաստվում են" #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" @@ -1496,57 +1506,57 @@ 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 "Խնդիր URL-ը բացելիս" #: 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 "Խնդիր տվյալների պանակը կարդալիս" #: 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 "" +msgstr "Խնդիր վերանվանման հետ" #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "Պրոցեսոր" #: Editor.java:704 msgid "Programmer" @@ -1555,7 +1565,7 @@ msgstr "Ծրագրավորող" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format msgid "Progress {0}" -msgstr "" +msgstr "Պրոգրես {0}" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1563,33 +1573,33 @@ msgstr "Լքել" #: ../../../../../app/src/processing/app/Base.java:1233 msgid "RETIRED" -msgstr "" +msgstr "RETIRED" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" -msgstr "" +msgstr "Վերադարձնել" #: Editor.java:1078 msgid "Reference" -msgstr "" +msgstr "Հղում" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 msgid "Remove" -msgstr "" +msgstr "Ջնջել" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format msgid "Removing library: {0}" -msgstr "" +msgstr "Ջնջվում է գրադարանը: {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 msgid "Removing..." -msgstr "" +msgstr "Ջնջվում են..." #: EditorHeader.java:300 msgid "Rename" -msgstr "" +msgstr "Վերանվանել" #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 msgid "Replace" @@ -1606,29 +1616,29 @@ 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 "Ռումիներեն" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format msgid "Running recipe: {0}" -msgstr "" +msgstr "Աշխատող բաղադրատոմս: {0}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format msgid "Running: {0}" -msgstr "" +msgstr "Աշխատող: {0}" #: Preferences.java:114 msgid "Russian" -msgstr "" +msgstr "Ռուսերեն" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -1641,20 +1651,20 @@ msgstr "Հիշել որպես․․․" #: Editor.java:2317 msgid "Save Canceled." -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 "Պահել գծագրի պանակը որպես..." #: ../../../../../app/src/processing/app/Preferences.java:425 msgid "Save when verifying or uploading" -msgstr "" +msgstr "Պահպանել երբ ստուգվում է կամ վերբեռնվում" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." @@ -1662,11 +1672,11 @@ msgstr "Հիշում․․․" #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" -msgstr "" +msgstr "Փնտրել բոլոր Գծագրի Տաբերը" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." -msgstr "" +msgstr "Նշել (կամ ստեղծել նոր) պանակ գծագրերի համար..." #: Editor.java:1198 Editor.java:2739 msgid "Select All" @@ -1674,32 +1684,32 @@ 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 "Նշել նոր գծագրերի գրքի տեղ" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 msgid "Select version" -msgstr "" +msgstr "Նշել տարբերակը" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "Նշված հարթակը կախված է '{0}'-ի միջուկից (չի տեղադրված) " #: ../../../../../app/src/processing/app/Base.java:374 msgid "Selected board is not available" -msgstr "" +msgstr "Նշված հարթակը հասանելի չէ" #: ../../../../../app/src/processing/app/Base.java:423 msgid "Selected library is not available" -msgstr "" +msgstr "Նշված գրադարանը հասանելի չէ" #: SerialMonitor.java:93 msgid "Send" @@ -1707,153 +1717,153 @@ msgstr "Ուղարկել" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 msgid "Serial Monitor" -msgstr "" +msgstr "Սերիալ Մոնիտոր" #: ../../../../../app/src/processing/app/Editor.java:804 msgid "Serial Plotter" -msgstr "" +msgstr "Սերիալ Արտապատկերիչ" #: Serial.java:194 #, java-format 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Կրկին փորձել վերբեռնել այլ սերիալ պորտով?" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Serial ports" -msgstr "" +msgstr "Սերիալ պորտեր" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format msgid "Setting build path to {0}" -msgstr "" +msgstr "Կառուցման ճանապարհի տեղադրում {0}-ի" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Կարգավորումներ" #: 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} բայթ ({2}%%): Մաքսիմումը {1} բայթ է:" #: 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/BaseNoGui.java:428 msgid "Sketchbook path not defined" -msgstr "" +msgstr "Գծագրերի գրքի ճանապարհն սահմանված չէ" #: ../../../../../app/src/processing/app/Preferences.java:185 msgid "Slovak" -msgstr "" +msgstr "Սլովակերեն" #: ../../../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 "Իսպաներեն" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" -msgstr "" +msgstr "Նշված պանակը/zip ֆայլը վավեր գրադարան չի պարունակում" #: ../../../../../app/src/processing/app/Base.java:466 msgid "Starting..." -msgstr "" +msgstr "Միանում է..." #: Base.java:540 msgid "Sunshine" -msgstr "" +msgstr "Արեւի լույս" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Շվեդերեն" #: Preferences.java:84 msgid "System Default" @@ -1861,38 +1871,38 @@ msgstr "Համակարգի լռելյայն" #: ../../../../../app/src/processing/app/Preferences.java:188 msgid "Talossan" -msgstr "" +msgstr "Թալոսերեն" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "Թամիլ" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "" +msgstr "'BYTE' հիմանբառը այլևս չի աջակցվում:" #: ../../../processing/app/BaseNoGui.java:484 msgid "The --upload option supports only one file at a time" -msgstr "" +msgstr "--upload տարբերակը աջակցում է միայն մեկ ֆայլ " #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "" +msgstr "Client դասը վերանվանվեց EthernetClient-ի:" #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "" "The IDE includes an updated {0} package, but you're using an older one.\n" "Do you want to upgrade {0}?" -msgstr "" +msgstr " IDE-ն պարունակում է {0} փաթեթի թարմացում, սակայն դուք հին տարբերակն եք օգտագործում\nՑանկանում եք թարմացնել {0}-ը?" #: 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-ի:" #: Editor.java:2147 #, java-format @@ -1900,7 +1910,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 @@ -1908,25 +1918,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(Հնարավոր է արդեն ժամանակն է անցնել \"իրական\" ծրագրավորման միջավայրի)" #: 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Դուք հնարավոր է պետք է վերագործարկել \nԱրդուինոն գծագրերի գրքի մենյուն թարմացնելու համար" #: Base.java:1430 #, java-format @@ -1936,21 +1946,21 @@ 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սակայն կոդից բացի ամեն ինչ կկորի:" #: ../../../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 "Գծագրի անունը պետք է փոփոխվի: Գծագրի անունը կարող է բաղկացած լինել միայն ASCII տառատեսակներից եւ թվերից (չի կարող սկսվել թվով):\nԱյն պետք է նաեւ 64 սիմվոլից պակաս լինի:" #: Base.java:259 msgid "" @@ -1959,39 +1969,39 @@ 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 "Գծագրերի գրքի պանակը այլեւս գոյություն չունի:\nԱրդուինոն կանցնի լռելյան գծագրերի գրքի տեղանքին\nեւ կստեղծի նոր գծագրերի գրքի պանակ եթե \nանհրաժեշտություն կա: Արդուինոն կդադարի իր մասին\nերրորդ դեմքով խոսալուց:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 msgid "" "The specified sketchbook folder contains your copy of the IDE.\n" "Please choose a different folder for your sketchbook." -msgstr "" +msgstr "Նշված գծանկարների գրքի պանակը պարունակում է ձեր IDE-ի պատճենը:\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Ես ոչ մի բան չեմ անում:" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "" "This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" "Are you sure you want to delete it?" -msgstr "" +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" -msgstr "" +msgstr "Դադարի ժամանակն է" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format msgid "Tool {0} is not available for your operating system." -msgstr "" +msgstr "{0} գործիքը ձեր օպերացիոն համակարգի համար հասանելի չէ:" #: Editor.java:663 msgid "Tools" @@ -1999,63 +2009,63 @@ msgstr "Գործիքներ" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" -msgstr "" +msgstr "Վերնագիր" #: Editor.java:1070 msgid "Troubleshooting" -msgstr "" +msgstr "Խնդիրների լուծում" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "Թուրքերեն" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 msgid "Type" -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 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +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 "Հնարավոր չէ կապնվել: սխալ գաղտնաբառ?" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format msgid "Unable to find {0} in {1}" -msgstr "" +msgstr "Հնարավոր չէ գտնել {0}-ը {1}-ում" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Հնարավոր չէ բացել մոնիտորը" #: ../../../../../app/src/processing/app/Editor.java:2709 msgid "Unable to open serial plotter" -msgstr "" +msgstr "Հնարավոր չէ բացել սերիալ արտապատկերիչը" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" +msgstr "Arduino.cc-ը հասանելի չէ, հնարավոր ցանցային խնդիրների պատճառով:" #: Editor.java:1133 Editor.java:1355 msgid "Undo" @@ -2064,24 +2074,24 @@ msgstr "Հետ շրջել" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format msgid "Unhandled type {0} in context key {1}" -msgstr "" +msgstr "{0} չճանաճված տիպ {1} բանալու կոնտեքստում" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format msgid "Unknown sketch file extension: {0}" -msgstr "" +msgstr "Անհայտ գծագրի ֆայլի ընդլայնում: {0}" #: 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 "Չնշված պլատֆորմ, գործարկիչը հասանելի չէ:\nURL-ների կամ պանակներ բացումը ավելացնելու համար,\nավելացրեք \"launcher=/path/to/app\" տողը preferences.txt ֆայլում" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "Թարամացման ենթակա" #: UpdateCheck.java:111 msgid "Update" @@ -2089,11 +2099,11 @@ msgstr "Թարմացում" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" +msgstr "Պայման ժամական թարմացնել գծագրերի ֆայլերը նոր ընդլայնմամբ (.pde -> .ino)" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" -msgstr "" +msgstr "Տեղադրված գրադարաններ ցուցակը թարմացվում է" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -2101,19 +2111,19 @@ 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 "Վերբեռնվում է I/O հարթակ..." #: Sketch.java:1622 msgid "Uploading..." @@ -2121,31 +2131,31 @@ msgstr "Ներբեռնում․․․" #: Editor.java:1269 msgid "Use Selection For Find" -msgstr "" +msgstr "Օգտագործել Նշումը Փնտրելու համար" #: Preferences.java:409 msgid "Use external editor" -msgstr "" +msgstr "Օգտագործել արտաքին խմբագրիչ" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Օգտանուն" #: ../../../processing/app/debug/Compiler.java:410 #, java-format msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" +msgstr "Օգտագործելով {1} տարբերակի {0} գրադարանը հետեւյալ պանակում: {2} {3}" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Օգտագործելով {0} գրադարանը հետեւյալ պանակում: {1} {2}" #: ../../../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" @@ -2153,133 +2163,133 @@ msgstr "Ստուգել" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "Ստուգել կոդը վերբեռնումից հետո" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Ստուգել/Կոմպիլացնել" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." -msgstr "" +msgstr "Ստուգվում և վերբեռնվում է..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 msgid "Verifying archive integrity..." -msgstr "" +msgstr "Ստուգվում է արխիվի ամբողջականությունը" #: ../../../../../app/src/processing/app/Base.java:454 msgid "Verifying..." -msgstr "" +msgstr "Ստուգվում է..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Տարբերակ {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 msgid "Version unknown" -msgstr "" +msgstr "Տարբերակը ճանաչված չէ" #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Տարբերակ {0}" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Վիետնամերեն" #: Editor.java:1105 msgid "Visit Arduino.cc" -msgstr "" +msgstr "Այցելեք Arduino.cc" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" -msgstr "" +msgstr "ԶԳՈՒՇԱՑՈՒՄ: {1} Գրադարանում '{0}' կատեգորիան վավեր չէ: Դրվում է '{2}'-ին" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format msgid "WARNING: Spurious {0} folder in '{1}' library" -msgstr "" +msgstr "ԶԳՈՒՇԱՑՈՒՄ: '{1}' գրադարանում կեղծված {0} թղթապանակ" #: ../../../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 "" +msgstr "ԶԳՈՒՇԱՑՈՒՄ: {0} գրադարանը աշխատում է {1} ճարտարապետությամբ() եւ հնարավոր է համատեղելի չլինի ձեր ընթացիկ հարթակի հետ որը ունի {2} ճարտարապետություն()" #: Base.java:2128 msgid "Warning" -msgstr "Ուշադրություն" +msgstr "Զգուշացում" #: ../../../processing/app/debug/Compiler.java:1295 msgid "" "Warning: This core does not support exporting sketches. Please consider " "upgrading it or contacting its author" -msgstr "" +msgstr "Զգուշացում: Այս միջուկը գծագրերի արտահանում չի ապահովվում. Ինիկատի ունեցեք այն թարմացնել կամ հեղինակի հետ կապնվել" #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" +msgstr "Զգուշացում: {0} ֆայլը միանում է {1} բացարձակ ճանապարհին" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Զգուշացում: ստիպողական վտահում չվստահված ներդրողներին" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Զգուշացում: ստիպողական ({0}) սկրիպտի աշխատեցում" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Զգուշացում: չվստահված ներդրող, շրջանցվում է ({0}) սկրիպտի կատարումը" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format msgid "" "Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" " converted to {2}. Consider upgrading this core." -msgstr "" +msgstr "Զգուշացում: platform.txt-ի '{0}' միջուկը պարունակում է հնացած {1}, ավտոմատ ձեւափոխել է {2}-ի:\nԻնիկատի ունեցեք թարմացնել այս միջուկը:" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 msgid "" "Warning: platform.txt from core '{0}' misses property '{1}', using default " "value '{2}'. Consider upgrading this core." -msgstr "" +msgstr "Զգուշացում: platform.txt-ի '{0}' միջուկից բացակայում է {1} հատկությունը, օգտագործվում է {2} լռելյայն արժեքը:\nԻնիկատի ունեցեք թարմացնել այս միջուկը:" #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" "Warning: platform.txt from core '{0}' misses property {1}, automatically set" " to {2}. Consider upgrading this core." -msgstr "" +msgstr "Զգուշացում: platform.txt-ի '{0}' միջուկից բացակայում է {1} հատկությունը, ավտոմատ վերագրվում է {2}:\nԻնիկատի ունեցեք թարմացնել այս միջուկը:" #: ../../../../../app/src/processing/app/Preferences.java:190 msgid "Western Frisian" -msgstr "" +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" @@ -2287,73 +2297,73 @@ 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 նույն անվաբմ ինչ գծագրի անունն է:" #: ../../../../../app/src/processing/app/Base.java:2312 msgid "You can't import a folder that contains your sketchbook" -msgstr "" +msgstr "Դուք չեք կարող ներմուծել պանակ, որը պարունակում է ձեր գծագրի գիրքը" #: 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 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: 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 "Դուք հասել եք օրվա համար գծագրերի ավտոմատ անվանման սահմանին: Միգուցե գնաք զբոսնելու?" #: ../../../processing/app/BaseNoGui.java:768 msgid "" "Your copy of the IDE is installed in a subfolder of your settings folder.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Ձեր IDE-ի պատճենը տեղադրված է կարգավորումների ենթապանակում:\nԽնդրում ենք տեղափոխել IDE-ն այլ պանակ:" #: ../../../processing/app/BaseNoGui.java:771 msgid "" "Your copy of the IDE is installed in a subfolder of your sketchbook.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Ձեր IDE-ի պատճենը տեղադրված է գծագրերի գրքի ենթապանակում:\nԽնդրում ենք տեղափոխել IDE-ն այլ պանակ:" #: 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 @@ -2362,7 +2372,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}\"-ը պարունակում է չճանաչված սիմվոլներ: Եթե այս կոդը ստեղծվել է Արդուինոի հին տարբերակով, դուք հնարավոր է պետք է օգտագործեք Գործիքներ -> Ուղղել Կոդավորումը & Վերբեռնել գծագիրը UTF-8 կոդավորման թարմացնելու համար: Եթե ոչ, ապա դուք պետք է ջնջեք վատ սիմվոլները զգուշացումից ազատվելու համար:" #: debug/Compiler.java:409 msgid "" @@ -2370,7 +2380,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 "\nArduino 0019-ում Ethernet գրադարանը կախված է SPI գրադարանից:\nԴուք ամենայն հավանականությամբ օգտագործում եք այն կամ այլ գրադարան, որը կախված է SPI գրադարանից:\n" #: debug/Compiler.java:415 msgid "" @@ -2378,192 +2388,192 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "" +msgstr "\nArduino 1.0-ում 'BYTE' հիմնաբառը այլեւս չի աջակցվում:\nԽնդրում ենք փոխարենը օգտագործել 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 "\nArduino 1.0-ում 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 "\nArduino 1.0-ում Server դասը վերանվանվել է 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 "\nArduino 1.0-ում 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 "\nArduino 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 "\nArduino 1.0-ում Wire.send() ֆունկցիան վերանվանվել է Wire.write()-ի այլ գրադարանների հետ կայունության համար:\n\n" #: SerialMonitor.java:130 SerialMonitor.java:133 msgid "baud" -msgstr "" +msgstr "բոդ" #: 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 "միացնել Ֆայլ > Կարգավորումներ -ում" #: ../../../../../app/src/processing/app/Editor.java:1352 msgid "http://www.arduino.cc/" -msgstr "" +msgstr "http://www.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" #: Preferences.java:625 #, java-format msgid "ignoring invalid font size {0}" -msgstr "" +msgstr "Անվավեր տառատեսակի չափը {0} անտեսվում է" #: Editor.java:936 Editor.java:943 msgid "name is null" -msgstr "" +msgstr "անունը null է" #: Editor.java:932 msgid "serialMenu is null" -msgstr "" +msgstr "serialMenu-ն null է" #: debug/Uploader.java:195 #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "" +msgstr "{0} սերիալ պորտը գոյություն չունի կամ հարթակը կապնված չէ" #: ../../../processing/app/Base.java:389 #, java-format msgid "unknown option: {0}" -msgstr "" +msgstr "անհայտ տարբերակ: {0}" #: Preferences.java:391 msgid "upload" -msgstr "" +msgstr "վերբեռնում" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format msgid "version {0}" -msgstr "" +msgstr "տարբերակ {0}" #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format msgid "{0} - {1} | Arduino {2}" -msgstr "" +msgstr "{0} - {1} | Արդուինո {2}" #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format msgid "{0} file signature verification failed" -msgstr "" +msgstr "{0} ֆայլի ստորագրման ստուգումը ձախողվեց" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format msgid "{0} file signature verification failed. File ignored." -msgstr "" +msgstr "{0} ֆայլի ստորագրման ստուգումը ձախողվեց: Ֆայլը անտեսվեց:" #: Editor.java:380 #, java-format msgid "{0} files added to the sketch." -msgstr "" +msgstr "{0} ֆայլեր ավելացվեցին գծագրին:" #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format msgid "{0} libraries" -msgstr "" +msgstr "{0} գրադարաններ" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "{0}-ը պետք է լինի պանակ" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format msgid "{0} pattern is missing" -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} | Արդունո{1}" #: ../../../processing/app/Base.java:519 #, java-format msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" +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 "" +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 "" +msgstr "{0}: Անվավեր տարբերակ \"{1}\", \"{2}\" տարբերակ հարթակի համար" #: ../../../processing/app/Base.java:507 #, java-format msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" +msgstr "{0}: Անվավեր տարբերակ \"{1}\" հարթակի համար" #: ../../../processing/app/Base.java:502 #, java-format msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" +msgstr "{0}: Անվավեր տարբերակ, պետք է լինի հետեւյալ ձեւով \"name=value\"" #: ../../../processing/app/Base.java:486 #, java-format msgid "{0}: Unknown architecture" -msgstr "" +msgstr "{0}: Անհայտ ճարտարապետություն" #: ../../../processing/app/Base.java:491 #, java-format msgid "{0}: Unknown board" -msgstr "" +msgstr "{0}: Անհայտ հարթակ" #: ../../../processing/app/Base.java:481 #, java-format msgid "{0}: Unknown package" -msgstr "" +msgstr "{0}: Անհայտ փաթեթ" diff --git a/arduino-core/src/processing/app/i18n/Resources_hy.properties b/arduino-core/src/processing/app/i18n/Resources_hy.properties index 2c58a8959..34829878a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hy.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hy.properties @@ -8,368 +8,370 @@ # Translators: # Translators: # Translators: +# Translators: # zepyur , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Armenian (http\://www.transifex.com/mbanzi/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 +# Levon , 2015 +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Armenian (http\://www.transifex.com/mbanzi/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)= +\ \ (requires\ restart\ of\ Arduino)=(\u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 \u0567 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0578\u0582\u0574) #: ../../../processing/app/debug/Compiler.java:529 #, java-format -!\ Not\ used\:\ {0}= +\ Not\ used\:\ {0}=\u0549\u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0561\u056e\: {0} #: ../../../processing/app/debug/Compiler.java:525 #, java-format -!\ Used\:\ {0}= +\ Used\:\ {0}=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0561\u056e\: {0} -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information='arch' \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0579\u056b \u0561\u057b\u0561\u056f\u057e\u0578\u0582\u0574\! \u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579 \u056b\u0576\u0586\u0578\u0580\u0574\u0561\u0581\u056b\u0561\u0575\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0575\u0581\u0565\u056c\u0565\u0584 http\://goo.gl/gfFJzU #: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= +(edit\ only\ when\ Arduino\ is\ not\ running)=(\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u0574\u056b\u0561\u0575\u0576 \u0565\u0580\u0562 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u0574\u056b\u0561\u0581\u057e\u0561\u056e \u0567) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 -!(legacy)= +(legacy)=(\u056a\u0561\u057c\u0561\u0576\u0563\u0578\u0582\u0569\u0575\u0578\u0582\u0576) #: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= +--curdir\ no\ longer\ supported=--curdir -\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0579\u056b \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574 #: ../../../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 \u0565\u0582 --verbose-build \u056f\u0561\u0580\u0578\u0572 \u056f\u056b\u0580\u0561\u057c\u057e\u0565\u056c \u0574\u056b\u0561\u057d\u056b\u0576 \u0574\u056b\u0561\u0575\u0576 --verify \u056f\u0561\u0574 --upload -\u056b \u0570\u0565\u057f #: Sketch.java:746 -!.pde\ ->\ .ino= +.pde\ ->\ .ino=.pde -> .ino #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574 \u0567 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0571\u0565\u0580 \u0578\u0580\u0578\u0577 {0}\u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574 \u0567 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0571\u0565\u0580 \u0578\u0580\u0578\u0577 {0}\u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b{1} \u0565\u0582 {2}\u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574 \u0567 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0571\u0565\u0580 \u0578\u0580\u0578\u0577 {0}\u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580{1} #: 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.= \u0551\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u0561\u0575\u057d \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u056b \u0570\u0561\u0574\u0561\u0580
\u0576\u0561\u056d\u056f\u0561\u0576 \u0583\u0561\u056f\u0565\u056c\u0568?

\u0535\u0569\u0565 \u0578\u0579, \u0561\u057a\u0561 \u0571\u0565\u0580 \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u056f\u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u0576\: #: Sketch.java:398 #, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"="{0}" \u0561\u0576\u0578\u0582\u0576\u0578\u057e \u0586\u0561\u0575\u056c\u0568 \u0561\u0580\u0564\u0565\u0576 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u056b "{1}"-\u0578\u0582\u0574 #: 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.="{0}" \u0561\u0576\u0578\u0582\u0576\u0578\u057e \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0580\u0564\u0565\u0576 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u056b\: \u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0562\u0561\u0581\u0565\u056c \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568\: #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists={0} \u0561\u0576\u0578\u0582\u0576\u0578\u057e \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0561\u0580\u0564\u0565\u0576 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u056b #: 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?=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u0576\u0578\u0580 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568 \u0561\u0580\u0564\u0565\u0576 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0567,\n\u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u0561\u0575\u0581\u0565\u056c\u0565\u056c \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u0576\u0565\u0580\u0562\u0565\u057c\u0574\u0561\u0576 \u0567\u057b\u0568? #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!A\ newer\ {0}\ package\ is\ available= +A\ newer\ {0}\ package\ is\ available=\u0546\u0578\u0580 {0} \u0583\u0561\u0569\u0565\u0569\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0567 #: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= +A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=\u0541\u0565\u0580 \u0563\u056e\u0561\u0563\u0580\u056b \u0565\u0576\u0569\u0561\u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0580\u0564\u056b \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0579\u0567 #: Editor.java:1116 About\ Arduino=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0575\u056b \u0574\u0561\u057d\u056b\u0576 #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c .ZIP \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576... #: Editor.java:650 Add\ File...=\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u056b\u0577\u0584\u2024\u2024\u2024 #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= +Additional\ Boards\ Manager\ URLs=\u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579 \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579\u0576\u0565\u0580\u056b URL-\u0576\u0565\u0580 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = +Additional\ Boards\ Manager\ URLs\:\ =\u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579 \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579\u0576\u0565\u0580\u056b URL-\u0576\u0565\u0580\: #: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= +Afrikaans=\u0531\u0586\u0580\u056b\u056f\u0561\u0561\u0576\u057d #: ../../../processing/app/Preferences.java:96 -!Albanian= +Albanian=\u0531\u056c\u0562\u0561\u0576\u0565\u0580\u0565\u0576 #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= +All=\u0532\u0578\u056c\u0578\u0580\u0568 #: 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=\u054d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e \u0586\u0561\u0575\u056c\u056b \u056f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568 \u0578\u0582\u0572\u0572\u0565\u056c\u0578\u0582 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\:\n\u0544\u056b \u0583\u0578\u0580\u0571\u0565\u0584 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568, \u0584\u0561\u0576\u056b \u0578\u0580 \u0561\u0575\u0576 \u056f\u0561\u0580\u0578\u0572 \u057e\u0565\u0580\u0561\u0563\u0580\u0565\u056c\n\u0570\u056b\u0576 \u057f\u0561\u0580\u0562\u0561\u0580\u0561\u056f\u0568\: \u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u0584 \u057e\u0565\u0580\u0561\u0562\u0561\u0581\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0565\u0582 \u056f\u0580\u056f\u056b\u0576 \u0583\u0578\u0580\u0571\u0565\u0584\:\n #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= +An\ error\ occurred\ while\ updating\ libraries\ index\!=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u056b\u0576\u0564\u0565\u056f\u057d\u056b \u0569\u0561\u0580\u0574\u0561\u0581\u0574\u0561\u0576 \u056a\u0561\u0574\u0561\u0576\u0561\u056f \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e\! #: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= +An\ error\ occurred\ while\ uploading\ the\ sketch=\u0533\u056e\u0561\u0563\u056b\u0580\u0568 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c\u056b\u057d \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e #: ../../../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=\u0533\u056e\u0561\u0563\u0580\u056b \u057d\u057f\u0578\u0582\u0563\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e #: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=\u0533\u056e\u0561\u0563\u0580\u056b \u057d\u057f\u0578\u0582\u0563\u0574\u0561\u0576/\u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e #: 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.=\u0531\u0576\u0570\u0561\u0575\u057f \u057d\u056d\u0561\u056c \u0567 \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u056c \u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574\u056b\u0576 \u0561\u057c\u0561\u0576\u0571\u0576\u0561\u0570\u0561\u057f\u0578\u0582\u056f\n\u056f\u0578\u0564\u056b \u0571\u0565\u0580 \u0570\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u0579\u056b\u0576 \u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\: #: Preferences.java:85 Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576 #: Preferences.java:86 -!Aragonese= +Aragonese=\u0531\u0580\u0561\u0563\u0578\u0576\u0565\u0580\u0565\u0576 #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=\u0531\u0580\u056d\u056b\u057e\u0561\u0581\u0576\u0565\u056c \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568 #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=\u0531\u0580\u056d\u056b\u057e\u0561\u0581\u0576\u0565\u056c \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568 \u0578\u0580\u057a\u0565\u057d\: #: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= +Archive\ sketch\ canceled.=\u0533\u056e\u0561\u0576\u056f\u0561\u0580\u056b \u0561\u0580\u056d\u056b\u057e\u0561\u0581\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u0565\u056c #: 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.=\u0533\u056e\u0561\u0576\u056f\u0561\u0580\u056b \u0561\u0580\u056d\u056b\u057e\u0561\u0581\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u056c \u0567, \u0584\u0561\u0576\u056b \u0578\u0580\n\u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0573\u056b\u0577\u057f \u057a\u0561\u0570\u0565\u056c #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578 ARM (32-bit) \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u0568 #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578 AVR \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580 #: 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=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u057e \u056f\u0561\u0580\u0578\u0572 \u0567 \u0562\u0561\u0581\u0565\u056c \u0574\u056b\u0561\u0575\u0576 \u057d\u0565\u0583\u0561\u056f\u0561\u0576 \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0576\u0565\u0580\u0568\n\u0565\u0582 \u0561\u0575\u056c \u0586\u0561\u0575\u056c\u0565\u0580 .ino \u056f\u0561\u0574 .pde \u057e\u0565\u0580\u057b\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0561\u0574\u0562 #: 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.=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0561\u0577\u056d\u0561\u057f\u0565\u056c, \u0584\u0561\u0576\u056b \u0578\u0580 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580\n\u057d\u057f\u0565\u056c\u056e\u0565\u056c \u057a\u0561\u0576\u0561\u056f \u0571\u0565\u0580 \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u0568 \u057a\u0561\u0570\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580\: #: 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.=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0561\u0577\u056d\u0561\u057f\u0565\u056c, \u0584\u0561\u0576\u056b \u0578\u0580 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580\n\u057d\u057f\u0565\u056c\u056e\u0565\u056c \u057a\u0561\u0576\u0561\u056f \u0571\u0565\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u056b\u0580\u0584\u0568 \u057a\u0561\u0570\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580\: #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\: #: Sketch.java:588 #, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u054e\u057d\u057f\u0561\u0570 \u0565\u0584 \u0578\u0580 \u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u057b\u0576\u057b\u0565\u056c "{0}"? #: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u054e\u057d\u057f\u0561\u0570 \u0565\u0584 \u0578\u0580 \u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u057b\u0576\u057b\u0565\u056c \u0561\u0575\u057d \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568 ? #: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= +Argument\ required\ for\ --board=--board -\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 #: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= +Argument\ required\ for\ --port=--port -\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 #: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= +Argument\ required\ for\ --pref=--pref -\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 #: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= +Argument\ required\ for\ --preferences-file=--preferences-file -\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format -!Argument\ required\ for\ {0}= +Argument\ required\ for\ {0}={0}-\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u0540\u0561\u0575\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=\u0531\u057d\u057f\u0578\u0582\u0580\u0565\u0580\u0565\u0576 #: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= +Authorization\ required=\u053c\u056b\u0561\u0566\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 #: tools/AutoFormat.java:91 -!Auto\ Format= +Auto\ Format=\u0531\u057e\u057f\u0578\u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0578\u0582\u0574 #: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= +Auto\ Format\ finished.=\u0531\u057e\u057f\u0578\u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=\u054a\u0580\u0578\u0584\u057d\u056b \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580\u0565\u0580\u056b \u0561\u057e\u057f\u0578\u0574\u0561\u057f \u0573\u0561\u0576\u0561\u0579\u0578\u0582\u0574 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=\u0531\u057e\u057f\u0578\u0574\u0561\u057f \u057a\u0580\u0578\u0584\u057d\u056b \u056f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0561\u0575\u056b URL\: #: SerialMonitor.java:110 -!Autoscroll= +Autoscroll=\u0531\u057e\u057f\u0578\u0563\u0561\u056c\u0561\u0580\u0578\u0582\u0574 #: Editor.java:2619 #, java-format -!Bad\ error\ line\:\ {0}= +Bad\ error\ line\:\ {0}=\u054e\u0561\u057f \u057d\u056d\u0561\u056c\u056b \u057f\u0578\u0572\: {0} #: Editor.java:2136 -!Bad\ file\ selected= +Bad\ file\ selected=\u054e\u0561\u057f \u0586\u0561\u0575\u056c \u0567 \u0568\u0576\u057f\u0580\u057e\u0561\u056e #: ../../../processing/app/Preferences.java:149 -!Basque= +Basque=\u0532\u0561\u057d\u056f\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:139 -!Belarusian= +Belarusian=\u0532\u0565\u056c\u0561\u057c\u0578\u0582\u057d\u0565\u0580\u0565\u0576 #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=\u0540\u0561\u0580\u0569\u0561\u056f #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format -!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=\u0540\u0561\u0580\u0569\u0561\u056f {0} (\u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574 {1}, \u0583\u0561\u0569\u0565\u0569 {2}) -\u0568 \u0573\u0561\u0576\u0561\u0579\u057e\u0561\u056e \u0579\u0567 #: ../../../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}=\ {0}\:{1}\:{2} \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u0579\u056b \u057d\u0561\u0570\u0574\u0561\u0576\u0578\u0582\u0574 ''build.board'' \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568\: \u0531\u057e\u057f\u0578\u0574\u0561\u057f \u0576\u0577\u0561\u0576\u0561\u056f\u0578\u0582\u0574\: {3} #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =\u0540\u0561\u0580\u0569\u0561\u056f\: #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= +Boards\ Manager=\u0540\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579 #: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= +Boards\ Manager...=\u0540\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579... #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= +Boards\ included\ in\ this\ package\:=\u0540\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u0568 \u0576\u0565\u0580\u0561\u057c\u057e\u0561\u056e \u0565\u0576 \u0561\u0575\u057d \u0583\u0561\u0569\u0565\u0569\u0578\u0582\u0574\: #: ../../../processing/app/debug/Compiler.java:1273 #, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= +Bootloader\ file\ specified\ but\ missing\:\ {0}=Bootloader \u0586\u0561\u0575\u056c\u0568 \u0576\u0577\u057e\u0561\u056e \u0567 \u057d\u0561\u056f\u0561\u0575\u0576 \u0563\u057f\u0576\u057e\u0561\u056e \u0579\u0567\: {0} #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u0532\u0578\u057d\u0576\u0565\u0580\u0565\u0576 #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=\u0535\u0580\u056f\u0578\u0582\u057d\u0576 \u0567\u056c NL & CR #: Preferences.java:81 Browse=\u0536\u0576\u0576\u0565\u056c #: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= +Build\ options\ changed,\ rebuilding\ all=\u053f\u0561\u057c\u0578\u0582\u0581\u0574\u0561\u0576 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0576\u0565\u0580\u0568 \u0583\u0578\u0583\u0578\u056d\u057e\u0565\u056c \u0565\u0576, \u057e\u0565\u0580\u0561\u056f\u0561\u057c\u0578\u0582\u0581\u0565\u056c \u0561\u0574\u0562\u0578\u0572\u057b\u0568 #: ../../../../../app/src/processing/app/Base.java:1210 -!Built-in\ Examples= +Built-in\ Examples=\u0546\u0565\u0580\u0564\u0580\u057e\u0561\u0581 \u0585\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580 #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=\u0532\u0578\u0582\u056c\u0572\u0561\u0580\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=\u0532\u0578\u0582\u057c\u0574\u0565\u0580\u0565\u0576 (\u0544\u0575\u0561\u0576\u0574\u0561\u0580) #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=\u054e\u0561\u057c\u0565\u056c Bootloader-\u0568 #: 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)...=bootloader-\u0568 \u057e\u0561\u057c\u057e\u0578\u0582\u0574 \u0567 I/O \u0570\u0561\u0580\u0569\u0561\u056f\u056b\u0576 (\u057d\u0561 \u056f\u0561\u0580\u0578\u0572 \u0567 \u057f\u0565\u0582\u0565\u056c \u0574\u056b\u0584\u0561\u0576\u056b \u0580\u0578\u057a\u0565)... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= +CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC -\u056b\u0576 \u0579\u056b \u0570\u0561\u0574\u0561\u057a\u0561\u057f\u0561\u057d\u056d\u0561\u0576\u0578\u0582\u0574\: \u0556\u0561\u0575\u056c\u0568 \u057e\u0576\u0561\u057d\u057e\u0561\u056e \u0567\: #: ../../../processing/app/Base.java:379 #, java-format -!Can\ only\ pass\ one\ of\:\ {0}= +Can\ only\ pass\ one\ of\:\ {0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u0583\u0578\u056d\u0561\u0576\u0581\u0565\u056c {0}-\u056b\u0581 \u0574\u056b\u0561\u0575\u0576 \u0574\u0565\u056f\u0568 #: ../../../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=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0563\u057f\u0576\u0565\u056c \u0563\u056e\u0561\u0576\u056f\u0561\u0580 \u0576\u0577\u057e\u0561\u056e \u0573\u0561\u0576\u0561\u057a\u0561\u0580\u0570\u056b\u0576 #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=\u053f\u0561\u0576\u0561\u0564\u0561\u056f\u0561\u0576 \u0586\u0580\u0561\u0576\u057d\u0565\u0580\u0565\u0576 #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 Cancel=\u0549\u0565\u0572\u0561\u0580\u056f\u0565\u056c #: Sketch.java:455 -!Cannot\ Rename= +Cannot\ Rename=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c #: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= +Cannot\ specify\ any\ sketch\ files=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0576\u0577\u0565\u056c \u0578\u0580\u0565\u0582\u0567 \u0563\u056e\u0561\u0563\u0580\u056b \u0586\u0561\u0575\u056c #: SerialMonitor.java:112 -!Carriage\ return= +Carriage\ return=\u0546\u0578\u0580 \u057f\u0578\u0572 #: Preferences.java:87 Catalan=\u053f\u0561\u057f\u0561\u056c\u0578\u0576\u0565\u0580\u0565\u0576 #: Preferences.java:419 -!Check\ for\ updates\ on\ startup= +Check\ for\ updates\ on\ startup=\u054e\u0565\u0580\u057d\u056f\u057d\u0574\u0561\u0576 \u056a\u0561\u0574\u0561\u0576\u0561\u056f \u057d\u057f\u0578\u0582\u0563\u0565\u056c \u0569\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574\u0576\u0565\u0580\u0568 #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Chinese\ (China)=\u0549\u056b\u0576\u0565\u0580\u0565\u0576 (\u0549\u056b\u0576\u0561\u057d\u057f\u0561\u0576) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=\u0549\u056b\u0576\u0565\u0580\u0565\u0576 (\u0539\u0561\u0575\u057e\u0561\u0576) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= +Chinese\ (Taiwan)\ (Big5)=Chinese (Taiwan) (Big5) #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= +Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\u054d\u0565\u0572\u0574\u0565\u0584 \u0578\u0579 \u0585\u0586\u056b\u0581\u056b\u0561\u056c \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u057d\u057a\u0561\u057d\u0561\u0580\u056f\u0574\u0561\u0576 URL-\u0576\u0565\u0580\u056b \u0581\u0578\u0582\u0581\u0561\u056f\u056b \u0570\u0561\u0574\u0561\u0580 #: Editor.java:521 Editor.java:2024 Close=\u0553\u0561\u056f\u0565\u056c #: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= +Comment/Uncomment=\u0544\u0565\u056f\u0576\u0561\u0562\u0561\u0576\u0565\u056c/\u0544\u0565\u056f\u0576\u0561\u0562\u0561\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u0565\u056c #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = +Compiler\ warnings\:\ =\u053f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0575\u056b \u0576\u0561\u056d\u0561\u0566\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\u0576\u0565\u0580\: #: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= +Compiling\ sketch...=\u0533\u056e\u0561\u0576\u056f\u0561\u0580\u0568 \u056f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u057e\u0578\u0582\u0574 \u0567... #: Editor.java:1157 Editor.java:2707 Copy=\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c #: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= +Copy\ as\ HTML=\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u0578\u0580\u057a\u0565\u057d HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u054a\u0561\u057f\u0573\u0565\u0576\u0574\u0561\u0576 \u057d\u056d\u0561\u056c\u056b \u0570\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580 #: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= +Copy\ for\ Forum=\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u0586\u0578\u0580\u0578\u0582\u0574\u056b \u0570\u0561\u0574\u0561\u0580 #: Sketch.java:1089 #, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c ''{0}'' \u0563\u056e\u0561\u0563\u0580\u056b\u0576\: #: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= +Could\ not\ copy\ to\ a\ proper\ location.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u0570\u0561\u0574\u0561\u057a\u0561\u057f\u0561\u057d\u056d\u0561\u0576 \u057e\u0561\u0575\u0580 #: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= +Could\ not\ create\ the\ sketch\ folder.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057d\u057f\u0565\u0572\u056e\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568 #: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= +Could\ not\ create\ the\ sketch.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057d\u057f\u0565\u0572\u056e\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 #: Sketch.java:617 #, java-format -!Could\ not\ delete\ "{0}".= +Could\ not\ delete\ "{0}".=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057b\u0576\u057b\u0565\u056c "{0}"-\u0568\: #: Sketch.java:1066 #, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057b\u0576\u057b\u0565\u056c \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u0565\u0581\u0578\u0572 "{0}" \u0586\u0561\u0575\u056c\u0568\: #: Base.java:2533 Base.java:2556 #, java-format @@ -377,182 +379,182 @@ Could\ not\ delete\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u057b\u0576\u #: ../../../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?=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0563\u057f\u0576\u0565\u056c boards.txt -\u0568 {0} -\u0578\u0582\u0574. \u0534\u0561 pre-1.5 \u0567 ? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0563\u057f\u0576\u0565\u056c {0} \u0563\u0578\u0580\u056e\u056b\u0584\u0568 #: ../../../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}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0563\u057f\u0576\u0565\u056c {0} \u0563\u0578\u0580\u056e\u056b\u0584\u0568 {1} \u0583\u0561\u0569\u0565\u0569\u056b\u0581 #: Base.java:1934 #, java-format -!Could\ not\ open\ the\ URL\n{0}= +Could\ not\ open\ the\ URL\n{0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0562\u0561\u0581\u0565\u056c \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c URL-\u0568\n{0} #: Base.java:1958 #, java-format -!Could\ not\ open\ the\ folder\n{0}= +Could\ not\ open\ the\ folder\n{0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0562\u0561\u0581\u0565\u056c \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c \u057a\u0561\u0576\u0561\u056f\u0568\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.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0570\u0561\u0580\u056f\u056b\u0576 \u057e\u0565\u0580\u0561\u057a\u0561\u0570\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: \u0534\u0578\u0582\u0584 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u057a\u0580\u0578\u0562\u056c\u0565\u0574\u0576\u0565\u0580 \u0578\u0582\u0576\u0565\u0576\u0561\u0584,\n\u0535\u0582 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u056a\u0561\u0574\u0561\u0576\u0561\u056f\u0576 \u0567 \u057a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u056f\u0578\u0564\u0568 \u0561\u0575\u056c \u057f\u0565\u0584\u057d\u057f\u0561\u0575\u056b\u0576 \u056d\u0574\u0562\u0561\u0563\u0580\u056b\u0579\u0578\u0582\u0574\: #: Sketch.java:1768 -!Could\ not\ re-save\ sketch= +Could\ not\ re-save\ sketch=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u057a\u0561\u0570\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 #: 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.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u056f\u0561\u0580\u0564\u0561\u056c \u0563\u0578\u0582\u0576\u0561\u0575\u056b\u0576 \u0569\u0565\u0574\u0561\u0575\u056b \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u0568\:\n\u0534\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057e\u0565\u0580\u0561\u057f\u0565\u0572\u0561\u0564\u0580\u0565\u0584 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576\: #: 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.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u056f\u0561\u0580\u0564\u0561\u056c \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576 \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u0568\:\n\u0534\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057e\u0565\u0580\u0561\u057f\u0565\u0572\u0561\u0564\u0580\u0565\u0584 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576\: #: Base.java:2482 #, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= +Could\ not\ remove\ old\ version\ of\ {0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057b\u0576\u057b\u0565\u056c {0}-\u056b \u0570\u056b\u0576 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568 #: Sketch.java:483 Sketch.java:528 #, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c "{0}"-\u0568 "{1}"-\u056b #: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= +Could\ not\ rename\ the\ sketch.\ (0)=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: (0) #: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= +Could\ not\ rename\ the\ sketch.\ (1)=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: (1) #: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= +Could\ not\ rename\ the\ sketch.\ (2)=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: (2) #: Base.java:2492 #, java-format Could\ not\ replace\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c #: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= +Couldn't\ archive\ sketch=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0561\u0580\u056d\u056b\u057e\u0561\u0581\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 #: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= +Couldn't\ determine\ program\ size\:\ {0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0578\u0580\u0578\u0577\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u056b \u0579\u0561\u0583\u0568\: {0} #: Sketch.java:616 -!Couldn't\ do\ it= +Couldn't\ do\ it=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0561\u0576\u0565\u056c \u0564\u0561 #: 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.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0565\u0572\u0561\u057e \u0563\u057f\u0576\u0565\u056c \u0570\u0561\u0580\u0569\u0561\u056f \u0576\u0577\u057e\u0561\u056e \u057a\u0578\u0580\u057f\u0578\u0582\u0574\: \u0540\u0561\u0574\u0578\u0566\u057e\u0565\u0584 \u0578\u0580 \u0573\u056b\u0577\u057f \u057a\u0578\u0580\u057f \u0565\u0584 \u0576\u0577\u0565\u056c\: \u0535\u0569\u0565 \u0561\u0575\u0576 \u0573\u056b\u0577\u057f \u0567, \u0583\u0578\u0580\u0571\u0565\u0584 \u057d\u0565\u0572\u0574\u0565\u056c \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0574\u0561\u0576 \u056f\u0578\u0573\u0561\u056f\u0568 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u0568 \u057d\u056f\u057d\u0565\u056c\u0578\u0582\u0581 \u0561\u057c\u0561\u057b\: #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=\u053d\u0578\u0580\u057e\u0561\u0569\u0565\u0580\u0565\u0576 #: Editor.java:1149 Editor.java:2699 -!Cut= +Cut=\u053f\u057f\u0580\u0565\u056c #: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= +Czech\ (Czech\ Republic)=\u0549\u0565\u056d\u0565\u0580\u0565\u0576 (\u0549\u0565\u056d\u056b\u0561) #: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= +Danish\ (Denmark)=\u0534\u0561\u0576\u056b\u0565\u0580\u0565\u0576 (\u0534\u0561\u0576\u056b\u0561) #: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= +Decrease\ Indent=\u0553\u0578\u0584\u0580\u0561\u0581\u0576\u0565\u056c \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= +Default=\u053c\u057c\u0565\u056c\u0575\u0561\u0575\u0576 #: EditorHeader.java:314 Sketch.java:591 -!Delete= +Delete=\u054b\u0576\u057b\u0567\u056c #: 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=\u054d\u0561\u0580\u0584\u0568 \u0579\u056b \u0561\u0580\u0571\u0561\u0563\u0561\u0576\u0584\u0578\u0582\u0574, \u057d\u057f\u0578\u0582\u0563\u0565\u0584 \u0561\u0580\u0564\u0575\u0578\u0584 \u0573\u056b\u0577\u057f \u057a\u0578\u0580\u057f\u0576 \u0567 \u0576\u0577\u057e\u0561\u056e \u056f\u0561\u0574 \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0565\u0584 \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u0561\u0580\u057f\u0561\u0570\u0561\u0576\u0565\u056c\u0578\u0582\u0581 \u0561\u057c\u0561\u057b #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=\u0549\u0565\u0572\u0561\u0580\u056f\u0565\u056c \u0562\u0578\u056c\u0578\u0580 \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u0565\u0582 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u057f\u0578\u0572\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580\u0576\u0565\u0580\u0568 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= +Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=\u0551\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u057b\u0576\u057b\u0565\u056c {0}-\u0568?\n\u0535\u0569\u0565 \u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584, \u0561\u057a\u0561 {0}-\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0561\u0575\u056c\u0587\u057d \u0579\u056b \u056c\u056b\u0576\u056b\: #: Editor.java:2064 Don't\ Save=\u0549\u0570\u056b\u0577\u0565\u056c #: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= +Done\ Saving.=\u054a\u0561\u0570\u0578\u0582\u0574\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567 #: Editor.java:2510 -!Done\ burning\ bootloader.= +Done\ burning\ bootloader.=bootloader \u057e\u0561\u057c\u0578\u0582\u0574\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567\: #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= +Done\ compiling=\u053f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567 #: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= +Done\ compiling.=\u053f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567\: #: Editor.java:2564 -!Done\ printing.= +Done\ printing.=\u054f\u057a\u0565\u056c\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567 #: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= +Done\ uploading=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567 #: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= +Done\ uploading.=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567\: #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= +Downloaded\ {0}kb\ of\ {1}kb.=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0561\u056e \u0567 {0}kb {1}kb-\u056b\u0581\: #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= +Downloading\ boards\ definitions.=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u057d\u0561\u0570\u0574\u0561\u0576\u0578\u0582\u0574\u0576\u0565\u0580\u0568\: #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= +Downloading\ libraries\ index...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u056b\u0576\u0564\u0565\u056f\u057d\u0568... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format -!Downloading\ library\:\ {0}= +Downloading\ library\:\ {0}=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 {0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= +Downloading\ platforms\ index...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 \u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574\u0576\u0565\u0580\u056b \u056b\u0576\u0564\u0565\u056f\u057d\u0568... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format -!Downloading\ tools\ ({0}/{1}).= +Downloading\ tools\ ({0}/{1}).=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0565\u0576 \u0563\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580\u0568 ({0}/{1}). #: Preferences.java:91 Dutch=\u0540\u0578\u056c\u0561\u0576\u0564\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=\u0540\u0578\u056c\u0561\u0576\u0564\u0565\u0580\u0565\u0576 (\u0540\u0578\u056c\u0561\u0576\u0564\u056b\u0561) #: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= +Edison\ Help=\u0535\u0564\u056b\u057d\u0578\u0576\u056b \u0585\u0563\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576 #: Editor.java:1130 Edit=\u053d\u0574\u0562\u0561\u0563\u0580\u0565\u056c #: Preferences.java:370 -!Editor\ font\ size\:\ = +Editor\ font\ size\:\ =\u053d\u0574\u0562\u0561\u0563\u0580\u056b\u0579\u056b \u057f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f\u056b \u0579\u0561\u0583\u0568\: #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =\u053d\u0574\u0562\u0561\u0563\u0580\u056b\u0579\u056b \u056c\u0565\u0566\u0578\u0582\u0576\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= +Enable\ Code\ Folding=\u0531\u056f\u057f\u056b\u057e\u0561\u0581\u0576\u0565\u056c \u056f\u0578\u0564\u056b \u0583\u0561\u0569\u0561\u0569\u0578\u0582\u0574\u0568 #: Preferences.java:92 English=\u0531\u0576\u0563\u056c\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=\u0531\u0576\u0563\u056c\u0565\u0580\u0565\u0576 (\u0544\u056b\u0561\u0581\u0575\u0561\u056c \u0539\u0561\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= +Enter\ a\ comma\ separated\ list\ of\ urls=\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0565\u0584 \u057d\u057f\u0578\u0580\u0561\u056f\u0565\u057f\u0578\u057e \u0562\u0561\u056a\u0561\u0576\u057e\u0561\u056e url-\u0576\u0565\u0580\u056b \u0581\u0561\u0576\u056f\u0568 #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= +Enter\ additional\ URLs,\ one\ for\ each\ row=\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0565\u056c \u056c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579 URL-\u0576\u0565\u0580, \u0574\u0565\u056f\u0561\u056f\u0561\u0576 \u0561\u0574\u0565\u0576 \u057f\u0578\u0572\u0578\u0582\u0574 #: Editor.java:1062 Environment=\u0544\u056b\u057b\u0561\u057e\u0561\u0575\u0580 @@ -563,119 +565,123 @@ Environment=\u0544\u056b\u057b\u0561\u057e\u0561\u0575\u0580 Error=\u054d\u056d\u0561\u056c #: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= +Error\ adding\ file=\u0556\u0561\u0575\u056c\u056b \u0561\u057e\u0565\u056c\u0561\u0581\u0574\u0561\u0576 \u057d\u056d\u0561\u056c #: debug/Compiler.java:369 -!Error\ compiling.= +Error\ compiling.=\u053f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0575\u056b \u057d\u056d\u0561\u056c\: #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format -!Error\ downloading\ {0}= +Error\ downloading\ {0}=\u0546\u0565\u0580\u0562\u0565\u057c\u0574\u0561\u0576 \u057d\u056d\u0561\u056c {0} #: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= +Error\ getting\ the\ Arduino\ data\ folder.=\u054d\u056d\u0561\u056c \u0531\u0580\u0564\u0578\u0582\u0576\u0578\u056b \u057f\u057e\u0575\u0561\u056c\u0576\u0565\u0580 \u057a\u0561\u0576\u0561\u056f\u0568 \u0562\u0565\u057c\u0576\u0565\u056c\u056b\u057d\: #: Serial.java:593 #, java-format -!Error\ inside\ Serial.{0}()= +Error\ inside\ Serial.{0}()=\u054d\u056d\u0561\u056c \u057d\u0565\u0580\u056b\u0561\u056c\u0578\u0582\u0574.{0}() #: ../../../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}=\u0532\u0565\u057c\u0576\u0574\u0561\u0576 \u057d\u056d\u0561\u056c {0} #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=\u054d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u056b \u0562\u0561\u0581\u0574\u0561\u0576 \u057d\u056d\u0561\u056c ''{0}''\: #: ../../../processing/app/Serial.java:119 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= +Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=\u054d\u056d\u0561\u056c ''{0}' \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0568 \u0562\u0561\u0581\u0565\u056c\u056b\u057d\: \u0546\u0561\u0575\u056b\u0580 \u0583\u0561\u057d\u057f\u0561\u0569\u0572\u0569\u0565\u0580\u0568 \u0561\u0575\u057f\u0565\u0572 http\://playground.arduino.cc/Linux/All\#Permission #: Preferences.java:277 -!Error\ reading\ preferences= +Error\ reading\ preferences=\u054d\u056d\u0561\u056c \u0570\u0572\u0578\u0582\u0574\u0576\u0565\u0580\u0568 \u056f\u0561\u0580\u0564\u0561\u056c\u056b\u057d #: 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.=\u054d\u056d\u0561\u056c \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u056b \u0586\u0561\u0575\u056c\u0568 \u056f\u0561\u0580\u0564\u0561\u056c\u056b\u057d\: \u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u057b\u0576\u057b\u0565\u056c(\u056f\u0561\u0574 \u0574\u0561\u0584\u0580\u0565\u056c) {0}-\u0568 \u0587 \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0565\u0584 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576\: #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= +Error\ running\ post\ install\ script=\u054d\u056d\u0561\u056c \u0570\u0565\u057f-\u057f\u0565\u0572\u0561\u0564\u0580\u0574\u0561\u0576 \u057d\u056f\u0580\u056b\u057a\u057f\u0568 \u0561\u0577\u056d\u0561\u057f\u0561\u0581\u0576\u0565\u056c\u056b\u057d #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =\u054d\u056d\u0561\u056c \u0573\u0561\u0576\u0561\u0579\u0574\u0561\u0576 \u0574\u0565\u0569\u0578\u0564\u0568 \u057d\u056f\u057d\u0565\u056c\u0578\u0582\u0581\: #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=\u054d\u056d\u0561\u056c ''{0}'' \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u056b \u057e\u0565\u0580\u0561\u0562\u0565\u0580\u0575\u0561\u056c\: #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= +Error\ while\ burning\ bootloader.=\u054d\u056d\u0561\u056c bootloader-\u056b \u057e\u0561\u057c\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\: #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u054d\u056d\u0561\u056c bootloader-\u0568 \u057e\u0561\u057c\u0565\u056c\u056b\u057d\: \u057a\u0561\u056f\u0561\u057d\u0578\u0572 '{0}' \u056f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0578\u0576 \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580 #: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=\u054d\u056d\u0561\u056c \u056f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u056b\u0561\u0575\u056b \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\: \u057a\u0561\u056f\u0561\u057d\u0578\u0572 '{0}' \u056f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0578\u0576 \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580 #: SketchCode.java:83 #, java-format -!Error\ while\ loading\ code\ {0}= +Error\ while\ loading\ code\ {0}=\u054d\u056d\u0561\u056c {0}-\u056b \u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=\u054d\u056d\u0561\u056c \u057f\u057a\u0565\u056c\u0578\u0582 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\: + +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= #: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= +Error\ while\ uploading=\u054d\u056d\u0561\u056c \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u054d\u056d\u0561\u056c \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\: \u057a\u0561\u056f\u0561\u057d\u0578\u0572 '{0}' \u056f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0561\u0575\u056b \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580 #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= +Error\ while\ verifying=\u054d\u056d\u0561\u056c \u057d\u057f\u0578\u0582\u0563\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 #: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= +Error\ while\ verifying/uploading=\u054d\u056d\u0561\u056c \u057d\u057f\u0578\u0582\u0563\u0574\u0561\u0576/\u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 #: Preferences.java:93 Estonian=\u0537\u057d\u057f\u0578\u0576\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=\u0537\u057d\u057f\u0578\u0576\u0565\u0580\u0565\u0576 (\u0537\u057d\u057f\u0578\u0576\u056b\u0561) #: Editor.java:516 Examples=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580 #: ../../../../../app/src/processing/app/Base.java:1244 -!Examples\ from\ Custom\ Libraries= +Examples\ from\ Custom\ Libraries=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580 \u0570\u0561\u0580\u0574\u0561\u0580\u0565\u0581\u057e\u0561\u056e \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b\u0581 #: ../../../../../app/src/processing/app/Base.java:1222 -!Examples\ from\ Libraries= +Examples\ from\ Libraries=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0581 #: ../../../../../app/src/processing/app/Editor.java:753 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0531\u0580\u057f\u0561\u0570\u0561\u0576\u0578\u0582\u0574\u0576 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u0581, \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u057a\u0565\u057f\u0584 \u0567 \u0561\u057c\u0561\u057b\u056b\u0576 \u0570\u0565\u0580\u0569\u056b\u0576 \u057a\u0561\u0570\u057e\u0565\u0576\: #: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= +Export\ compiled\ Binary=\u0531\u0580\u057f\u0561\u0570\u0561\u0576\u0565\u056c \u056f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u057e\u0561\u056e \u0562\u056b\u0576\u0561\u0580\u0568 #: ../../../processing/app/Base.java:416 #, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= +Failed\ to\ open\ sketch\:\ "{0}"=\u0541\u0561\u056d\u0578\u0572\u057e\u0565\u0581 \u0562\u0561\u0581\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: "{0}" #: Editor.java:491 File=\u0546\u056b\u0577\u0584 #: Preferences.java:94 -!Filipino= +Filipino=\u0556\u056b\u056c\u056b\u057a\u056b\u0576\u0565\u0580\u0565\u0576 #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= +Filter\ your\ search...=\u0556\u056b\u056c\u057f\u0580\u0565\u056c \u0571\u0565\u0580 \u0578\u0580\u0578\u0576\u0578\u0582\u0574\u0568 #: FindReplace.java:124 FindReplace.java:127 Find=\u0533\u057f\u0576\u0565\u056c @@ -687,27 +693,27 @@ Find\ Next=\u0533\u057f\u0576\u0565\u056c \u0574\u0575\u0578\u0582\u057d\u0568 Find\ Previous=\u0533\u057f\u0576\u0565\u056c \u0576\u0561\u056d\u056f\u056b\u0576\u0568 #: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= +Find\ in\ Reference=\u0553\u0576\u057f\u0580\u0565\u056c \u0570\u0572\u0578\u0582\u0574\u0576\u0565\u0580\u0578\u0582\u0574 #: Editor.java:1234 Find...=\u0533\u057f\u0576\u0565\u056c\u2024\u2024\u2024 #: FindReplace.java:80 -!Find\:= +Find\:=\u0533\u057f\u0576\u0565\u056c\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=\u0556\u056b\u0576\u0576\u0565\u0580\u0565\u0576 #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= +Fix\ Encoding\ &\ Reload=\u0548\u0582\u0572\u0572\u0565\u056c \u056f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568 \u0565\u0582 \u057e\u0565\u0580\u0561\u0562\u0565\u057c\u0576\u0565\u056c #: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\u0578\u0582 \u0574\u0561\u057d\u056b\u0576 \u056b\u0576\u0586\u0578\u0580\u0574\u0561\u0581\u056b\u0561\u0575\u056b \u0570\u0561\u0574\u0561\u0580 \u057f\u0565\u057d\: http\://www.arduino.cc/en/Guide/Libraries\n #: ../../../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}=\u054d\u057f\u056b\u057a\u0578\u0572\u0561\u056f\u0561\u0576 \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0578\u0582\u0574 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e 1200bps open/close {0}-\u056b \u057e\u0580\u0561 #: Preferences.java:95 French=\u0556\u0580\u0561\u0576\u057d\u0565\u0580\u0565\u0576 @@ -719,85 +725,85 @@ Frequently\ Asked\ Questions=\u0540\u0561\u0573\u0561\u056d \u057f\u0580\u057e\u Galician=\u0533\u0561\u056c\u056b\u057d\u0565\u0580\u0565\u0576 #: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= +Galician\ (Spain)=\u0533\u0561\u056c\u056b\u057d\u0565\u0580\u0565\u0576 (\u053b\u057d\u057a\u0561\u0576\u056b\u0561) #: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= +Galileo\ Help=\u0533\u0561\u056c\u056b\u056c\u0565\u0578\u056b \u0585\u0563\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576 #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=\u054e\u0580\u0561\u0581\u0565\u0580\u0565\u0576 #: Preferences.java:97 German=\u0533\u0565\u0580\u0574\u0561\u0576\u0565\u0580\u0565\u0576 #: Editor.java:1054 -!Getting\ Started= +Getting\ Started=\u053b\u0576\u0579\u056b\u0581 \u057d\u056f\u057d\u0565\u056c #: ../../../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.=\u0533\u056c\u0578\u0562\u0561\u056c \u0583\u0578\u0583\u0578\u056d\u0561\u056f\u0561\u0576\u0576\u0565\u0580\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0565\u0576 \u0564\u056b\u0576\u0561\u0574\u056b\u056f \u0570\u056b\u0577\u0578\u0572\u0578\u0582\u0569\u0575\u0561\u0576 {0} \u0562\u0561\u0575\u0569 ({2}%%), \u0569\u0578\u0572\u0576\u0565\u056c\u0578\u057e {3} \u0562\u0561\u0575\u0581 \u056c\u0578\u056f\u0561\u056c \u0583\u0578\u0583\u0578\u056d\u0561\u056f\u0561\u0576\u0576\u0565\u0580\u056b\u0576\: \u0531\u057c\u0561\u057e\u0565\u056c\u0561\u0563\u0578\u0582\u0575\u0576\u0568 {1} \u0562\u0561\u0575\u0569 \u0567\: #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0533\u056c\u0578\u0562\u0561\u056c \u0583\u0578\u0583\u0578\u056d\u0561\u056f\u0561\u0576\u0576\u0565\u0580\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0565\u0576 \u0564\u056b\u0576\u0561\u0574\u056b\u056f \u0570\u056b\u0577\u0578\u0572\u0578\u0582\u0569\u0575\u0561\u0576 {0} \u0562\u0561\u0575\u0569\: #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=\u0531\u0576\u0581\u0576\u0565\u056c \u0564\u0565\u057a\u056b \u057f\u0578\u0572 #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=\u0531\u0576\u0581\u0576\u0565\u056c \u0564\u0565\u057a\u056b \u057f\u0578\u0572... #: Preferences.java:98 Greek=\u0540\u0578\u0582\u0576\u0561\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=\u0535\u0583\u0580\u0561\u0565\u0580\u0565\u0576 #: Editor.java:1015 Help=\u0555\u0563\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576 #: Preferences.java:99 -!Hindi= +Hindi=\u0540\u056b\u0576\u0564\u056b #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u0579\u056b \u0561\u0576\u0578\u0582\u0576\u0568\: #: 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?=\u053b\u0576\u0579 \u0565\u0584 \u056f\u0561\u0580\u056e\u0578\u0582\u0574 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u056c\u0578\u0582 \u0574\u0561\u057d\u056b\u0576,\n\u0561\u0575\u0576 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c\u0578\u0582\u0581 \u0561\u057c\u0561\u057b? #: Sketch.java:882 -!How\ very\ Borges\ of\ you= +How\ very\ Borges\ of\ you=How very Borges of you #: Preferences.java:100 Hungarian=\u0540\u0578\u0582\u0576\u0563\u0561\u0580\u0565\u0580\u0565\u0576 #: FindReplace.java:96 -!Ignore\ Case= +Ignore\ Case=\u0531\u0576\u057f\u0565\u057d\u0565\u056c \u0574\u0565\u056e\u0561\u057f\u0561\u057c/\u0583\u0578\u0584\u0580\u0561\u057f\u0561\u057c\u0568 #: Base.java:1058 -!Ignoring\ bad\ library\ name= +Ignoring\ bad\ library\ name=\u0531\u0576\u057f\u0565\u057d\u057e\u0578\u0582\u0574 \u0567 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b \u057e\u0561\u057f \u0561\u0576\u057e\u0561\u0576\u0578\u0582\u0574\u0568 #: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= +Ignoring\ sketch\ with\ bad\ name=\u0531\u0576\u057f\u0565\u057d\u057e\u0578\u0582\u0574 \u0567 \u0563\u056e\u0561\u0563\u0580\u056b \u057e\u0561\u057f \u0561\u0576\u057e\u0561\u0576\u0578\u0582\u0574\u0568 #: ../../../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?=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578 1.0-\u0578\u0582\u0574 \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\u0568 \u0583\u0578\u056d\u057e\u0565\u056c \u0567\n.pde-\u056b\u0581 .ino-\u056b\: \u0546\u0578\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u0568 (\u0576\u0565\u0580\u0561\u057c\u0575\u0561\u056c \u0576\u0580\u0561\u0576\u0584 \u0578\u0580\u0578\u0576\u0584 \u057d\u057f\u0565\u0572\u056e\u057e\u0565\u056c \u0565\u0576 \u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c-\u0548\u0580\u057a\u0565\u057d -\u0578\u057e) \u056f\u0585\u0563\u0580\u0561\u0563\u0578\u0580\u056e\u0565\u0576 \u0576\u0578\u0580 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\u0568\: \u0531\u0580\u0564\u0565\u0576\n\u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u0565\u0581\u0578\u0572 \u0563\u0581\u0561\u0563\u0580\u0565\u0580\u0568 \u056f\u0569\u0561\u0580\u0574\u0561\u0581\u057e\u0565\u0576 \u0576\u0578\u0580 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0574\u0561\u0576 \n\u057a\u0561\u0570\u057a\u0561\u0576\u0574\u0561\u0576 \u0564\u0565\u057a\u0584\u0578\u0582\u0574, \u057d\u0561\u056f\u0561\u0575\u0576 \u0564\u0578\u0582\u0584 \u056f\u0561\u0580\u0578\u0572 \u0565\u0584 \u0561\u0576\u057b\u0561\u057f\u0565\u056c \u0561\u0575\u0576 \u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u056b \u0564\u056b\u0561\u056c\u0578\u0563\u0578\u0582\u0574\:\n\n\u054a\u0561\u0570\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0565\u0582 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\u0568? #: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= +Include\ Library=\u0546\u0565\u0580\u0561\u057c\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=IDE-\u056b \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u0561\u0564\u0580\u0574\u0561\u0576 \u057a\u0561\u0576\u0561\u056f #: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= +Increase\ Indent=\u0544\u0565\u056e\u0561\u0581\u0576\u0565\u056c \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568 #: Preferences.java:101 Indonesian=\u053b\u0576\u0564\u0578\u0576\u0565\u0566\u0565\u0580\u0565\u0576 #: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= +Initializing\ packages...=\u0553\u0561\u0569\u0565\u0569\u0576\u0565\u0580\u056b \u056b\u0576\u056b\u0581\u056b\u0561\u056c\u056b\u0566\u0561\u0581\u056b\u0561 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -805,36 +811,36 @@ Indonesian=\u053b\u0576\u0564\u0578\u0576\u0565\u0566\u0565\u0580\u0565\u0576 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=\u054f\u0565\u0572\u0561\u0564\u0580\u0578\u0582\u0574\u0568 \u0561\u057e\u0561\u0580\u057f\u057e\u0565\u0581\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= +Installing\ boards...=\u0540\u0561\u0580\u057f\u0561\u056f\u0576\u0565\u0580\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0582\u0574 \u0565\u0576... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0582\u0574 \u0567 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0582\u0574 \u0565\u0576 \u0563\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580\u0568 ({0}/{1})... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0582\u0574 \u0567... #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=\u054d\u056d\u0561\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0567 \u0570\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c {0}-\u0578\u0582\u0574\: {1} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format -!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=\u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u0574\u0565\u057b\u0562\u0565\u0580\u0578\u0582\u0574\: \u0553\u0561\u056f\u0574\u0561\u0576 [{0}] \u0576\u0577\u0561\u0576\u0568 \u0579\u056b \u0570\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c\: #: Preferences.java:102 Italian=\u053b\u057f\u0561\u056c\u0565\u0580\u0565\u0576 @@ -849,189 +855,189 @@ Korean=\u053f\u0578\u0580\u0565\u0565\u0580\u0565\u0576 Latvian=\u053c\u0561\u057f\u057e\u0565\u0580\u0565\u0576 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579 #: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0561\u057e\u0565\u056c\u0561\u0581\u057e\u0565\u0581 \u0571\u0565\u0580 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0576. \u054d\u057f\u0578\u0582\u0563\u0565\u0584 "\u0546\u0565\u0580\u0561\u057c\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576" \u0574\u0565\u0576\u0575\u0578\u0582\u0576 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 -!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c 'src' \u0587 'utility' \u057a\u0561\u0576\u0561\u056f\u0576\u0565\u0580\u0568\: #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= +Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0561\u0580\u0564\u0565\u0576 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e \u0567\: {0} \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=\u054f\u0578\u0572 \u0570\u0561\u0574\u0561\u0580\: #: Preferences.java:106 Lithuaninan=\u053c\u056b\u057f\u057e\u0561\u0576\u0565\u0580\u0565\u0576 #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=\u053f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0561\u0575\u056b \u0562\u0565\u057c\u0576\u0578\u0582\u0574 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format -!Looking\ for\ recipes\ like\ {0}*{1}= +Looking\ for\ recipes\ like\ {0}*{1}=\u0553\u0576\u057f\u0580\u057e\u0578\u0582\u0574 \u0565\u0576 {0}*{1}-\u056b\u0576 \u0576\u0574\u0561\u0576 \u0562\u0561\u0572\u0561\u0564\u0580\u0561\u0574\u0561\u057d\u0565\u0580 #: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= +Low\ memory\ available,\ stability\ problems\ may\ occur.=\u0554\u056b\u0579 \u0570\u056b\u0577\u0578\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0567 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b, \u057d\u057f\u0561\u0562\u056b\u056c\u0578\u0582\u0569\u0575\u0561\u0576 \u056d\u0576\u0564\u056b\u0580\u0576\u0565\u0580 \u056f\u0561\u0580\u0578\u0572 \u0565\u0576 \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0576\u0561\u056c\: #: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= +Manage\ Libraries...=\u053f\u0561\u057c\u0561\u057e\u0561\u0580\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u0568... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=\u0531\u0576\u0570\u0561\u057f\u0561\u056f\u0561\u0576 \u057a\u0580\u0578\u0584\u057d\u056b\u056b \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574 #: Preferences.java:107 -!Marathi= +Marathi=\u0544\u0561\u0580\u0561\u0569\u0565\u0580\u0565\u0576 #: Base.java:2112 Message=\u0540\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format -!Missing\ '{0}'\ from\ library\ in\ {1}= +Missing\ '{0}'\ from\ library\ in\ {1}=\u054a\u0561\u056f\u0561\u057d\u0578\u0572 '{0}' \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0581 {1}-\u0578\u0582\u0574 #: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= +Mode\ not\ supported=\u054c\u0565\u056a\u056b\u0574\u0568 \u0579\u056b \u0561\u057a\u0561\u0570\u0578\u057e\u057e\u0578\u0582\u0574 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=\u0531\u057e\u0565\u056c\u056b\u0576 #: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0531\u057e\u0565\u056c \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580 \u056f\u0561\u0580\u0578\u0572 \u0565\u0576 \u056d\u0574\u0562\u0561\u0563\u0580\u057e\u0565\u056c \u0561\u0576\u0574\u056b\u057b\u0561\u057a\u0565\u057d \u0586\u0561\u0575\u056c\u0578\u0582\u0574 #: Editor.java:2156 Moving=\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c #: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= +Multiple\ files\ not\ supported=\u0532\u0561\u0566\u0574\u0561\u056f\u056b \u0586\u0561\u0575\u056c\u0565\u0580\u0568 \u0579\u0565\u0576 \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574 #: ../../../processing/app/debug/Compiler.java:520 #, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= +Multiple\ libraries\ were\ found\ for\ "{0}"=\u0532\u0561\u0566\u0574\u0561\u056f\u056b \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580 \u0565\u0576 \u0570\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c "{0}"-\u056b \u0570\u0561\u0574\u0561\u0580 #: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= +Must\ specify\ exactly\ one\ sketch\ file=\u054a\u0565\u057f\u0584 \u0567 \u0576\u0577\u0565\u056c \u0574\u056b\u0561\u0575\u0576 \u0574\u0565\u056f \u0563\u056e\u0561\u0563\u0580\u056b \u0586\u0561\u0575\u056c #: Sketch.java:282 -!Name\ for\ new\ file\:= +Name\ for\ new\ file\:=\u0546\u0578\u0580 \u0561\u0576\u057e\u0561\u0576\u0578\u0582\u0574 \u0586\u0561\u0575\u056c\u056b \u0570\u0561\u0574\u0561\u0580\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=\u0546\u0565\u057a\u0561\u056c\u0565\u0580\u0565\u0576 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=\u0551\u0561\u0576\u0581 #: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= +Network\ ports=\u0551\u0561\u0576\u0581\u0561\u0575\u056b\u0576 \u057a\u0578\u0580\u057f\u0565\u0580 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=\u0551\u0561\u0576\u0581\u0561\u0575\u056b\u0576 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e \u056e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572\u0568 \u0579\u056b \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574 #: EditorToolbar.java:41 Editor.java:493 New=\u0546\u0578\u0580 #: EditorHeader.java:292 -!New\ Tab= +New\ Tab=\u0546\u0578\u0580 \u057f\u0561\u0562 #: SerialMonitor.java:112 -!Newline= +Newline=\u0576\u0578\u0580 \u057f\u0578\u0572 #: EditorHeader.java:340 -!Next\ Tab= +Next\ Tab=\u0540\u0561\u057b\u0578\u0580\u0564 \u057f\u0561\u0562 #: Preferences.java:78 UpdateCheck.java:108 No=\u0548\u0579 #: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= +No\ authorization\ data\ found=\u053c\u056b\u0561\u0566\u0578\u0580\u0574\u0561\u0576 \u057f\u057e\u0575\u0561\u056c\u0576\u0565\u0580 \u0579\u0565\u0576 \u0563\u057f\u0576\u057e\u0565\u056c #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= +No\ changes\ necessary\ for\ Auto\ Format.=\u0531\u057e\u057f\u0578\u0574\u0561\u057f \u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0574\u0561\u0576 \u0570\u0561\u0574\u0561\u057c \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580 \u0570\u0561\u0580\u056f\u0561\u057e\u0578\u0580 \u0579\u0565\u0576\: #: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= +No\ command\ line\ parameters\ found=\u0540\u0580\u0561\u0574\u0561\u0576\u056b \u057f\u0578\u0572\u056b \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580\u0565\u0580\u0568 \u0579\u0565\u0576 \u0563\u057f\u0576\u057e\u0565\u056c #: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= +No\ compiled\ sketch\ found=\u053f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u057e\u0561\u056e \u0563\u056e\u0561\u0563\u056b\u0580 \u0579\u056b \u0563\u057f\u0576\u057e\u0565\u056c #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=\u0533\u056e\u0561\u0563\u0580\u056b\u0576 \u0586\u0561\u0575\u056c \u0579\u056b \u0561\u057e\u0565\u056c\u0561\u0581\u057e\u0565\u056c\: #: Platform.java:167 -!No\ launcher\ available= +No\ launcher\ available=\u0533\u0578\u0580\u056e\u0561\u0580\u056f\u056b\u0579\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567 #: SerialMonitor.java:112 -!No\ line\ ending= +No\ line\ ending=\u0549\u056f\u0561 \u057f\u0578\u0572\u056b \u057e\u0565\u0580\u057b\u0561\u057e\u0578\u0580\u0578\u0582\u0574 #: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= +No\ parameters=\u054a\u0561\u0580\u0561\u0574\u0565\u057f\u0580\u0565\u0580\u0568 \u0579\u056f\u0561\u0576 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=\u054a\u0580\u0578\u0584\u057d\u056b \u0579\u056f\u0561 #: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0548\u0579 \u056b\u0580\u0578\u0584, \u056a\u0561\u0574\u0561\u0576\u0561\u056f\u0576 \u0567 \u0585\u0564\u0561\u0583\u0578\u056d\u057e\u0565\u056c\u0578\u0582 #: Editor.java:1872 #, java-format -!No\ reference\ available\ for\ "{0}"= +No\ reference\ available\ for\ "{0}"="{0}"-\u056b \u0570\u0561\u0574\u0561\u0580 \u0570\u0572\u0578\u0582\u0574 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567 #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= +No\ sketch=\u0563\u056e\u0561\u0563\u056b\u0580 \u0579\u056f\u0561 #: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= +No\ sketchbook=\u0533\u056e\u0561\u0563\u0580\u056b \u0563\u056b\u0580\u0584 \u0579\u056f\u0561 #: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= +No\ valid\ code\ files\ found=\u054e\u0561\u057e\u0565\u0580 \u056f\u0578\u0564\u056b \u0586\u0561\u0575\u056c\u0565\u0580 \u0579\u056f\u0561\u0576 #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u054e\u0561\u057e\u0565\u0580 \u057d\u0561\u0580\u0584\u0561\u0575\u056b\u0576 \u057d\u0561\u0570\u0574\u0561\u0576\u0578\u0582\u0574\u0576\u0565\u0580 {0} \u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574 \u0579\u056f\u0561\u0576\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= +None=\u0548\u0579 \u0574\u0565\u056f\u0568 #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= +Norwegian\ Bokm\u00e5l=\u0546\u0578\u0580\u057e\u0565\u0563\u0565\u0580\u0565\u0576 #: ../../../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.=\u0548\u0579 \u0562\u0561\u057e\u0561\u0580\u0561\u0580 \u0570\u056b\u0577\u0578\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576; \u057f\u0565\u057d 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 OK=\u053c\u0561\u057e #: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= +One\ file\ added\ to\ the\ sketch.=\u0544\u0565\u056f \u0586\u0561\u0575\u056c \u0561\u057e\u0565\u056c\u0561\u0581\u057e\u0565\u0581 \u0563\u056e\u0561\u0563\u0580\u056b\u0576\: #: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=\u0544\u056b\u0561\u0575\u0576 --verify, --upload \u056f\u0561\u0574 --get-pref \u0565\u0576 \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574 #: EditorToolbar.java:41 Open=\u0532\u0561\u0581\u0565\u056c #: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= +Open\ Recent=\u0532\u0561\u0581\u0565\u056c \u057e\u0565\u0580\u057b\u056b\u0576\u0576\u0565\u0580\u056b\u0581 #: Editor.java:2688 -!Open\ URL= +Open\ URL=\u0532\u0561\u0581\u0565\u056c URL #: Base.java:636 -!Open\ an\ Arduino\ sketch...= +Open\ an\ Arduino\ sketch...=\u0532\u0561\u0581\u0565\u056c \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u0563\u056e\u0561\u0563\u056b\u0580... #: Base.java:903 Editor.java:501 Open...=\u0532\u0561\u0581\u0565\u056c\u2024\u2024\u2024 #: Editor.java:563 -!Page\ Setup= +Page\ Setup=\u0537\u057b\u056b \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574 #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=\u0533\u0561\u0572\u057f\u0576\u0561\u0562\u0561\u057c\: #: Editor.java:1189 Editor.java:2731 Paste=\u0553\u0561\u056f\u0581\u0576\u0565\u056c @@ -1040,126 +1046,126 @@ Paste=\u0553\u0561\u056f\u0581\u0576\u0565\u056c Persian=\u054a\u0561\u0580\u057d\u056f\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= +Persian\ (Iran)=\u054a\u0561\u0580\u057d\u056f\u0565\u0580\u0565\u0576 (\u053b\u0580\u0561\u0576) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format -!Platform\ {0}\ (package\ {1})\ is\ unknown= +Platform\ {0}\ (package\ {1})\ is\ unknown=\u0531\u0576\u0570\u0561\u0575\u057f \u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574 {0} ({1} \u0583\u0561\u0569\u0565\u0569) #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= +Please\ confirm\ boards\ deletion=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0574 \u0570\u0561\u057d\u057f\u0561\u057f\u0565\u0584 \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u057b\u0576\u057b\u0578\u0582\u0574\u0568 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= +Please\ confirm\ library\ deletion=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0574 \u0570\u0561\u057d\u057f\u0561\u057f\u0565\u0584 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b \u057b\u0576\u057b\u0578\u0582\u0574\u0568 #: 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.=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0576\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u0584 SPI \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0533\u056e\u0561\u0563\u056b\u0580 > \u0546\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581\: #: ../../../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.=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0576\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u0584 Wire \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0533\u056e\u0561\u0563\u056b\u0580 > \u0546\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581\: #: ../../../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=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0576\u0577\u0565\u056c \u056e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572\u0568 \u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580->\u053e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572 \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581 #: Preferences.java:110 Polish=\u053c\u0565\u0570\u0565\u0580\u0565\u0576 #: ../../../processing/app/Editor.java:718 -!Port= +Port=\u054a\u0578\u0580\u057f #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=\u054a\u0578\u0580\u057f\u056b \u0570\u0561\u0574\u0561\u0580\: #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=\u054a\u0578\u0580\u057f\u0578\u0582\u0563\u0561\u056c\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=\u054a\u0578\u0580\u057f\u0578\u0582\u0563\u0561\u056c\u0565\u0580\u0565\u0576 (\u0532\u0580\u0561\u0566\u056b\u056c\u056b\u0561) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=\u054a\u0578\u0580\u057f\u0578\u0582\u0563\u0561\u056c\u0565\u0580\u0565\u0576 (\u054a\u0578\u0580\u057f\u0578\u0582\u0563\u0561\u056c\u056b\u0561) #: Preferences.java:295 Editor.java:583 -!Preferences= +Preferences=\u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580 #: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= +Preparing\ boards...=\u0540\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u0568 \u0576\u0561\u056d\u0561\u057a\u0561\u057f\u0580\u0561\u057d\u057f\u057e\u0578\u0582\u0574 \u0565\u0576 #: FindReplace.java:123 FindReplace.java:128 Previous=\u0546\u0561\u056d\u056f\u056b\u0576 #: EditorHeader.java:326 -!Previous\ Tab= +Previous\ Tab=\u0546\u0561\u056d\u0578\u0580\u0564 \u057f\u0561\u0562 #: Editor.java:571 -!Print= +Print=\u054f\u057a\u0565\u056c #: Editor.java:2571 -!Printing\ canceled.= +Printing\ canceled.=\u054f\u057a\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0561\u056e \u0567 #: Editor.java:2547 -!Printing...= +Printing...=\u054f\u057a\u057e\u0578\u0582\u0574 \u0567 #: Base.java:1957 -!Problem\ Opening\ Folder= +Problem\ Opening\ Folder=\u053d\u0576\u0564\u056b\u0580 \u054a\u0561\u0576\u0561\u056f\u0568 \u0532\u0561\u0581\u0565\u056c\u056b\u057d #: Base.java:1933 -!Problem\ Opening\ URL= +Problem\ Opening\ URL=\u053d\u0576\u0564\u056b\u0580 URL-\u0568 \u0562\u0561\u0581\u0565\u056c\u056b\u057d #: Base.java:227 -!Problem\ Setting\ the\ Platform= +Problem\ Setting\ the\ Platform=\u053d\u0576\u0564\u056b\u0580 \u054a\u056c\u0561\u057f\u0586\u0578\u0580\u0574\u0568 \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0565\u056c\u056b\u057d #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=\u053d\u0576\u0564\u056b\u0580 \u0570\u0561\u0580\u0569\u0561\u056f\u056b /www/sd \u057a\u0561\u0576\u0561\u056f\u0568 \u0574\u0578\u0582\u057f\u0584 \u0563\u0578\u0580\u056e\u0565\u056c\u056b\u057d #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u053d\u0576\u0564\u056b\u0580 \u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574 \u0586\u0561\u0575\u056c\u0565\u0580 \u0574\u0578\u0582\u057f\u0584 \u0563\u0578\u0580\u056e\u0565\u056c\u056b\u057d #: Base.java:1673 -!Problem\ getting\ data\ folder= +Problem\ getting\ data\ folder=\u053d\u0576\u0564\u056b\u0580 \u057f\u057e\u0575\u0561\u056c\u0576\u0565\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u056f\u0561\u0580\u0564\u0561\u056c\u056b\u057d #: 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.=\u053d\u0576\u0564\u056b\u0580 \u0570\u0561\u0580\u0569\u0561\u056f \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c\u056b\u057d\: \u0531\u057c\u0561\u057b\u0561\u0580\u056f\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580 \u057f\u0565\u057d http\://www.arduino.cc/en/Guide/Troubleshooting\#upload #: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= +Problem\ with\ rename=\u053d\u0576\u0564\u056b\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0574\u0561\u0576 \u0570\u0565\u057f #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=\u054a\u0580\u0578\u0581\u0565\u057d\u0578\u0580 #: Editor.java:704 Programmer=\u053e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format -!Progress\ {0}= +Progress\ {0}=\u054a\u0580\u0578\u0563\u0580\u0565\u057d {0} #: Base.java:783 Editor.java:593 Quit=\u053c\u0584\u0565\u056c #: ../../../../../app/src/processing/app/Base.java:1233 -!RETIRED= +RETIRED=RETIRED #: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= +Redo=\u054e\u0565\u0580\u0561\u0564\u0561\u0580\u0571\u0576\u0565\u056c #: Editor.java:1078 -!Reference= +Reference=\u0540\u0572\u0578\u0582\u0574 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= +Remove=\u054b\u0576\u057b\u0565\u056c #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format -!Removing\ library\:\ {0}= +Removing\ library\:\ {0}=\u054b\u0576\u057b\u057e\u0578\u0582\u0574 \u0567 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568\: {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= +Removing...=\u054b\u0576\u057b\u057e\u0578\u0582\u0574 \u0565\u0576... #: EditorHeader.java:300 -!Rename= +Rename=\u054e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 Replace=\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c @@ -1172,24 +1178,24 @@ Replace\ All=\u0532\u0578\u056c\u0578\u0580\u0568 \u0583\u0578\u056d\u0561\u0580 #: Sketch.java:1043 #, java-format -!Replace\ the\ existing\ version\ of\ {0}?= +Replace\ the\ existing\ version\ of\ {0}?=\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c {0}-\u056b \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u0565\u0581\u0578\u0572 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568? #: FindReplace.java:81 -!Replace\ with\:= +Replace\ with\:=\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c\: #: Preferences.java:113 -!Romanian= +Romanian=\u054c\u0578\u0582\u0574\u056b\u0576\u0565\u0580\u0565\u0576 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format -!Running\ recipe\:\ {0}= +Running\ recipe\:\ {0}=\u0531\u0577\u056d\u0561\u057f\u0578\u0572 \u0562\u0561\u0572\u0561\u0564\u0580\u0561\u057f\u0578\u0574\u057d\: {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format -!Running\:\ {0}= +Running\:\ {0}=\u0531\u0577\u056d\u0561\u057f\u0578\u0572\: {0} #: Preferences.java:114 -!Russian= +Russian=\u054c\u0578\u0582\u057d\u0565\u0580\u0565\u0576 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -1199,631 +1205,631 @@ Save=\u0540\u056b\u0577\u0565\u056c Save\ As...=\u0540\u056b\u0577\u0565\u056c \u0578\u0580\u057a\u0565\u057d\u2024\u2024\u2024 #: Editor.java:2317 -!Save\ Canceled.= +Save\ Canceled.=\u0540\u056b\u0577\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u0581\: #: Editor.java:2020 #, java-format -!Save\ changes\ to\ "{0}"?\ \ = +Save\ changes\ to\ "{0}"?\ \ =\u0540\u056b\u0577\u0565\u056c "{0}"-\u056b \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568? #: Sketch.java:825 -!Save\ sketch\ folder\ as...= +Save\ sketch\ folder\ as...=\u054a\u0561\u0570\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u0578\u0580\u057a\u0565\u057d... #: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= +Save\ when\ verifying\ or\ uploading=\u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0565\u0580\u0562 \u057d\u057f\u0578\u0582\u0563\u057e\u0578\u0582\u0574 \u0567 \u056f\u0561\u0574 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 #: 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= +Search\ all\ Sketch\ Tabs=\u0553\u0576\u057f\u0580\u0565\u056c \u0562\u0578\u056c\u0578\u0580 \u0533\u056e\u0561\u0563\u0580\u056b \u054f\u0561\u0562\u0565\u0580\u0568 #: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0546\u0577\u0565\u056c (\u056f\u0561\u0574 \u057d\u057f\u0565\u0572\u056e\u0565\u056c \u0576\u0578\u0580) \u057a\u0561\u0576\u0561\u056f \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580... #: Editor.java:1198 Editor.java:2739 Select\ All=\u0538\u0576\u057f\u0580\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568 #: 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=\u0546\u0577\u0565\u056c zip \u0586\u0561\u0575\u056c \u056f\u0561\u0574 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0572 \u057a\u0561\u0576\u0561\u056f, \u0578\u0580\u0568 \u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c #: 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=\u0546\u0577\u0565\u056c \u0576\u056f\u0561\u0580 \u056f\u0561\u0574 \u0561\u0575\u056c \u057f\u057e\u0575\u0561\u056c\u0576\u0565\u0580\u056b \u0586\u0561\u0575\u056c \u0563\u056e\u0561\u0563\u0580\u0578\u0582\u0574 \u057a\u0561\u057f\u0573\u0565\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580 #: Preferences.java:330 -!Select\ new\ sketchbook\ location= +Select\ new\ sketchbook\ location=\u0546\u0577\u0565\u056c \u0576\u0578\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057f\u0565\u0572 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= +Select\ version=\u0546\u0577\u0565\u056c \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568 #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=\u0546\u0577\u057e\u0561\u056e \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u056f\u0561\u056d\u057e\u0561\u056e \u0567 '{0}'-\u056b \u0574\u056b\u057b\u0578\u0582\u056f\u056b\u0581 (\u0579\u056b \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e) #: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= +Selected\ board\ is\ not\ available=\u0546\u0577\u057e\u0561\u056e \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567 #: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= +Selected\ library\ is\ not\ available=\u0546\u0577\u057e\u0561\u056e \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567 #: SerialMonitor.java:93 Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= +Serial\ Monitor=\u054d\u0565\u0580\u056b\u0561\u056c \u0544\u0578\u0576\u056b\u057f\u0578\u0580 #: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= +Serial\ Plotter=\u054d\u0565\u0580\u056b\u0561\u056c \u0531\u0580\u057f\u0561\u057a\u0561\u057f\u056f\u0565\u0580\u056b\u0579 #: 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?=''{0}'' \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0568 \u0579\u056b \u0563\u057f\u0576\u057e\u0561\u056e\: \u0534\u0578\u0582\u0584 \u0568\u0576\u057f\u0580\u0565\u056c \u0565\u0584 \u0573\u056b\u0577\u057f \u0585\u0580\u056b\u0576\u0561\u056f\u0568 \u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 > \u054d\u0565\u0580\u056b\u0561\u056c \u054a\u0578\u0580\u057f \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581? #: 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?=''{0}'' \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0568 \u0579\u056b \u0563\u057f\u0576\u057e\u0561\u056e\:\n\u053f\u0580\u056f\u056b\u0576 \u0583\u0578\u0580\u0571\u0565\u056c \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c \u0561\u0575\u056c \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0578\u057e? #: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= +Serial\ ports=\u054d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0565\u0580 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format -!Setting\ build\ path\ to\ {0}= +Setting\ build\ path\ to\ {0}=\u053f\u0561\u057c\u0578\u0582\u0581\u0574\u0561\u0576 \u0573\u0561\u0576\u0561\u057a\u0561\u0580\u0570\u056b \u057f\u0565\u0572\u0561\u0564\u0580\u0578\u0582\u0574 {0}-\u056b #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=\u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580 #: Base.java:1681 -!Settings\ issues= +Settings\ issues=\u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u056b \u056d\u0576\u0564\u056b\u0580\u0576\u0565\u0580 #: Editor.java:641 -!Show\ Sketch\ Folder= +Show\ Sketch\ Folder=\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568 #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0562\u0561\u0566\u0574\u0561\u056f\u056b \u0561\u0580\u057f\u0561\u0570\u0561\u0576\u0578\u0582\u0574\u0568 \u056f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0575\u056b \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 #: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = +Show\ verbose\ output\ during\:\ =\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0562\u0561\u0566\u0574\u0561\u056f\u056b \u0561\u0580\u057f\u0561\u0570\u0561\u0576\u0578\u0582\u0574\u0568 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\: #: Editor.java:607 -!Sketch= +Sketch=\u0533\u056e\u0561\u0563\u056b\u0580 #: Sketch.java:1754 -!Sketch\ Disappeared= +Sketch\ Disappeared=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0561\u0576\u0570\u0565\u057f\u0561\u0581\u0561\u057e #: Base.java:1411 -!Sketch\ Does\ Not\ Exist= +Sketch\ Does\ Not\ Exist=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0578\u0582\u0576\u056b #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= +Sketch\ is\ Read-Only=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0574\u056b\u0561\u0575\u0576 \u056f\u0561\u0580\u0564\u0561\u056c\u0578\u0582 \u0567 #: Sketch.java:294 -!Sketch\ is\ Untitled= +Sketch\ is\ Untitled=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0561\u0576\u057e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 \u0567 #: Sketch.java:720 -!Sketch\ is\ read-only= +Sketch\ is\ read-only=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0574\u056b\u0561\u0575\u0576 \u056f\u0561\u0580\u0564\u0561\u056c\u0578\u0582 \u0567 #: 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.=\u0533\u056e\u0561\u0563\u056b\u0580\u0568 \u0577\u0561\u057f \u0574\u0565\u056e \u0567; \u0579\u0561\u0583\u0568 \u0583\u0578\u0584\u0580\u0561\u0581\u0576\u0565\u056c\u0578\u0582 \u0561\u057c\u0561\u057b\u0561\u0580\u056f\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580 \u057f\u0565\u057d http\://www.arduino.cc/en/Guide/Troubleshooting\#size #: ../../../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.=\u0533\u056e\u0561\u0563\u056b\u0580\u0568 \u056e\u0580\u0561\u0563\u0580\u056b \u057a\u0561\u0570\u0565\u057d\u057f\u0561\u0575\u056b\u0576 \u057f\u0561\u0580\u0561\u056e\u0584\u056b\u0581 \u0585\u0563\u0580\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0567 {0} \u0562\u0561\u0575\u0569 ({2}%%)\: \u0544\u0561\u0584\u057d\u056b\u0574\u0578\u0582\u0574\u0568 {1} \u0562\u0561\u0575\u0569 \u0567\: #: Editor.java:510 -!Sketchbook= +Sketchbook=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u056b\u0580\u0584 #: Base.java:258 -!Sketchbook\ folder\ disappeared= +Sketchbook\ folder\ disappeared=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u056b\u0580\u0584 \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0576\u0570\u0565\u057f\u0561\u0581\u0561\u057e #: Preferences.java:315 -!Sketchbook\ location\:= +Sketchbook\ location\:=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057f\u0565\u0572\u0568 #: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= +Sketchbook\ path\ not\ defined=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u0573\u0561\u0576\u0561\u057a\u0561\u0580\u0570\u0576 \u057d\u0561\u0570\u0574\u0561\u0576\u057e\u0561\u056e \u0579\u0567 #: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= +Slovak=\u054d\u056c\u0578\u057e\u0561\u056f\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=\u054d\u056c\u0578\u057e\u0565\u0576\u0565\u0580\u0565\u0576 #: 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.=\u0548\u0580\u0578\u0577 \u0586\u0561\u0575\u056c\u0565\u0580 \u0576\u0577\u057e\u0561\u056e \u0565\u0576 \u0578\u0580\u057a\u0565\u057d "\u0574\u056b\u0561\u0575\u0576 \u056f\u0561\u0580\u0564\u0561\u056c\u0578\u0582",\n\u0564\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u0584 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0578\u0582\u0580\u056b\u0577 \u057f\u0565\u0572\u0578\u0582\u0574,\n\u0565\u0582 \u0576\u0578\u0580\u056b\u0581 \u056f\u0580\u056f\u0576\u0565\u0584\: #: 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.=\u0548\u0580\u0578\u0577 \u0586\u0561\u0575\u056c\u0565\u0580 \u0576\u0577\u057e\u0561\u056e \u0565\u0576 \u0578\u0580\u057a\u0565\u057d "\u0574\u056b\u0561\u0575\u0576 \u056f\u0561\u0580\u0564\u0561\u056c\u0578\u0582",\n\u0564\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u0584 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0578\u0582\u0580\u056b\u0577 \u057f\u0565\u0572\u0578\u0582\u0574\: #: Sketch.java:457 #, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0546\u0565\u0580\u0578\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576, "{0}" \u0561\u0576\u0578\u0582\u0576\u0578\u057e \u0563\u056e\u0561\u0563\u056b\u0580\u0568 (\u056f\u0561\u0574 \u057a\u0561\u0576\u0561\u056f\u0568) \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u056b\: #: Preferences.java:115 -!Spanish= +Spanish=\u053b\u057d\u057a\u0561\u0576\u0565\u0580\u0565\u0576 #: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= +Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=\u0546\u0577\u057e\u0561\u056e \u057a\u0561\u0576\u0561\u056f\u0568/zip \u0586\u0561\u0575\u056c\u0568 \u057e\u0561\u057e\u0565\u0580 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0579\u056b \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 #: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= +Starting...=\u0544\u056b\u0561\u0576\u0578\u0582\u0574 \u0567... #: Base.java:540 -!Sunshine= +Sunshine=\u0531\u0580\u0565\u0582\u056b \u056c\u0578\u0582\u0575\u057d #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=\u0547\u057e\u0565\u0564\u0565\u0580\u0565\u0576 #: Preferences.java:84 System\ Default=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576 #: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= +Talossan=\u0539\u0561\u056c\u0578\u057d\u0565\u0580\u0565\u0576 #: Preferences.java:116 -!Tamil= +Tamil=\u0539\u0561\u0574\u056b\u056c #: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' \u0570\u056b\u0574\u0561\u0576\u0562\u0561\u057c\u0568 \u0561\u0575\u056c\u0587\u057d \u0579\u056b \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574\: #: ../../../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=--upload \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568 \u0561\u057b\u0561\u056f\u0581\u0578\u0582\u0574 \u0567 \u0574\u056b\u0561\u0575\u0576 \u0574\u0565\u056f \u0586\u0561\u0575\u056c #: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u0581 EthernetClient-\u056b\: #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= +The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=\ IDE-\u0576 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 {0} \u0583\u0561\u0569\u0565\u0569\u056b \u0569\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574, \u057d\u0561\u056f\u0561\u0575\u0576 \u0564\u0578\u0582\u0584 \u0570\u056b\u0576 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0576 \u0565\u0584 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574\n\u0551\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c {0}-\u0568? #: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u0581 EthernetServer-\u056b\: #: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u0581 EthernetUdp-\u056b\: #: 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?="{0}" \u0586\u0561\u0575\u056c\u0568 \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b\n"{1}" \u0561\u0576\u057e\u0561\u0574\u0562 \u057a\u0561\u0576\u0561\u056f\u056b \u0574\u0565\u057b\:\n\u054d\u057f\u0565\u0572\u056e\u0565\u056c \u0561\u0575\u0564 \u057a\u0561\u0576\u0561\u056f\u0568, \u057f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u0586\u0561\u0575\u056c\u0568, \u0565\u0582 \u0577\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0565\u056c? #: 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)="{0}" \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0565\u056c\:\n\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u057a\u0565\u057f\u0584 \u0567 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0565\u0576 \u0570\u056b\u0574\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580 \u0565\u0582 \u0569\u057e\u0565\u0580\:\n(\u0544\u056b\u0561\u0575\u0576 ASCII \u0565\u0582 \u0561\u057c\u0561\u0576\u0581 \u0562\u0561\u0581\u0561\u056f\u0576\u0565\u0580\u056b, \u0565\u0582 \u0561\u0575\u0576 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u057d\u056f\u057d\u057e\u0565\u056c \u0569\u057e\u0578\u057e) #: 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)=\u0540\u056b\u0574\u0576\u0561\u056f\u0561\u0576 \u0586\u0561\u0575\u056c\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\:\n(\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u0561\u0580\u0564\u0565\u0576 \u056a\u0561\u0574\u0561\u0576\u0561\u056f\u0576 \u0567 \u0561\u0576\u0581\u0576\u0565\u056c "\u056b\u0580\u0561\u056f\u0561\u0576" \u056e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0574\u0561\u0576 \u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580\u056b) #: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= +The\ name\ cannot\ start\ with\ a\ period.=\u0531\u0576\u0578\u0582\u0576\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u057d\u056f\u057d\u057e\u0565\u056c \u0562\u0561\u0581\u0561\u056f\u0578\u057e\: #: 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.=\u0546\u0577\u057e\u0561\u056e \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0578\u0582\u0576\u056b\:\n\u0534\u0578\u0582\u0584 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u057a\u0565\u057f\u0584 \u0567 \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0565\u056c \n\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u0574\u0565\u0576\u0575\u0578\u0582\u0576 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580 #: 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}="{0}" \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0565\u056c\:\n\u0533\u056e\u0561\u0563\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u057a\u0565\u057f\u0584 \u0567 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0565\u0576 \u0570\u056b\u0574\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580 \u0565\u0582 \u0569\u057e\u0565\u0580\:\n(\u0544\u056b\u0561\u0575\u0576 ASCII \u0565\u0582 \u0561\u057c\u0561\u0576\u0581 \u0562\u0561\u0581\u0561\u056f\u0576\u0565\u0580\u056b, \u0565\u0582 \u0561\u0575\u0576 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u057d\u056f\u057d\u057e\u0565\u056c \u0569\u057e\u0578\u057e)\n\u0531\u0575\u057d \u0570\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u056b\u0581 \u0561\u0566\u0561\u057f\u057e\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580, \u057b\u0576\u057b\u0565\u0584 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 {1}-\u056b\u0581 #: 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.=\u0533\u056e\u0561\u0563\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0576\u0570\u0565\u057f\u0561\u0581\u0565\u056c \u0567\:\n\u0544\u0565\u0576\u0584 \u056f\u0583\u0578\u0580\u0571\u0565\u0576\u0584 \u057e\u0565\u0580\u0561\u057a\u0561\u0570\u0565\u056c \u0576\u0578\u0582\u0575\u0576 \u057f\u0565\u0572\u0578\u0582\u0574,\n\u057d\u0561\u056f\u0561\u0575\u0576 \u056f\u0578\u0564\u056b\u0581 \u0562\u0561\u0581\u056b \u0561\u0574\u0565\u0576 \u056b\u0576\u0579 \u056f\u056f\u0578\u0580\u056b\: #: ../../../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.=\u0533\u056e\u0561\u0563\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0568 \u057a\u0565\u057f\u0584 \u0567 \u0583\u0578\u0583\u0578\u056d\u057e\u056b\: \u0533\u056e\u0561\u0563\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0568 \u056f\u0561\u0580\u0578\u0572 \u0567 \u0562\u0561\u0572\u056f\u0561\u0581\u0561\u056e \u056c\u056b\u0576\u0565\u056c \u0574\u056b\u0561\u0575\u0576 ASCII \u057f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f\u0576\u0565\u0580\u056b\u0581 \u0565\u0582 \u0569\u057e\u0565\u0580\u056b\u0581 (\u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u057d\u056f\u057d\u057e\u0565\u056c \u0569\u057e\u0578\u057e)\:\n\u0531\u0575\u0576 \u057a\u0565\u057f\u0584 \u0567 \u0576\u0561\u0565\u0582 64 \u057d\u056b\u0574\u057e\u0578\u056c\u056b\u0581 \u057a\u0561\u056f\u0561\u057d \u056c\u056b\u0576\u056b\: #: 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.=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0578\u0582\u0576\u056b\:\n\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u056f\u0561\u0576\u0581\u0576\u056b \u056c\u057c\u0565\u056c\u0575\u0561\u0576 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057f\u0565\u0572\u0561\u0576\u0584\u056b\u0576\n\u0565\u0582 \u056f\u057d\u057f\u0565\u0572\u056e\u056b \u0576\u0578\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057a\u0561\u0576\u0561\u056f \u0565\u0569\u0565 \n\u0561\u0576\u0570\u0580\u0561\u056a\u0565\u0577\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u056f\u0561\: \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u056f\u0564\u0561\u0564\u0561\u0580\u056b \u056b\u0580 \u0574\u0561\u057d\u056b\u0576\n\u0565\u0580\u0580\u0578\u0580\u0564 \u0564\u0565\u0574\u0584\u0578\u057e \u056d\u0578\u057d\u0561\u056c\u0578\u0582\u0581\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= +The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=\u0546\u0577\u057e\u0561\u056e \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0576\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 \u0571\u0565\u0580 IDE-\u056b \u057a\u0561\u057f\u0573\u0565\u0576\u0568\:\n\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0568\u0576\u057f\u0580\u0565\u056c \u0574\u0565\u056f \u0561\u0575\u056c \u057a\u0561\u0576\u0561\u056f \u0571\u0565\u0580 \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0576\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u0570\u0561\u0574\u0561\u0580\: #: 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'.=\u0531\u0575\u057d \u0586\u0561\u0575\u056c\u0568 \u0561\u0580\u0564\u0565\u0576 \u057a\u0561\u057f\u0573\u0565\u0576\u057e\u0565\u056c \u0567\n\u0561\u0575\u0576\u057f\u0565\u0572 \u0578\u0580\u057f\u0565\u0572\u056b\u0581 \u0578\u0564\u0578\u0582\u0584 \u0583\u0578\u0580\u0571\u0578\u0582\u0574 \u0565\u0584 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0561\u0575\u0576\:\n\u0535\u057d \u0578\u0579 \u0574\u056b \u0562\u0561\u0576 \u0579\u0565\u0574 \u0561\u0576\u0578\u0582\u0574\: #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= +This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0576\u0577\u057e\u0561\u056e \u0579\u0567 \u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b \u053f\u0561\u057c\u0561\u057e\u0561\u0580\u0579\u056b \u0581\u0578\u0582\u0581\u0561\u056f\u0578\u0582\u0574\: \u0534\u0578\u0582\u0584 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0565\u0584 \u0578\u0582\u0576\u0565\u0576\u0561 \u0561\u0575\u056c\u0565\u0582\u057d \u0561\u0575\u057d\u057f\u0565\u0572\u056b\u0581 \u057e\u0565\u0580\u0561\u057f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\u0578\u0582\:\n\u054e\u057d\u057f\u0561\u0570 \u0565\u0584, \u0578\u0580 \u0578\u0582\u0566\u0578\u0582\u0574 \u0565\u0584 \u057b\u0576\u057b\u0565\u056c \u0564\u0561? #: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= +This\ report\ would\ have\ more\ information\ with=\u0531\u0575\u057d \u0566\u0565\u056f\u0578\u0582\u0575\u0581\u0568 \u057a\u0565\u057f\u0584 \u0567 \u0561\u057e\u0565\u056c\u056b \u0577\u0561\u057f \u057f\u0565\u0572\u0565\u056f\u0561\u057f\u057e\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u0565\u0576\u0561 #: Base.java:535 -!Time\ for\ a\ Break= +Time\ for\ a\ Break=\u0534\u0561\u0564\u0561\u0580\u056b \u056a\u0561\u0574\u0561\u0576\u0561\u056f\u0576 \u0567 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= +Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.={0} \u0563\u0578\u0580\u056e\u056b\u0584\u0568 \u0571\u0565\u0580 \u0585\u057a\u0565\u0580\u0561\u0581\u056b\u0578\u0576 \u0570\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u0570\u0561\u0574\u0561\u0580 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567\: #: Editor.java:663 Tools=\u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= +Topic=\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 #: Editor.java:1070 -!Troubleshooting= +Troubleshooting=\u053d\u0576\u0564\u056b\u0580\u0576\u0565\u0580\u056b \u056c\u0578\u0582\u056e\u0578\u0582\u0574 #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=\u0539\u0578\u0582\u0580\u0584\u0565\u0580\u0565\u0576 #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= +Type=\u0540\u0561\u057e\u0561\u0584\u0565\u056c #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=\u0540\u0561\u057e\u0561\u0584\u0565\u0584 \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0563\u0561\u0572\u057f\u0576\u0561\u0562\u0561\u057c\u0568 \u057e\u0561\u0570\u0561\u0576\u0561\u056f \u0574\u0578\u0582\u057f\u0584 \u0563\u0578\u0580\u056e\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580 #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=\u0540\u0561\u057e\u0561\u0584\u0565\u0584 \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0563\u0561\u0572\u057f\u0576\u0561\u0562\u0561\u057c\u0568 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580 #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +Ukrainian=\u0548\u0582\u056f\u0580\u0561\u056b\u0576\u0565\u0580\u0565\u0576 #: ../../../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?=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0565\u0580 \u056f\u0561\u057a\u0576\u057e\u0565\u056c\: \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0567 \u056f\u0561\u0574\u0578\u0582\u0580\u057b? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u056f\u0561\u057a\u0576\u057e\u0565\u056c\: \u0576\u0578\u0580\u056b\u0581 \u0565\u0576\u0584 \u0583\u0578\u0580\u0571\u0578\u0582\u0574 #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u056f\u0561\u057a\u0576\u057e\u0565\u056c\: \u057d\u056d\u0561\u056c \u0563\u0561\u0572\u057f\u0576\u0561\u0562\u0561\u057c? #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format -!Unable\ to\ find\ {0}\ in\ {1}= +Unable\ to\ find\ {0}\ in\ {1}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0563\u057f\u0576\u0565\u056c {0}-\u0568 {1}-\u0578\u0582\u0574 #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0562\u0561\u0581\u0565\u056c \u0574\u0578\u0576\u056b\u057f\u0578\u0580\u0568 #: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= +Unable\ to\ open\ serial\ plotter=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0562\u0561\u0581\u0565\u056c \u057d\u0565\u0580\u056b\u0561\u056c \u0561\u0580\u057f\u0561\u057a\u0561\u057f\u056f\u0565\u0580\u056b\u0579\u0568 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= +Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Arduino.cc-\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567, \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0581\u0561\u0576\u0581\u0561\u0575\u056b\u0576 \u056d\u0576\u0564\u056b\u0580\u0576\u0565\u0580\u056b \u057a\u0561\u057f\u0573\u0561\u057c\u0578\u057e\: #: Editor.java:1133 Editor.java:1355 Undo=\u0540\u0565\u057f \u0577\u0580\u057b\u0565\u056c #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -!Unhandled\ type\ {0}\ in\ context\ key\ {1}= +Unhandled\ type\ {0}\ in\ context\ key\ {1}={0} \u0579\u0573\u0561\u0576\u0561\u0573\u057e\u0561\u056e \u057f\u056b\u057a {1} \u0562\u0561\u0576\u0561\u056c\u0578\u0582 \u056f\u0578\u0576\u057f\u0565\u0584\u057d\u057f\u0578\u0582\u0574 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format -!Unknown\ sketch\ file\ extension\:\ {0}= +Unknown\ sketch\ file\ extension\:\ {0}=\u0531\u0576\u0570\u0561\u0575\u057f \u0563\u056e\u0561\u0563\u0580\u056b \u0586\u0561\u0575\u056c\u056b \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\: {0} #: 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=\u0549\u0576\u0577\u057e\u0561\u056e \u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574, \u0563\u0578\u0580\u056e\u0561\u0580\u056f\u056b\u0579\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567\:\nURL-\u0576\u0565\u0580\u056b \u056f\u0561\u0574 \u057a\u0561\u0576\u0561\u056f\u0576\u0565\u0580 \u0562\u0561\u0581\u0578\u0582\u0574\u0568 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580,\n\u0561\u057e\u0565\u056c\u0561\u0581\u0580\u0565\u0584 "launcher\=/path/to/app" \u057f\u0578\u0572\u0568 preferences.txt \u0586\u0561\u0575\u056c\u0578\u0582\u0574 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=\u0539\u0561\u0580\u0561\u0574\u0561\u0581\u0574\u0561\u0576 \u0565\u0576\u0569\u0561\u056f\u0561 #: UpdateCheck.java:111 Update=\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574 #: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u054a\u0561\u0575\u0574\u0561\u0576 \u056a\u0561\u0574\u0561\u056f\u0561\u0576 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0586\u0561\u0575\u056c\u0565\u0580\u0568 \u0576\u0578\u0580 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0574\u0561\u0574\u0562 (.pde -> .ino) #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= +Updating\ list\ of\ installed\ libraries=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580 \u0581\u0578\u0582\u0581\u0561\u056f\u0568 \u0569\u0561\u0580\u0574\u0561\u0581\u057e\u0578\u0582\u0574 \u0567 #: EditorToolbar.java:41 Editor.java:545 Upload=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c #: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= +Upload\ Using\ Programmer=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c \u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e \u053e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572\u0568 #: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= +Upload\ canceled.=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u0581\: #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0561\u056e \u0567 #: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= +Uploading\ to\ I/O\ Board...=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 I/O \u0570\u0561\u0580\u0569\u0561\u056f... #: Sketch.java:1622 Uploading...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u2024\u2024\u2024 #: Editor.java:1269 -!Use\ Selection\ For\ Find= +Use\ Selection\ For\ Find=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c \u0546\u0577\u0578\u0582\u0574\u0568 \u0553\u0576\u057f\u0580\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580 #: Preferences.java:409 -!Use\ external\ editor= +Use\ external\ editor=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c \u0561\u0580\u057f\u0561\u0584\u056b\u0576 \u056d\u0574\u0562\u0561\u0563\u0580\u056b\u0579 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=\u0555\u0563\u057f\u0561\u0576\u0578\u0582\u0576 #: ../../../processing/app/debug/Compiler.java:410 #, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= +Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e {1} \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u056b {0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c \u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574\: {2} {3} #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e {0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c \u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574\: {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e \u0576\u0561\u056d\u056f\u056b\u0576\u0578\u0582\u0574 \u056f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u057e\u0561\u056e \u0586\u0561\u0575\u056c\u0568\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=\u054d\u057f\u0578\u0582\u0563\u0565\u056c #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=\u054d\u057f\u0578\u0582\u0563\u0565\u056c \u056f\u0578\u0564\u0568 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u056b\u0581 \u0570\u0565\u057f\u0578 #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=\u054d\u057f\u0578\u0582\u0563\u0565\u056c/\u053f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u0576\u0565\u056c #: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= +Verifying\ and\ uploading...=\u054d\u057f\u0578\u0582\u0563\u057e\u0578\u0582\u0574 \u0587 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= +Verifying\ archive\ integrity...=\u054d\u057f\u0578\u0582\u0563\u057e\u0578\u0582\u0574 \u0567 \u0561\u0580\u056d\u056b\u057e\u056b \u0561\u0574\u0562\u0578\u0572\u057b\u0561\u056f\u0561\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568 #: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= +Verifying...=\u054d\u057f\u0578\u0582\u0563\u057e\u0578\u0582\u0574 \u0567... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format -!Version\ {0}= +Version\ {0}=\u054f\u0561\u0580\u0562\u0565\u0580\u0561\u056f {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= +Version\ unknown=\u054f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568 \u0573\u0561\u0576\u0561\u0579\u057e\u0561\u056e \u0579\u0567 #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format -!Version\ {0}= +Version\ {0}=\u054f\u0561\u0580\u0562\u0565\u0580\u0561\u056f {0} #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=\u054e\u056b\u0565\u057f\u0576\u0561\u0574\u0565\u0580\u0565\u0576 #: Editor.java:1105 -!Visit\ Arduino.cc= +Visit\ Arduino.cc=\u0531\u0575\u0581\u0565\u056c\u0565\u0584 Arduino.cc #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format -!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=\u0536\u0533\u0548\u0552\u0547\u0531\u0551\u0548\u0552\u0544\: {1} \u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0578\u0582\u0574 '{0}' \u056f\u0561\u057f\u0565\u0563\u0578\u0580\u056b\u0561\u0576 \u057e\u0561\u057e\u0565\u0580 \u0579\u0567\: \u0534\u0580\u057e\u0578\u0582\u0574 \u0567 '{2}'-\u056b\u0576 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format -!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=\u0536\u0533\u0548\u0552\u0547\u0531\u0551\u0548\u0552\u0544\: '{1}' \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0578\u0582\u0574 \u056f\u0565\u0572\u056e\u057e\u0561\u056e {0} \u0569\u0572\u0569\u0561\u057a\u0561\u0576\u0561\u056f #: ../../../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).=\u0536\u0533\u0548\u0552\u0547\u0531\u0551\u0548\u0552\u0544\: {0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0561\u0577\u056d\u0561\u057f\u0578\u0582\u0574 \u0567 {1} \u0573\u0561\u0580\u057f\u0561\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0561\u0574\u0562() \u0565\u0582 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u0570\u0561\u0574\u0561\u057f\u0565\u0572\u0565\u056c\u056b \u0579\u056c\u056b\u0576\u056b \u0571\u0565\u0580 \u0568\u0576\u0569\u0561\u0581\u056b\u056f \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0570\u0565\u057f \u0578\u0580\u0568 \u0578\u0582\u0576\u056b {2} \u0573\u0561\u0580\u057f\u0561\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576() #: Base.java:2128 -Warning=\u0548\u0582\u0577\u0561\u0564\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 +Warning=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574 #: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= +Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: \u0531\u0575\u057d \u0574\u056b\u057b\u0578\u0582\u056f\u0568 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0561\u0580\u057f\u0561\u0570\u0561\u0576\u0578\u0582\u0574 \u0579\u056b \u0561\u057a\u0561\u0570\u0578\u057e\u057e\u0578\u0582\u0574. \u053b\u0576\u056b\u056f\u0561\u057f\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u0584 \u0561\u0575\u0576 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u056f\u0561\u0574 \u0570\u0565\u0572\u056b\u0576\u0561\u056f\u056b \u0570\u0565\u057f \u056f\u0561\u057a\u0576\u057e\u0565\u056c #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= +Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: {0} \u0586\u0561\u0575\u056c\u0568 \u0574\u056b\u0561\u0576\u0578\u0582\u0574 \u0567 {1} \u0562\u0561\u0581\u0561\u0580\u0571\u0561\u056f \u0573\u0561\u0576\u0561\u057a\u0561\u0580\u0570\u056b\u0576 #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: \u057d\u057f\u056b\u057a\u0578\u0572\u0561\u056f\u0561\u0576 \u057e\u057f\u0561\u0570\u0578\u0582\u0574 \u0579\u057e\u057d\u057f\u0561\u0570\u057e\u0561\u056e \u0576\u0565\u0580\u0564\u0580\u0578\u0572\u0576\u0565\u0580\u056b\u0576 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: \u057d\u057f\u056b\u057a\u0578\u0572\u0561\u056f\u0561\u0576 ({0}) \u057d\u056f\u0580\u056b\u057a\u057f\u056b \u0561\u0577\u056d\u0561\u057f\u0565\u0581\u0578\u0582\u0574 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: \u0579\u057e\u057d\u057f\u0561\u0570\u057e\u0561\u056e \u0576\u0565\u0580\u0564\u0580\u0578\u0572, \u0577\u0580\u057b\u0561\u0576\u0581\u057e\u0578\u0582\u0574 \u0567 ({0}) \u057d\u056f\u0580\u056b\u057a\u057f\u056b \u056f\u0561\u057f\u0561\u0580\u0578\u0582\u0574\u0568 #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: platform.txt-\u056b '{0}' \u0574\u056b\u057b\u0578\u0582\u056f\u0568 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 \u0570\u0576\u0561\u0581\u0561\u056e {1}, \u0561\u057e\u057f\u0578\u0574\u0561\u057f \u0571\u0565\u0582\u0561\u0583\u0578\u056d\u0565\u056c \u0567 {2}-\u056b\:\n\u053b\u0576\u056b\u056f\u0561\u057f\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u0584 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0561\u0575\u057d \u0574\u056b\u057b\u0578\u0582\u056f\u0568\: #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: platform.txt-\u056b '{0}' \u0574\u056b\u057b\u0578\u0582\u056f\u056b\u0581 \u0562\u0561\u0581\u0561\u056f\u0561\u0575\u0578\u0582\u0574 \u0567 {1} \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568, \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0578\u0582\u0574 \u0567 {2} \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576 \u0561\u0580\u056a\u0565\u0584\u0568\:\n\u053b\u0576\u056b\u056f\u0561\u057f\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u0584 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0561\u0575\u057d \u0574\u056b\u057b\u0578\u0582\u056f\u0568\: #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: platform.txt-\u056b '{0}' \u0574\u056b\u057b\u0578\u0582\u056f\u056b\u0581 \u0562\u0561\u0581\u0561\u056f\u0561\u0575\u0578\u0582\u0574 \u0567 {1} \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568, \u0561\u057e\u057f\u0578\u0574\u0561\u057f \u057e\u0565\u0580\u0561\u0563\u0580\u057e\u0578\u0582\u0574 \u0567 {2}\:\n\u053b\u0576\u056b\u056f\u0561\u057f\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u0584 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0561\u0575\u057d \u0574\u056b\u057b\u0578\u0582\u056f\u0568\: #: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= +Western\ Frisian=\u0531\u0580\u0565\u0582\u0574\u057f\u0575\u0561\u0576 \u0556\u0580\u056b\u0566\u0565\u0580\u0565\u0576 #: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()-\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 Wire.read()-\u056b\: #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send()-\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 Wire.write()-\u056b\: #: FindReplace.java:105 -!Wrap\ Around= +Wrap\ Around=\u054a\u0561\u057f\u0565\u056c \u0547\u0578\u0582\u0580\u057b\u0568 #: 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?=\u054d\u056d\u0561\u056c \u0574\u056b\u056f\u0580\u0578\u056f\u0578\u0576\u057f\u0580\u0578\u056c\u056c\u0565\u0580 \u0567 \u0563\u057f\u0576\u057e\u0565\u056c\: \u0534\u0578\u0582\u0584 \u0576\u0577\u0565\u056c \u0565\u0584 \u0573\u056b\u0577\u057f \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 > \u0540\u0561\u0580\u0569\u0561\u056f \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581? #: Preferences.java:77 UpdateCheck.java:108 Yes=\u0531\u0575\u0578 #: Sketch.java:1074 -!You\ can't\ fool\ me= +You\ can't\ fool\ me=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u056d\u0561\u0562\u0565\u056c \u056b\u0576\u0571 #: 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.=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u0578\u0582\u0576\u0565\u0576\u0561\u056c .cpp \u0576\u0578\u0582\u0575\u0576 \u0561\u0576\u057e\u0561\u0562\u0574 \u056b\u0576\u0579 \u0563\u056e\u0561\u0563\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0576 \u0567\: #: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= +You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u0576\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u056c \u057a\u0561\u0576\u0561\u056f, \u0578\u0580\u0568 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 \u0571\u0565\u0580 \u0563\u056e\u0561\u0563\u0580\u056b \u0563\u056b\u0580\u0584\u0568 #: 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.=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 "{0}"-\u056b,\n\u0584\u0561\u0576\u056b \u0578\u0580 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0561\u0580\u0564\u0565\u0576 \u0578\u0582\u0576\u056b \u0576\u0578\u0582\u0575\u0576 \u0561\u0576\u0578\u0582\u0576\u0578\u057e .cpp \u0586\u0561\u0575\u056c\: -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: 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.=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u056b\u0580 \u0574\u0565\u057b \u0563\u057f\u0576\u057e\u0578\u0572 \u057a\u0561\u0576\u0561\u056f\u056b \u0574\u0565\u057b\:\n\u0531\u0575\u0576 \u056f\u057f\u0565\u0582\u056b \u0561\u0576\u057e\u0565\u0580\u057b\: #: Base.java:1888 -!You\ forgot\ your\ sketchbook= +You\ forgot\ your\ sketchbook=\u0534\u0578\u0582\u0584 \u0574\u0578\u057c\u0561\u0581\u0565\u056c \u0565\u0584 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u056b\u0580\u0584\u0568 #: ../../../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?=\u0534\u0578\u0582\u0584 \u0583\u0578\u056d\u0561\u0576\u0581\u0565\u056c \u0565\u0584 {0} \u0562\u0561\u0575\u0581 \u0578\u0579\u056b\u0576\u0579 \u0579\u056b \u057e\u0565\u0580\u0561\u0563\u0580\u057e\u0565\u056c\: \u0534\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u0576\u0577\u0565\u0584 \u057f\u0578\u0572\u056b \u056d\u0574\u0562\u0561\u0563\u0580\u0578\u0582\u0574? #: 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?=\u0534\u0578\u0582\u0584 \u0570\u0561\u057d\u0565\u056c \u0565\u0584 \u0585\u0580\u057e\u0561 \u0570\u0561\u0574\u0561\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0561\u057e\u057f\u0578\u0574\u0561\u057f \u0561\u0576\u057e\u0561\u0576\u0574\u0561\u0576 \u057d\u0561\u0570\u0574\u0561\u0576\u056b\u0576\: \u0544\u056b\u0563\u0578\u0582\u0581\u0565 \u0563\u0576\u0561\u0584 \u0566\u0562\u0578\u057d\u0576\u0565\u056c\u0578\u0582? #: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=\u0541\u0565\u0580 IDE-\u056b \u057a\u0561\u057f\u0573\u0565\u0576\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e \u0567 \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u056b \u0565\u0576\u0569\u0561\u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574\:\n\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u057f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c IDE-\u0576 \u0561\u0575\u056c \u057a\u0561\u0576\u0561\u056f\: #: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=\u0541\u0565\u0580 IDE-\u056b \u057a\u0561\u057f\u0573\u0565\u0576\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e \u0567 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u0565\u0576\u0569\u0561\u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574\:\n\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u057f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c IDE-\u0576 \u0561\u0575\u056c \u057a\u0561\u0576\u0561\u056f\: #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=\u0556\u0561\u0575\u056c\u0565\u0580\u0568 \u056f\u0561\u0574 \u057a\u0561\u0576\u0561\u056f\u0576\u0565\u0580\u0568 ZIP \u0561\u0576\u0565\u056c #: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= +Zip\ doesn't\ contain\ a\ library=Zip-\u0568 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0579\u056b \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 #: Sketch.java:364 #, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= +".{0}"\ is\ not\ a\ valid\ extension.=".{0}"-\u0568 \u057e\u0561\u057e\u0565\u0580 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574 \u0579\u0567\: #: 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}"-\u0568 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 \u0579\u0573\u0561\u0576\u0561\u0579\u057e\u0561\u056e \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580\: \u0535\u0569\u0565 \u0561\u0575\u057d \u056f\u0578\u0564\u0568 \u057d\u057f\u0565\u0572\u056e\u057e\u0565\u056c \u0567 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u0570\u056b\u0576 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0578\u057e, \u0564\u0578\u0582\u0584 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u057a\u0565\u057f\u0584 \u0567 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u0584 \u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 -> \u0548\u0582\u0572\u0572\u0565\u056c \u053f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568 & \u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 UTF-8 \u056f\u0578\u0564\u0561\u057e\u0578\u0580\u0574\u0561\u0576 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580\: \u0535\u0569\u0565 \u0578\u0579, \u0561\u057a\u0561 \u0564\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057b\u0576\u057b\u0565\u0584 \u057e\u0561\u057f \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580\u0568 \u0566\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\u056b\u0581 \u0561\u0566\u0561\u057f\u057e\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580\: #: 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=\nArduino 0019-\u0578\u0582\u0574 Ethernet \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u056f\u0561\u056d\u057e\u0561\u056e \u0567 SPI \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0581\:\n\u0534\u0578\u0582\u0584 \u0561\u0574\u0565\u0576\u0561\u0575\u0576 \u0570\u0561\u057e\u0561\u0576\u0561\u056f\u0561\u0576\u0578\u0582\u0569\u0575\u0561\u0574\u0562 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0565\u0584 \u0561\u0575\u0576 \u056f\u0561\u0574 \u0561\u0575\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576, \u0578\u0580\u0568 \u056f\u0561\u056d\u057e\u0561\u056e \u0567 SPI \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0581\:\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=\nArduino 1.0-\u0578\u0582\u0574 'BYTE' \u0570\u056b\u0574\u0576\u0561\u0562\u0561\u057c\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0579\u056b \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574\:\n\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0583\u0578\u056d\u0561\u0580\u0565\u0576\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c 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=\nArduino 1.0-\u0578\u0582\u0574 Client \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 EthernetClient-\u056b\:\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=\nArduino 1.0-\u0578\u0582\u0574 Server \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 EthernetServer-\u056b\:\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=\nArduino 1.0-\u0578\u0582\u0574 Udp \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 EthernetUdp-\u056b\:\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=\nArduino 1.0-\u0578\u0582\u0574 Wire.receive() \u0586\u0578\u0582\u0576\u056f\u0581\u056b\u0561\u0576 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 Wire.read()-\u056b \u0561\u0575\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0570\u0565\u057f \u056f\u0561\u0575\u0578\u0582\u0576\u0578\u0582\u0569\u0575\u0561\u0576 \u0570\u0561\u0574\u0561\u0580\:\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=\nArduino 1.0-\u0578\u0582\u0574 Wire.send() \u0586\u0578\u0582\u0576\u056f\u0581\u056b\u0561\u0576 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 Wire.write()-\u056b \u0561\u0575\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0570\u0565\u057f \u056f\u0561\u0575\u0578\u0582\u0576\u0578\u0582\u0569\u0575\u0561\u0576 \u0570\u0561\u0574\u0561\u0580\:\n\n #: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= +baud=\u0562\u0578\u0564 #: Preferences.java:389 -!compilation\ = +compilation\ =\u056f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u056b\u0561 #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=\u056f\u0561\u057a\u0576\u057e\u0565\u0581\! #: Sketch.java:540 -!createNewFile()\ returned\ false= +createNewFile()\ returned\ false=createNewFile()-\u0576 \u057e\u0565\u0580\u0561\u0564\u0561\u0580\u0571\u0580\u0565\u0581 false #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=\u0574\u056b\u0561\u0581\u0576\u0565\u056c \u0556\u0561\u0575\u056c > \u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580 -\u0578\u0582\u0574 #: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= +http\://www.arduino.cc/=http\://www.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 #: Preferences.java:625 #, java-format -!ignoring\ invalid\ font\ size\ {0}= +ignoring\ invalid\ font\ size\ {0}=\u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u057f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f\u056b \u0579\u0561\u0583\u0568 {0} \u0561\u0576\u057f\u0565\u057d\u057e\u0578\u0582\u0574 \u0567 #: Editor.java:936 Editor.java:943 -!name\ is\ null= +name\ is\ null=\u0561\u0576\u0578\u0582\u0576\u0568 null \u0567 #: Editor.java:932 -!serialMenu\ is\ null= +serialMenu\ is\ null=serialMenu-\u0576 null \u0567 #: 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={0} \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0568 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0578\u0582\u0576\u056b \u056f\u0561\u0574 \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u056f\u0561\u057a\u0576\u057e\u0561\u056e \u0579\u0567 #: ../../../processing/app/Base.java:389 #, java-format -!unknown\ option\:\ {0}= +unknown\ option\:\ {0}=\u0561\u0576\u0570\u0561\u0575\u057f \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\: {0} #: Preferences.java:391 -!upload= +upload=\u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format -!version\ {0}= +version\ {0}=\u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f {0} #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= +{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578 {2} #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format -!{0}\ file\ signature\ verification\ failed= +{0}\ file\ signature\ verification\ failed={0} \u0586\u0561\u0575\u056c\u056b \u057d\u057f\u0578\u0580\u0561\u0563\u0580\u0574\u0561\u0576 \u057d\u057f\u0578\u0582\u0563\u0578\u0582\u0574\u0568 \u0571\u0561\u056d\u0578\u0572\u057e\u0565\u0581 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= +{0}\ file\ signature\ verification\ failed.\ File\ ignored.={0} \u0586\u0561\u0575\u056c\u056b \u057d\u057f\u0578\u0580\u0561\u0563\u0580\u0574\u0561\u0576 \u057d\u057f\u0578\u0582\u0563\u0578\u0582\u0574\u0568 \u0571\u0561\u056d\u0578\u0572\u057e\u0565\u0581\: \u0556\u0561\u0575\u056c\u0568 \u0561\u0576\u057f\u0565\u057d\u057e\u0565\u0581\: #: Editor.java:380 #, java-format -!{0}\ files\ added\ to\ the\ sketch.= +{0}\ files\ added\ to\ the\ sketch.={0} \u0586\u0561\u0575\u056c\u0565\u0580 \u0561\u057e\u0565\u056c\u0561\u0581\u057e\u0565\u0581\u056b\u0576 \u0563\u056e\u0561\u0563\u0580\u056b\u0576\: #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format -!{0}\ libraries= +{0}\ libraries={0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder={0}-\u0568 \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b \u057a\u0561\u0576\u0561\u056f #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format -!{0}\ pattern\ is\ missing= +{0}\ pattern\ is\ missing={0} \u0585\u0580\u056b\u0576\u0561\u0579\u0561\u0583\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0562\u0561\u0581\u0561\u056f\u0561\u0575\u0578\u0582\u0574 \u0567 #: debug/Compiler.java:365 #, java-format -!{0}\ returned\ {1}= +{0}\ returned\ {1}={0}-\u0568 \u057e\u0565\u0580\u0561\u0564\u0561\u0580\u0571\u0580\u0565\u0581 {1} #: Editor.java:2213 #, java-format -!{0}\ |\ Arduino\ {1}= +{0}\ |\ Arduino\ {1}={0} | \u0531\u0580\u0564\u0578\u0582\u0576\u0578{1} #: ../../../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}\: --pref -\u056b \u057d\u056d\u0561\u056c \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f, \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b "pref\=value" \u0586\u0578\u0580\u0574\u0561\u057f\u0578\u057e #: ../../../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}\: \u054d\u056d\u0561\u056c \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0561\u0576\u0578\u0582\u0576, \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b "package\:arch\:board" \u056f\u0561\u0574 "package\:arch\:board\:options" \u0586\u0578\u0580\u0574\u0561\u057f\u0578\u057e #: ../../../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}\: \u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f "{1}", "{2}" \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0570\u0561\u0574\u0561\u0580 #: ../../../processing/app/Base.java:507 #, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: \u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f "{1}" \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0570\u0561\u0574\u0561\u0580 #: ../../../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}\: \u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f, \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c \u0571\u0565\u0582\u0578\u057e "name\=value" #: ../../../processing/app/Base.java:486 #, java-format -!{0}\:\ Unknown\ architecture= +{0}\:\ Unknown\ architecture={0}\: \u0531\u0576\u0570\u0561\u0575\u057f \u0573\u0561\u0580\u057f\u0561\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576 #: ../../../processing/app/Base.java:491 #, java-format -!{0}\:\ Unknown\ board= +{0}\:\ Unknown\ board={0}\: \u0531\u0576\u0570\u0561\u0575\u057f \u0570\u0561\u0580\u0569\u0561\u056f #: ../../../processing/app/Base.java:481 #, java-format -!{0}\:\ Unknown\ package= +{0}\:\ Unknown\ package={0}\: \u0531\u0576\u0570\u0561\u0575\u057f \u0583\u0561\u0569\u0565\u0569 diff --git a/arduino-core/src/processing/app/i18n/Resources_in.po b/arduino-core/src/processing/app/i18n/Resources_in.po index 00441a231..07c0c0362 100644 --- a/arduino-core/src/processing/app/i18n/Resources_in.po +++ b/arduino-core/src/processing/app/i18n/Resources_in.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Ade Malsasa Akbar , 2013 # Johannes Sutiktio , 2015 # Joshua Adiel Wijaya , 2015 @@ -17,7 +18,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Indonesian (http://www.transifex.com/mbanzi/arduino-ide-15/language/id/)\n" "MIME-Version: 1.0\n" @@ -40,13 +41,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' hanya didukung pada Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' hanya didukung pada Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -877,6 +881,11 @@ msgstr "Galat ketika memuat kode {0}" msgid "Error while printing." msgstr "Galat ketika mencetak." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Galat ketika mengunggah" @@ -2306,11 +2315,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Anda tidak dapat mengubah nama sketsa ke \"{0}\"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama itu." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Anda tidak dapat menyimpan sketsa sebagai \"{0}\"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama itu." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" 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 b6521c9bb..46a9ac974 100644 --- a/arduino-core/src/processing/app/i18n/Resources_it_IT.po +++ b/arduino-core/src/processing/app/i18n/Resources_it_IT.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Cristian Maglie , 2013-2015 # Davide Velluto , 2012 # Federico Fissore , 2015 @@ -19,7 +20,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-09-30 07:39+0000\n" +"PO-Revision-Date: 2015-11-02 12:07+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Italian (Italy) (http://www.transifex.com/mbanzi/arduino-ide-15/language/it_IT/)\n" "MIME-Version: 1.0\n" @@ -42,13 +43,16 @@ msgstr "Non usata: {0}" msgid " Used: {0}" msgstr "Usata: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' supportata solo su Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "'Keyboard' non trovata. Il tuo sketch ha la riga '#include '?" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' supportata solo su Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "'Mouse' non trovata. Il tuo sketch ha la riga '#include '?" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -879,6 +883,11 @@ msgstr "Errore durante il caricamento del codice {0}" msgid "Error while printing." msgstr "Errore durante la stampa" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "Errore durante l'impostazione dei parametri seriali: {0} {1} {2} {3}" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Errore durante il caricamento" @@ -2308,11 +2317,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Non puoi rinominare lo sketch in {0}\nin quanto lo sketch ha già un file .cpp con quel nome." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Non puoi rinominare lo sketch in \"{0}\"\nin quanto lo sketch ha già un file .cpp con quel nome" +"because the sketch already has a file with that name." +msgstr "Lo sketch non può chiamarsi \"{0}\"\nperchè ha già un file con lo stesso nome." #: Sketch.java:883 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 f730ed9c0..1281dc99f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_it_IT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_it_IT.properties @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Cristian Maglie , 2013-2015 # Davide Velluto , 2012 # Federico Fissore , 2015 # Giovanni Spadaro , 2012 # Michele Michielin , 2012 # Michele Michielin , 2013-2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:39+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/mbanzi/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-11-02 12\:07+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/mbanzi/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) @@ -27,11 +28,11 @@ #, java-format \ Used\:\ {0}=Usata\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' supportata solo su Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?='Keyboard' non trovata. Il tuo sketch ha la riga '\#include '? -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' supportata solo su Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?='Mouse' non trovata. Il tuo sketch ha la riga '\#include '? #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=La cartella 'arch' non \u00e8 pi\u00f9 supportata\! Guarda http\://goo.gl/gfFJzU per maggiori informazioni @@ -633,6 +634,10 @@ Error\ while\ loading\ code\ {0}=Errore durante il caricamento del codice {0} #: Editor.java:2567 Error\ while\ printing.=Errore durante la stampa +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=Errore durante l'impostazione dei parametri seriali\: {0} {1} {2} {3} + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Errore durante il caricamento @@ -1659,8 +1664,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Non puoi importa #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non puoi rinominare lo sketch in {0}\nin quanto lo sketch ha gi\u00e0 un file .cpp con quel nome. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non puoi rinominare lo sketch in "{0}"\nin quanto lo sketch ha gi\u00e0 un file .cpp con quel nome +#: ../../../../../app/src/processing/app/Sketch.java:659 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=Lo sketch non pu\u00f2 chiamarsi "{0}"\nperch\u00e8 ha gi\u00e0 un file con lo stesso nome. #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Non puoi salvare lo sketch in una cartella\nall'interno di s\u00e9 stessa. Questo procederebbe all'infinito diff --git a/arduino-core/src/processing/app/i18n/Resources_iw.po b/arduino-core/src/processing/app/i18n/Resources_iw.po index a38744ea3..1d32bf3d9 100644 --- a/arduino-core/src/processing/app/i18n/Resources_iw.po +++ b/arduino-core/src/processing/app/i18n/Resources_iw.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Amit BC , 2014 # eli.ganem , 2012 # Eyal Halfon , 2013 @@ -20,7 +21,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Hebrew (http://www.transifex.com/mbanzi/arduino-ide-15/language/he/)\n" "MIME-Version: 1.0\n" @@ -43,13 +44,16 @@ msgstr "לא בשימוש: {0}" msgid " Used: {0}" msgstr "בשימוש: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'מקלדת' נתמכת ב Arduino Leonardo בלבד." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'עכבר' נתמך ב Arduino Leonardo בלבד." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -880,6 +884,11 @@ msgstr "שגיאה בזמן טעינת הקוד {0}" msgid "Error while printing." msgstr "שגיאה בתהליך ההדפסה." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "שגיאה במהלך העלאת תוכנית" @@ -2309,11 +2318,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "אינך יכול לשנות את שם הסקיצה ל \"{0}\" משום שיש כבר קובץ cpp. עם השם הזה." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "לא ניתן לשמור את הסקיצה בשם \"{0}\"\nמפני שלסקיצה כבר קיים קובץ עם סיומת cpp עם אותו שם." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" 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 649ac2739..4e3d5655f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ja_JP.po +++ b/arduino-core/src/processing/app/i18n/Resources_ja_JP.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Masanori Ohgita , 2013,2015 # Shigeru Kanemoto , 2015 # Shinichi Ohki , 2015 @@ -16,7 +17,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -39,13 +40,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "「Keyboard」はArduino Leonardoだけで使えます。" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "「Mouse」はArduino Leonardoだけで使えます。" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -876,6 +880,11 @@ msgstr "「{0}」からコードを読み込む際にエラーが発生しまし msgid "Error while printing." msgstr "印刷中にエラーが発生しました。" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "書き込み中にエラーが発生しました。" @@ -2305,11 +2314,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "このスケッチには、すでにその名前の.cppファイルが存在するため、スケッチの名前を「{0}」に変更する事ができません。" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "このスケッチには、すでにその名前の.cppファイルが存在するため、スケッチを「{0}」として保存することができません。" +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 a32ecdad7..5632a5dbc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties @@ -8,10 +8,11 @@ # Translators: # Translators: # Translators: +# Translators: # Masanori Ohgita , 2013,2015 # Shigeru Kanemoto , 2015 # Shinichi Ohki , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/mbanzi/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 @@ -24,11 +25,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u300cKeyboard\u300d\u306fArduino Leonardo\u3060\u3051\u3067\u4f7f\u3048\u307e\u3059\u3002 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u300cMouse\u300d\u306fArduino Leonardo\u3060\u3051\u3067\u4f7f\u3048\u307e\u3059\u3002 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -630,6 +631,10 @@ 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 +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 @@ -1656,8 +1661,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u30b9\ #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u3001\u3059\u3067\u306b\u305d\u306e\u540d\u524d\u306e.cpp\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u300c{0}\u300d\u306b\u5909\u66f4\u3059\u308b\u4e8b\u304c\u3067\u304d\u307e\u305b\u3093\u3002 -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u3001\u3059\u3067\u306b\u305d\u306e\u540d\u524d\u306e.cpp\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u3092\u300c{0}\u300d\u3068\u3057\u3066\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002 +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u81ea\u3089\u306e\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30c0\u306e\u4e2d\u306b\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u306a\u3093\u3066\u3067\u304d\u307e\u305b\u3093\u3002\u7121\u9650\u30eb\u30fc\u30d7\u306b\u306a\u3063\u3061\u3083\u3044\u307e\u3059\u3002 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 d14e28b27..7cf248ce5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ka_GE.po +++ b/arduino-core/src/processing/app/i18n/Resources_ka_GE.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Giorgi Maghlakelidze , 2013 # Giorgi Maghlakelidze , 2012 # Giorgi Maghlakelidze , 2012-2013 @@ -19,7 +20,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -42,13 +43,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard'-ის მხარდაჭერა აქვს მხოლოდ დაფას Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse'-ის მხარდაჭერა აქვს მხოლოდ დაფას Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -879,6 +883,11 @@ msgstr "შეცდომა შემდეგი კოდის ჩატვ msgid "Error while printing." msgstr "შეცდომა ბეჭდვისას." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2308,11 +2317,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "შეუძლებელია დაარქვათ ჩანახატს \"{0}\"\nრადგან ასეთი სახელის .cpp ფაილი უკვე არსებობს." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "შეუძლებელია ჩანახატის შენახვა სახელით \"{0}\"\nრადგან უკვე არსებობს ასეთი სახელის მქონე .cpp ფაილი." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" 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 0a7196a86..e6d686eae 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Giorgi Maghlakelidze , 2013 # Giorgi Maghlakelidze , 2012 # Giorgi Maghlakelidze , 2012-2013 # George Machitidze , 2013 # Giorgi Maghlakelidze , 2013-2014 # Zurab Japaridze , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Georgian (Georgia) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Georgian (Georgia) (http\://www.transifex.com/mbanzi/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) @@ -27,11 +28,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard'-\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d0 \u10d0\u10e5\u10d5\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d3\u10d0\u10e4\u10d0\u10e1 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse'-\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d0 \u10d0\u10e5\u10d5\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d3\u10d0\u10e4\u10d0\u10e1 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -633,6 +634,10 @@ 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. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1659,8 +1664,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u10d0\ #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10d3\u10d0\u10d0\u10e0\u10e5\u10d5\u10d0\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10e1 "{0}"\n\u10e0\u10d0\u10d3\u10d2\u10d0\u10dc \u10d0\u10e1\u10d4\u10d7\u10d8 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\u10e1 .cpp \u10e4\u10d0\u10d8\u10da\u10d8 \u10e3\u10d9\u10d5\u10d4 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\u10d7 "{0}"\n\u10e0\u10d0\u10d3\u10d2\u10d0\u10dc \u10e3\u10d9\u10d5\u10d4 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1 \u10d0\u10e1\u10d4\u10d7\u10d8 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\u10e1 \u10db\u10e5\u10dd\u10dc\u10d4 .cpp \u10e4\u10d0\u10d8\u10da\u10d8. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e8\u10d4\u10d8\u10dc\u10d0\u10ee\u10dd\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8 \u10d7\u10d0\u10d5\u10d8\u10e1\u10d8 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d8\u10e1\n\u10e8\u10d8\u10d2\u10dc\u10d8\u10d7. \u10d4\u10e1 \u10ee\u10dd\u10db \u10e3\u10e1\u10d0\u10e1\u10e0\u10e3\u10da\u10dd\u10d3 \u10d2\u10d0\u10d2\u10e0\u10eb\u10d4\u10da\u10d3\u10d4\u10d1\u10d0\! 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 ee774d077..a1e9982f8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ko_KR.po +++ b/arduino-core/src/processing/app/i18n/Resources_ko_KR.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Jihoon Hyun , 2015 # Jinbuhm Kim , 2013,2015 # Ki-hyeok Park , 2015 @@ -17,7 +18,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Korean (Korea) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ko_KR/)\n" "MIME-Version: 1.0\n" @@ -40,13 +41,16 @@ msgstr "사용되지 않음: {0}" msgid " Used: {0}" msgstr " 사용됨: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'키보드' 는 Arduino Leonardo에서만 사용가능합니다." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'마우스' 는 Arduino Leonardo에서만 사용가능합니다." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -877,6 +881,11 @@ msgstr "코드 {0}를 로딩하는 중 에러" msgid "Error while printing." msgstr "인홰하는 중에 오류 발생했습니다." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "업로드 오류" @@ -1031,11 +1040,11 @@ msgstr "전역 변수는 {0} 바이트의 동적 메모리를 사용." #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Go to line" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Go to line..." #: Preferences.java:98 msgid "Greek" @@ -1196,7 +1205,7 @@ msgstr "라이브러리가 이미 설치됐습니다: {0} 버전 {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Line number:" #: Preferences.java:106 msgid "Lithuaninan" @@ -2306,11 +2315,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "스케치가 이미 같은 이름의 .cpp 파일을 가지고 있기 때문에\n스케치의 이름을 \"{0}\"로 바꿀 수 없습니다." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "스케치가 이미 같은 이름의 .cpp파일을 가지고 있기 때문에\n스케치의 이름을 \"{0}\"로 저장할 수 없습니다." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 357e2b84c..eb4f17ad7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties @@ -8,11 +8,12 @@ # Translators: # Translators: # Translators: +# Translators: # Jihoon Hyun , 2015 # Jinbuhm Kim , 2013,2015 # Ki-hyeok Park , 2015 # shibaboy , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Korean (Korea) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Korean (Korea) (http\://www.transifex.com/mbanzi/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) @@ -25,11 +26,11 @@ #, java-format \ Used\:\ {0}=\ \uc0ac\uc6a9\ub428\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='\ud0a4\ubcf4\ub4dc' \ub294 Arduino Leonardo\uc5d0\uc11c\ub9cc \uc0ac\uc6a9\uac00\ub2a5\ud569\ub2c8\ub2e4. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='\ub9c8\uc6b0\uc2a4' \ub294 Arduino Leonardo\uc5d0\uc11c\ub9cc \uc0ac\uc6a9\uac00\ub2a5\ud569\ub2c8\ub2e4. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information='arch' \ud3f4\ub354\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4\! \uc790\uc138\ud55c \ub0b4\uc6a9\uc740 http\://goo.gl/gfFJzU \ub97c \ucc38\uc870\ud558\uc2ed\uc2dc\uc624 @@ -631,6 +632,10 @@ 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. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=\uc5c5\ub85c\ub4dc \uc624\ub958 @@ -745,10 +750,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\uc804\uc5ed \ubcc0\uc218\ub294 {0} \ubc14\uc774\ud2b8\uc758 \ub3d9\uc801 \uba54\ubaa8\ub9ac\ub97c \uc0ac\uc6a9. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=Go to line #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=Go to line... #: Preferences.java:98 Greek=\uadf8\ub9ac\uc2a4\uc5b4 @@ -865,7 +870,7 @@ Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\ub77c\uc774\ube0c\ub Library\ is\ already\ installed\:\ {0}\ version\ {1}=\ub77c\uc774\ube0c\ub7ec\ub9ac\uac00 \uc774\ubbf8 \uc124\uce58\ub410\uc2b5\ub2c8\ub2e4\: {0} \ubc84\uc804 {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=Line number\: #: Preferences.java:106 Lithuaninan=\ub9ac\ud22c\uc544\ub2c8\uc544\uc5b4 @@ -1657,8 +1662,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\uc2a4\ucf00\uce #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\uc2a4\ucf00\uce58\uac00 \uc774\ubbf8 \uac19\uc740 \uc774\ub984\uc758 .cpp \ud30c\uc77c\uc744 \uac00\uc9c0\uace0 \uc788\uae30 \ub54c\ubb38\uc5d0\n\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc744 "{0}"\ub85c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\uc2a4\ucf00\uce58\uac00 \uc774\ubbf8 \uac19\uc740 \uc774\ub984\uc758 .cpp\ud30c\uc77c\uc744 \uac00\uc9c0\uace0 \uc788\uae30 \ub54c\ubb38\uc5d0\n\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc744 "{0}"\ub85c \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\uc2a4\ucf00\uce58\ub97c \uadf8 \uc790\uccb4\uc758 \ud3f4\ub354\uc5d0 \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ubb34\ud55c \ubc18\ubcf5\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4. 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 54440d3e8..3c3626c1e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lt_LT.po +++ b/arduino-core/src/processing/app/i18n/Resources_lt_LT.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Aleksandr Jadov , 2013 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/mbanzi/arduino-ide-15/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -37,12 +38,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -874,6 +878,11 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2303,10 +2312,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 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 bbf792886..a820fba4b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Aleksandr Jadov , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Lithuanian (Lithuania) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Lithuanian (Lithuania) (http\://www.transifex.com/mbanzi/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)= @@ -22,11 +23,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1654,8 +1659,8 @@ Time\ for\ a\ Break=Laikas pertraukai #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= 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 cdafd5b24..c3ee71b8a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lv_LV.po +++ b/arduino-core/src/processing/app/i18n/Resources_lv_LV.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Kristofers , 2015 # Kristofers , 2012 msgid "" @@ -15,7 +16,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Latvian (Latvia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/lv_LV/)\n" "MIME-Version: 1.0\n" @@ -38,13 +39,16 @@ msgstr "Neizmantots: {0}" msgid " Used: {0}" msgstr "Izmantots: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Klaviatūra' ir tikai atbalstīta uz Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Pele' ir tikai atbalstīta uz Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -875,6 +879,11 @@ msgstr "Radās kļūda, ielādējot kodu {0}" msgid "Error while printing." msgstr "Drukājot radās kļūda." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Kļūda augšupielādējot" @@ -2304,11 +2313,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Jūs nevarat pārsaukt skici uz \"{0}\"\njo skicei jau ir .cpp fails ar tādu nosaukumu." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Jūs nevarat saglabāt skici kā \"{0}\",\njo skicei jau ir .cpp fails ar tādu nosaukumu." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 d7a0affca..b6b38febf 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties +++ b/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties @@ -8,9 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Kristofers , 2015 # 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\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Latvian (Latvia) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Latvian (Latvia) (http\://www.transifex.com/mbanzi/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) @@ -23,11 +24,11 @@ #, java-format \ Used\:\ {0}=Izmantots\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Klaviat\u016bra' ir tikai atbalst\u012bta uz Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Pele' ir tikai atbalst\u012bta uz Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -629,6 +630,10 @@ 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. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=K\u013c\u016bda aug\u0161upiel\u0101d\u0113jot @@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=J\u016b #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=J\u016bs nevarat p\u0101rsaukt skici uz "{0}"\njo skicei jau ir .cpp fails ar t\u0101du nosaukumu. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=J\u016bs nevarat saglab\u0101t skici k\u0101 "{0}",\njo skicei jau ir .cpp fails ar t\u0101du nosaukumu. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=J\u016bs nevarat saglab\u0101t skici pa\u0161as\nmap\u0113. Tas turpin\u0101tos bezgal\u012bgi. diff --git a/arduino-core/src/processing/app/i18n/Resources_mr.po b/arduino-core/src/processing/app/i18n/Resources_mr.po index 2702695f1..92a8f97ac 100644 --- a/arduino-core/src/processing/app/i18n/Resources_mr.po +++ b/arduino-core/src/processing/app/i18n/Resources_mr.po @@ -8,12 +8,13 @@ # Translators: # Translators: # Translators: +# Translators: msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Marathi (http://www.transifex.com/mbanzi/arduino-ide-15/language/mr/)\n" "MIME-Version: 1.0\n" @@ -36,12 +37,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -873,6 +877,11 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2302,10 +2311,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 diff --git a/arduino-core/src/processing/app/i18n/Resources_mr.properties b/arduino-core/src/processing/app/i18n/Resources_mr.properties index 8f1a24537..1eb65660c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_mr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_mr.properties @@ -8,7 +8,8 @@ # Translators: # Translators: # 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Marathi (http\://www.transifex.com/mbanzi/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 +# 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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Marathi (http\://www.transifex.com/mbanzi/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)= @@ -21,11 +22,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -627,6 +628,10 @@ Environment=\u092a\u0930\u093f\u0938\u0930 #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1653,8 +1658,8 @@ Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\ #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= 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 2c752ce2d..6e872150b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_my_MM.po +++ b/arduino-core/src/processing/app/i18n/Resources_my_MM.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Yhal Htet Aung , 2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/mbanzi/arduino-ide-15/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -37,12 +38,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -874,6 +878,11 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2303,10 +2312,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 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 80a0b3c96..7075e0aa1 100644 --- a/arduino-core/src/processing/app/i18n/Resources_my_MM.properties +++ b/arduino-core/src/processing/app/i18n/Resources_my_MM.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Yhal Htet Aung , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Burmese (Myanmar) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Burmese (Myanmar) (http\://www.transifex.com/mbanzi/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)= @@ -22,11 +23,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Error=\u1021\u1019\u103e\u102c\u1038 #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1654,8 +1659,8 @@ Yes=\u101f\u102f\u1010\u103a\u1000\u1032\u1037 #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= 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 c4f77a568..4e8a65ae7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nb_NO.po +++ b/arduino-core/src/processing/app/i18n/Resources_nb_NO.po @@ -8,7 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Bjørn Andreas, 2014 +# Kaare Jenssen, 2015 # lateralus, 2013 # Rune Fauske , 2013-2015 # Rune Fauske , 2012 @@ -17,7 +19,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/mbanzi/arduino-ide-15/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -40,19 +42,22 @@ msgstr "Ikke i bruk: {0}" msgid " Used: {0}" msgstr "I bruk: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Tastatur' er kun støttet på Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mus' er kun støttet på Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " "information" -msgstr "" +msgstr "'arch' mappen er ikke lenger støttet! Se http://goo.gl/gfFJzU for mer informasjon." #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -60,7 +65,7 @@ msgstr "(redigeres kun når Arduino ikke kjører)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 msgid "(legacy)" -msgstr "" +msgstr "(legacy)" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" @@ -79,18 +84,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "Oppdatering tilgjengelig for noen av dine {0}boards{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "Oppdateringer tilgjengelig for noen av dine {0}boards{1} and {2}libraries{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "Oppdatering tilgjengelig for noen av dine {0}libraries{1}" #: Editor.java:2053 msgid "" @@ -304,11 +309,11 @@ msgstr "Autoformatering ferdig." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Automatiske proxy instillinger" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "Automatisk proxy konfigurasjons URL:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -339,7 +344,7 @@ msgstr "Kort" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format msgid "Board {0} (platform {1}, package {2}) is unknown" -msgstr "" +msgstr "Kort {0} (platform {1}, package {2}) er ukjent" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -354,11 +359,11 @@ msgstr "Kort" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" -msgstr "" +msgstr "Kort Administrasjon" #: ../../../../../app/src/processing/app/Base.java:1320 msgid "Boards Manager..." -msgstr "" +msgstr "Kort Administrasjon" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 msgid "Boards included in this package:" @@ -387,7 +392,7 @@ msgstr "Innstillinger for bygging er endret, bygger alt på nytt" #: ../../../../../app/src/processing/app/Base.java:1210 msgid "Built-in Examples" -msgstr "" +msgstr "Innebygde Eksempler" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" @@ -760,7 +765,7 @@ msgstr "Redigeringsspråk: " #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" -msgstr "" +msgstr "Aktiver Code Folding" #: Preferences.java:92 msgid "English" @@ -866,20 +871,25 @@ msgstr "Feil under skriving av oppstartslaster: mangler konfigurasjonsparameter #: ../../../../../app/src/processing/app/Editor.java:1940 msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" +msgstr "Feil under kompilering: mangler '{0}' konfigurasjons parameter " #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" -msgstr "File ved lasting av koden {0}" +msgstr "Feil ved lasting av kode {0}" #: Editor.java:2567 msgid "Error while printing." msgstr "Feil under utskrift." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" -msgstr "Det oppstod en feil under opplasting" +msgstr "Det oppstod en feil under opplastingen" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 @@ -910,24 +920,24 @@ msgstr "Eksempler" #: ../../../../../app/src/processing/app/Base.java:1244 msgid "Examples from Custom Libraries" -msgstr "" +msgstr "Eksempler fra Egendefinerte Bibliotek" #: ../../../../../app/src/processing/app/Base.java:1222 msgid "Examples from Libraries" -msgstr "" +msgstr "Eksempler fra Bibliotek" #: ../../../../../app/src/processing/app/Editor.java:753 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Eksportering-kansellert, endringer må først lagres." #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" -msgstr "" +msgstr "Eksporter kompilert Binær-fil" #: ../../../processing/app/Base.java:416 #, java-format msgid "Failed to open sketch: \"{0}\"" -msgstr "" +msgstr "Klarte ikke åpne skissen: \"{0}\"" #: Editor.java:491 msgid "File" @@ -939,7 +949,7 @@ msgstr "Filippinsk" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." -msgstr "" +msgstr "Filtrer søket ditt..." #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -951,7 +961,7 @@ msgstr "Finn neste" #: Editor.java:1259 msgid "Find Previous" -msgstr "Finn forige" +msgstr "Finn forrige" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" @@ -978,12 +988,12 @@ msgstr "Fiks tegnkoding & Last på nytt" msgid "" "For information on installing libraries, see: " "http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "For mer informasjon om installering av bibliotek, se http://www.arduino.cc/en/Guide/Libraries\n" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" +msgstr "Tvinger restart ved 1200bps åpning/lukking på port {0}" #: Preferences.java:95 msgid "French" @@ -1003,7 +1013,7 @@ msgstr "" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" -msgstr "" +msgstr "Galileo Hjelp" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" @@ -1015,27 +1025,27 @@ msgstr "Tysk" #: Editor.java:1054 msgid "Getting Started" -msgstr "Kom i gang" +msgstr "Kom i Gang" #: ../../../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 "Globale variabler bruker {0} bytes ({2}%%) av dynamisk minne, som etterlater {3} bytes til lokale variabler. Maks er {1} bytes." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Globale variabler bruker {0} bytes av dynamisk minne." #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Gå til linje" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Gå til linje..." #: Preferences.java:98 msgid "Greek" @@ -1055,7 +1065,7 @@ msgstr "Hindi" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Tjener navn:" #: Sketch.java:295 msgid "" @@ -1096,12 +1106,12 @@ msgstr "Fra Arduino 1.0 har standard filtypen blitt endret\nfra .pde til .ino. N #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" -msgstr "" +msgstr "Inkluder Bibliotek" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "Feil IDE installasjons mappe" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -1113,7 +1123,7 @@ msgstr "Indonesisk" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." -msgstr "" +msgstr "Initialiserer pakkene..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -1122,34 +1132,34 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Installer" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Installasjonen er fullført!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Installert" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." -msgstr "" +msgstr "Installerer kort..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "Installerer bibliotek: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "Installerer verktøy ({0}/{1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Installerer..." #: ../../../processing/app/Base.java:1204 #, java-format @@ -1159,7 +1169,7 @@ msgstr "Ugyldig bibliotek i {0}: {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format msgid "Invalid quoting: no closing [{0}] char found." -msgstr "" +msgstr "Ugyldig tegnbruk: Ingen lukking av [{0}] funnet." #: Preferences.java:102 msgid "Italian" @@ -1179,24 +1189,24 @@ msgstr "Latvisk" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Bibliotek Administrasjon" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" +msgstr "Biblioteket er lagt til i dine bibliotek. Sjekk \"Inkluder Bibliotek\" menyen" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 msgid "Library can't use both 'src' and 'utility' folders." -msgstr "" +msgstr "Biblioteket kan ikke bruke både 'src' og 'utility' mappene." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" -msgstr "" +msgstr "Biblioteket er allerede installert: {0} versjon {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Linje nummer:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1204,24 +1214,24 @@ msgstr "Litauisk" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." -msgstr "" +msgstr "Laster konfigurasjon..." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format msgid "Looking for recipes like {0}*{1}" -msgstr "" +msgstr "Ser etter mottakere som {0}*{1}" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." -msgstr "" +msgstr "Lite minne tilgjengelig, stabilitetsproblemer kan inntreffe." #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." -msgstr "" +msgstr "Administrer Bibliotek..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Manuell proxy konfigurasjon" #: Preferences.java:107 msgid "Marathi" @@ -1234,15 +1244,15 @@ msgstr "Melding" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format msgid "Missing '{0}' from library in {1}" -msgstr "" +msgstr "Mangler '{0}' fra biblioteket i {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" -msgstr "" +msgstr "Modus er ikke støttet" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "Mer informasjon" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1254,16 +1264,16 @@ msgstr "Flytter" #: ../../../processing/app/BaseNoGui.java:484 msgid "Multiple files not supported" -msgstr "" +msgstr "Mange filer er ikke støttet" #: ../../../processing/app/debug/Compiler.java:520 #, java-format msgid "Multiple libraries were found for \"{0}\"" -msgstr "" +msgstr "Mange bibliotek ble funnet for \"{0}\"" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" -msgstr "" +msgstr "Du må spesifisere nøyaktig -en- skissefil" #: Sketch.java:282 msgid "Name for new file:" @@ -1275,15 +1285,15 @@ msgstr "Nepalsk" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Nettverk" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" -msgstr "" +msgstr "Nettverks-porter" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "Nettverksopplasting ved bruk av Programmerer er ikke supportert" +msgstr "Nettverksopplasting ved bruk av Programmerer er ikke støttet" #: EditorToolbar.java:41 Editor.java:493 msgid "New" @@ -1291,7 +1301,7 @@ msgstr "Ny" #: EditorHeader.java:292 msgid "New Tab" -msgstr "Ny fane" +msgstr "Ny Fane" #: SerialMonitor.java:112 msgid "Newline" @@ -1299,7 +1309,7 @@ msgstr "Linjeskift" #: EditorHeader.java:340 msgid "Next Tab" -msgstr "Neste fane" +msgstr "Neste Fane" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" @@ -1307,7 +1317,7 @@ msgstr "Nei" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" -msgstr "" +msgstr "Ingen autorisasjonsdata funnet" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -1315,11 +1325,11 @@ msgstr "Ingen endringer nødvendig for autoformatering." #: ../../../processing/app/BaseNoGui.java:665 msgid "No command line parameters found" -msgstr "" +msgstr "Ingen kommandolinje parametere funnet" #: ../../../processing/app/debug/Compiler.java:200 msgid "No compiled sketch found" -msgstr "" +msgstr "Ingen kompilert skisse funnet" #: Editor.java:373 msgid "No files were added to the sketch." @@ -1327,7 +1337,7 @@ msgstr "Ingen filer ble lagt til skissen." #: Platform.java:167 msgid "No launcher available" -msgstr "Ikke noe startprogramm tilgjengelig" +msgstr "Ikke noe startprogram tilgjengelig" #: SerialMonitor.java:112 msgid "No line ending" @@ -1335,11 +1345,11 @@ msgstr "Ingen linjeslutt" #: ../../../processing/app/BaseNoGui.java:665 msgid "No parameters" -msgstr "" +msgstr "Ingen parametere" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Ingen proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1353,24 +1363,24 @@ msgstr "Ingen referanse tilgjengelig for \"{0}\"" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "No sketch" -msgstr "" +msgstr "Ingen skisse" #: ../../../processing/app/BaseNoGui.java:428 msgid "No sketchbook" -msgstr "" +msgstr "Ingen skissebok" #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" -msgstr "" +msgstr "Ingen gyldige kode-filer funnet" #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "Inge gyldige maksinvare-definisasjoner funnet i mappe {0}." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 msgid "None" -msgstr "" +msgstr "Ingen" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" @@ -1385,7 +1395,7 @@ msgstr "Ikke nok minne; se\nhttp://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 "OK" +msgstr "Greit" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." @@ -1393,7 +1403,7 @@ msgstr "En fil ble lagt til skissen." #: ../../../processing/app/BaseNoGui.java:455 msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" +msgstr "Bare --verify, --upload eller --get-pref er støttet" #: EditorToolbar.java:41 msgid "Open" @@ -1401,7 +1411,7 @@ msgstr "Åpne" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" -msgstr "" +msgstr "Åpne Nylig Brukt" #: Editor.java:2688 msgid "Open URL" @@ -1433,20 +1443,20 @@ msgstr "Persisk" #: ../../../processing/app/Preferences.java:161 msgid "Persian (Iran)" -msgstr "" +msgstr "Perser" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format msgid "Platform {0} (package {1}) is unknown" -msgstr "" +msgstr "Plattform {0} (package {1}) er ukjent" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" -msgstr "" +msgstr "Vennligst bekreft sletting av kort" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "Please confirm library deletion" -msgstr "" +msgstr "Vennligst bekreft sletting av bibliotek" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1454,12 +1464,12 @@ msgstr "Vennligst importer SPI biblioteket fra Skisse > Importer bibliotek menye #: ../../../processing/app/debug/Compiler.java:529 msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" +msgstr "Vennligst importer Wire biblioteket fra Skisse -> Importer Bibliotek menyen" #: ../../../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 "Vennligst velg en programmerer (ISP) fra Verktøy -> Programmerer menyen" #: Preferences.java:110 msgid "Polish" @@ -1467,15 +1477,15 @@ msgstr "Polsk" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Port" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "Port nummer:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "Portugisisk" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" @@ -1491,7 +1501,7 @@ msgstr "Innstillinger" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." -msgstr "" +msgstr "Forbereder kort..." #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" @@ -1499,7 +1509,7 @@ msgstr "Forrige" #: EditorHeader.java:326 msgid "Previous Tab" -msgstr "Forrige fane" +msgstr "Forrige Fane" #: Editor.java:571 msgid "Print" @@ -1523,15 +1533,15 @@ msgstr "Problemer ved åpning av URL" #: Base.java:227 msgid "Problem Setting the Platform" -msgstr "Problemer under setting av platform" +msgstr "Problemer under valg av plattform" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "Problemer med tilgang til kort-mappen /www/sd" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "Problemer med å få tilgang til filer i mappen" #: Base.java:1673 msgid "Problem getting data folder" @@ -1558,7 +1568,7 @@ msgstr "Programmerer" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format msgid "Progress {0}" -msgstr "" +msgstr "Fremdrift {0}" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1566,7 +1576,7 @@ msgstr "Avslutt" #: ../../../../../app/src/processing/app/Base.java:1233 msgid "RETIRED" -msgstr "" +msgstr "UTE AV PRODUKSJON" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" @@ -1578,17 +1588,17 @@ msgstr "Referanse" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 msgid "Remove" -msgstr "" +msgstr "Fjern" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format msgid "Removing library: {0}" -msgstr "" +msgstr "Fjern bibliotek: {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 msgid "Removing..." -msgstr "" +msgstr "Fjerner..." #: EditorHeader.java:300 msgid "Rename" @@ -1622,12 +1632,12 @@ msgstr "Rumensk" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format msgid "Running recipe: {0}" -msgstr "" +msgstr "Kjører oppskrift: {0}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format msgid "Running: {0}" -msgstr "" +msgstr "Kjører: {0}" #: Preferences.java:114 msgid "Russian" @@ -1657,7 +1667,7 @@ msgstr "Lagre skissemappe som..." #: ../../../../../app/src/processing/app/Preferences.java:425 msgid "Save when verifying or uploading" -msgstr "" +msgstr "Lagre når du verifiserer og laster opp" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." @@ -1665,7 +1675,7 @@ msgstr "Lagrer..." #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" -msgstr "" +msgstr "Søk alle Skisse Faner" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." @@ -1690,7 +1700,7 @@ msgstr "Velg en ny plassering for skisseboken" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 msgid "Select version" -msgstr "" +msgstr "Velg versjon" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." @@ -1698,11 +1708,11 @@ msgstr "Valgt kort avhenger av '{0}' kjerne (ikke installert)" #: ../../../../../app/src/processing/app/Base.java:374 msgid "Selected board is not available" -msgstr "" +msgstr "Valgt kort er ikke tilgjengelig" #: ../../../../../app/src/processing/app/Base.java:423 msgid "Selected library is not available" -msgstr "" +msgstr "Valg bibliotek er ikke tilgjengelig" #: SerialMonitor.java:93 msgid "Send" @@ -1714,7 +1724,7 @@ msgstr "Seriell overvåker" #: ../../../../../app/src/processing/app/Editor.java:804 msgid "Serial Plotter" -msgstr "" +msgstr "Seriell Plotter" #: Serial.java:194 #, java-format @@ -1732,16 +1742,16 @@ msgstr "Fant ikke serieporten {0}.\nLast opp på nytt med en anne serieport?" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Serial ports" -msgstr "" +msgstr "Seriell porter" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format msgid "Setting build path to {0}" -msgstr "" +msgstr "Setter bygge-adresse til {0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Instillinger" #: Base.java:1681 msgid "Settings issues" @@ -1794,7 +1804,7 @@ msgstr "Skissen er for stor. Se http://www.arduino.cc/en/Guide/Troubleshooting#s msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "Skissen bruker {0} bytes ({2}%%) av program lagrings minnet. Maks er {1} bytes" #: Editor.java:510 msgid "Sketchbook" @@ -1810,15 +1820,15 @@ msgstr "Skissebok plassering:" #: ../../../processing/app/BaseNoGui.java:428 msgid "Sketchbook path not defined" -msgstr "" +msgstr "Skissebok mappen er ikke definert" #: ../../../../../app/src/processing/app/Preferences.java:185 msgid "Slovak" -msgstr "" +msgstr "Slovak" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "Slovener" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" @@ -1844,11 +1854,11 @@ msgstr "Spansk" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" -msgstr "" +msgstr "Den valgte mappen/zip filen inneholder ikke et gyldig bibliotek" #: ../../../../../app/src/processing/app/Base.java:466 msgid "Starting..." -msgstr "" +msgstr "Starter..." #: Base.java:540 msgid "Sunshine" @@ -1856,7 +1866,7 @@ msgstr "Solskinn" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Svenska bror" #: Preferences.java:84 msgid "System Default" @@ -1876,7 +1886,7 @@ 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 "" +msgstr "--upload alternativet støtter kun en fil om gangen" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." @@ -1887,7 +1897,7 @@ msgstr "Client klassen har blitt omdøpt til EthernetClient." msgid "" "The IDE includes an updated {0} package, but you're using an older one.\n" "Do you want to upgrade {0}?" -msgstr "" +msgstr "IDE'en inkluderer en oppdatert {0} pakke, men du bruker en eldre en.\nØnsker du å oppgradere {0}?" #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." @@ -1953,7 +1963,7 @@ 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 "Skissenavnet måtte endres. Skissenavn kan kun inneholde\nASCII karakterer og tall (men ikke starte med tall).\nDet må også være kortere enn 64 tegn." #: Base.java:259 msgid "" @@ -1968,7 +1978,7 @@ msgstr "Mappen for skisser eksisterer ikke lenger.\nArduino vil nå gå over til msgid "" "The specified sketchbook folder contains your copy of the IDE.\n" "Please choose a different folder for your sketchbook." -msgstr "" +msgstr "Den spesifiserte skissebok-mappen inneholder din kopi av IDE'en.\nVennligst velg en annen mappe som din skissebok." #: Sketch.java:1075 msgid "" @@ -1981,7 +1991,7 @@ msgstr "Denne filen har allerede blitt kopiert til den\nlokasjonen som du prøve msgid "" "This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" "Are you sure you want to delete it?" -msgstr "" +msgstr "Dette biblioteket er ikke listet i Bibliotek Administrasjonen. Du vil ikke kunne reinstallere det fra her.\nEr du sikker på at du ønsker å slette det?" #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" @@ -1994,7 +2004,7 @@ msgstr "Tid for pause" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format msgid "Tool {0} is not available for your operating system." -msgstr "" +msgstr "Verktøy {0} er ikke tilgjengelig for ditt operativsystem." #: Editor.java:663 msgid "Tools" @@ -2002,7 +2012,7 @@ msgstr "Verktøy" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" -msgstr "" +msgstr "Emne" #: Editor.java:1070 msgid "Troubleshooting" @@ -2015,15 +2025,15 @@ msgstr "Tyrkisk" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 msgid "Type" -msgstr "" +msgstr "Type" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Tast inn kort-passord for å få tilgang til konsollen" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Tast inn kort-passord for å laste opp ny skisse" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" @@ -2032,33 +2042,33 @@ msgstr "Ukrainsk" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "Kan ikke koble til: bruker skissen broen?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "Kan ikke koble til: prøver igjen" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" -msgstr "" +msgstr "Kan ikke koble til: feil passord?" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format msgid "Unable to find {0} in {1}" -msgstr "" +msgstr "Kan ikke finne {0} i {1}" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Klarer ikke åpne seriell overvåkeren" #: ../../../../../app/src/processing/app/Editor.java:2709 msgid "Unable to open serial plotter" -msgstr "" +msgstr "Kan ikke åpne seriell plotteren" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" +msgstr "Kan ikke nå arduino.cc grunnet mulige nettverksproblemer." #: Editor.java:1133 Editor.java:1355 msgid "Undo" @@ -2067,12 +2077,12 @@ msgstr "Angre" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format msgid "Unhandled type {0} in context key {1}" -msgstr "" +msgstr "Ubehandlet type {0} i context key {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format msgid "Unknown sketch file extension: {0}" -msgstr "" +msgstr "Ukjent skissefilnavn-endelse: {0}" #: Platform.java:168 msgid "" @@ -2084,7 +2094,7 @@ msgstr "Uspesifisert platform er ikke lenger tilgjengelig.\nLegg til \"launcher= #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "Kan oppdateres" #: UpdateCheck.java:111 msgid "Update" @@ -2096,7 +2106,7 @@ msgstr "Oppdater skissefilene til ny filtype under lagring (.pde -> .ino)" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" -msgstr "" +msgstr "Oppdaterer listen over installerte bibliotek" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -2112,7 +2122,7 @@ msgstr "Opplasting avbrutt." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "Opplasting avbrutt" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -2133,22 +2143,22 @@ msgstr "Bruk eksternt redigeringsprogram" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Brukernavn:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" +msgstr "Bruker bibliotek {0} ved versjon {1} i mappe {2} {3}" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "Bruker bibliotek {0} i mappe {1} {2}" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Bruker tidligere kompilert fil: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" @@ -2160,37 +2170,37 @@ msgstr "Sjekk kode etter opplasting" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Verifiser/Kompiler" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." -msgstr "" +msgstr "Verifiserer og kompilerer..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 msgid "Verifying archive integrity..." -msgstr "" +msgstr "Verifiserer arkiv-integriteten..." #: ../../../../../app/src/processing/app/Base.java:454 msgid "Verifying..." -msgstr "" +msgstr "Verifiserer..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Versjon {0} " #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 msgid "Version unknown" -msgstr "" +msgstr "Ukjent versjon" #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Versjon {0}" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnameser" #: Editor.java:1105 msgid "Visit Arduino.cc" @@ -2199,7 +2209,7 @@ msgstr "Besøk Arduino.cc" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" -msgstr "" +msgstr "ADVARSEL: Kategori '{0}' i bibliotek {1} er ikke gyldig. Innstiller til '{2}'" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format @@ -2211,7 +2221,7 @@ msgstr "" 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 "ADVARSEL: bibliotek {0} påstår at det kjører på {1} arkitektur(er) og kan være inkompatibel med det valgte kortet som kjører på {2} arkitektur(er)." #: Base.java:2128 msgid "Warning" @@ -2221,26 +2231,26 @@ msgstr "Advarsel" msgid "" "Warning: This core does not support exporting sketches. Please consider " "upgrading it or contacting its author" -msgstr "" +msgstr "Advarsel: Disse kjernene støtter ikke eksportering av skisser. Vennligst vurder å oppgradere eller kontakte utgiveren" #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" +msgstr "Advarsel: Fil {0} lenker til absolutt bane {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Advarsel: Tvingt til å stole på ukjent bidragsyter" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Advarsel: Tvungent ukjent skript er kjørt ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Advarsel: Ukjent kontributør, hopper over kjøring av skript ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format @@ -2260,7 +2270,7 @@ msgstr "" msgid "" "Warning: platform.txt from core '{0}' misses property {1}, automatically set" " to {2}. Consider upgrading this core." -msgstr "" +msgstr "Advarsel: platform.txt fra kjerne '{0}' mangler egenskap {1}, automatisk satt til {2}. Vurder oppgradering av denne kjernen." #: ../../../../../app/src/processing/app/Preferences.java:190 msgid "Western Frisian" @@ -2306,11 +2316,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Skissen kan ikke døpes om til \"{0}\"\\n fordi skissen allerede har en .cpp fil med det navnet." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Du kan ikke lagre skissen som \"{0}\"\nfordi skissen allrede har en .cpp fil med samme navn." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" @@ -2512,12 +2522,12 @@ msgstr "{0} biblioteker" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "{0} må være en mappe" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format msgid "{0} pattern is missing" -msgstr "" +msgstr "{0} mønster mangler" #: debug/Compiler.java:365 #, java-format 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 180d141c6..3fce5bee2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties @@ -8,11 +8,13 @@ # Translators: # Translators: # Translators: +# Translators: # Bj\u00f8rn Andreas, 2014 +# Kaare Jenssen, 2015 # lateralus, 2013 # Rune Fauske , 2013-2015 # Rune Fauske , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Norwegian Bokm\u00e5l (Norway) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Norwegian Bokm\u00e5l (Norway) (http\://www.transifex.com/mbanzi/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) @@ -25,20 +27,20 @@ #, java-format \ Used\:\ {0}=I bruk\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Tastatur' er kun st\u00f8ttet p\u00e5 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mus' er kun st\u00f8ttet p\u00e5 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information='arch' mappen er ikke lenger st\u00f8ttet\! Se http\://goo.gl/gfFJzU for mer informasjon. #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(redigeres kun n\u00e5r Arduino ikke kj\u00f8rer) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 -!(legacy)= +(legacy)=(legacy) #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir er ikke st\u00f8ttet lenger @@ -51,15 +53,15 @@ #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=Oppdatering tilgjengelig for noen av dine {0}boards{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=Oppdateringer tilgjengelig for noen av dine {0}boards{1} and {2}libraries{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=Oppdatering tilgjengelig for noen av dine {0}libraries{1} #: 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.= Vil du lagre endringer i denne skissen
f\u00f8r den lukkes?

Hvis du ikke lagrer, vil endringene g\u00e5 tapt. @@ -208,10 +210,10 @@ Auto\ Format=Autoformater Auto\ Format\ finished.=Autoformatering ferdig. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=Automatiske proxy instillinger #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=Automatisk proxy konfigurasjons URL\: #: SerialMonitor.java:110 Autoscroll=Bla automatisk @@ -235,7 +237,7 @@ Board=Kort #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format -!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=Kort {0} (platform {1}, package {2}) er ukjent #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -245,10 +247,10 @@ Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-se Board\:\ =Kort #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= +Boards\ Manager=Kort Administrasjon #: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= +Boards\ Manager...=Kort Administrasjon #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 Boards\ included\ in\ this\ package\:=Kort i denne pakken @@ -270,7 +272,7 @@ Browse=Bla i gjennom Build\ options\ changed,\ rebuilding\ all=Innstillinger for bygging er endret, bygger alt p\u00e5 nytt #: ../../../../../app/src/processing/app/Base.java:1210 -!Built-in\ Examples= +Built-in\ Examples=Innebygde Eksempler #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarsk @@ -542,7 +544,7 @@ Editor\ font\ size\:\ =Skriftst\u00f8rrelse for redigeringsprogrammet\: Editor\ language\:\ =Redigeringsspr\u00e5k\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= +Enable\ Code\ Folding=Aktiver Code Folding #: Preferences.java:92 English=Engelsk @@ -622,17 +624,21 @@ Error\ while\ burning\ bootloader.=Feil oppstod under skriving av oppstartslaste Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Feil under skriving av oppstartslaster\: mangler konfigurasjonsparameter '{0} #: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Feil under kompilering\: mangler '{0}' konfigurasjons parameter #: SketchCode.java:83 #, java-format -Error\ while\ loading\ code\ {0}=File ved lasting av koden {0} +Error\ while\ loading\ code\ {0}=Feil ved lasting av kode {0} #: Editor.java:2567 Error\ while\ printing.=Feil under utskrift. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 -Error\ while\ uploading=Det oppstod en feil under opplasting +Error\ while\ uploading=Det oppstod en feil under opplastingen #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 @@ -656,20 +662,20 @@ Estonian\ (Estonia)=Estlandsk (Estland) Examples=Eksempler #: ../../../../../app/src/processing/app/Base.java:1244 -!Examples\ from\ Custom\ Libraries= +Examples\ from\ Custom\ Libraries=Eksempler fra Egendefinerte Bibliotek #: ../../../../../app/src/processing/app/Base.java:1222 -!Examples\ from\ Libraries= +Examples\ from\ Libraries=Eksempler fra Bibliotek #: ../../../../../app/src/processing/app/Editor.java:753 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksportering-kansellert, endringer m\u00e5 f\u00f8rst lagres. #: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= +Export\ compiled\ Binary=Eksporter kompilert Bin\u00e6r-fil #: ../../../processing/app/Base.java:416 #, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= +Failed\ to\ open\ sketch\:\ "{0}"=Klarte ikke \u00e5pne skissen\: "{0}" #: Editor.java:491 File=Fil @@ -678,7 +684,7 @@ File=Fil Filipino=Filippinsk #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= +Filter\ your\ search...=Filtrer s\u00f8ket ditt... #: FindReplace.java:124 FindReplace.java:127 Find=Finn @@ -687,7 +693,7 @@ Find=Finn Find\ Next=Finn neste #: Editor.java:1259 -Find\ Previous=Finn forige +Find\ Previous=Finn forrige #: Editor.java:1086 Editor.java:2775 Find\ in\ Reference=Finn i referanse @@ -706,11 +712,11 @@ Finnish=Finsk Fix\ Encoding\ &\ Reload=Fiks tegnkoding & Last p\u00e5 nytt #: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=For mer informasjon om installering av bibliotek, se http\://www.arduino.cc/en/Guide/Libraries\n #: ../../../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}=Tvinger restart ved 1200bps \u00e5pning/lukking p\u00e5 port {0} #: Preferences.java:95 French=Fransk @@ -725,7 +731,7 @@ Galician=Galisisk !Galician\ (Spain)= #: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= +Galileo\ Help=Galileo Hjelp #: ../../../processing/app/Preferences.java:94 Georgian=Georgisk @@ -734,21 +740,21 @@ Georgian=Georgisk German=Tysk #: Editor.java:1054 -Getting\ Started=Kom i gang +Getting\ Started=Kom i Gang #: ../../../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 variabler bruker {0} bytes ({2}%%) av dynamisk minne, som etterlater {3} bytes til lokale variabler. Maks er {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 variabler bruker {0} bytes av dynamisk minne. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=G\u00e5 til linje #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=G\u00e5 til linje... #: Preferences.java:98 Greek=Gresk @@ -763,7 +769,7 @@ Help=Hjelp Hindi=Hindi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Tjener navn\: #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Hva med \u00e5 lagre skissen f\u00f8r \ndu pr\u00f8ver \u00e5 omd\u00f8pe den? @@ -787,11 +793,11 @@ Ignoring\ sketch\ with\ bad\ name=Overser skisse med ugyldig navn 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? #: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= +Include\ Library=Inkluder Bibliotek #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=Feil IDE installasjons mappe #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Mer innrykk @@ -800,7 +806,7 @@ Increase\ Indent=Mer innrykk Indonesian=Indonesisk #: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= +Initializing\ packages...=Initialiserer pakkene... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -808,28 +814,28 @@ Indonesian=Indonesisk #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=Installer #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=Installasjonen er fullf\u00f8rt\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=Installert #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= +Installing\ boards...=Installerer kort... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=Installerer bibliotek\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=Installerer verkt\u00f8y ({0}/{1})... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=Installerer... #: ../../../processing/app/Base.java:1204 #, java-format @@ -837,7 +843,7 @@ Invalid\ library\ found\ in\ {0}\:\ {1}=Ugyldig bibliotek i {0}\: {1} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format -!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=Ugyldig tegnbruk\: Ingen lukking av [{0}] funnet. #: Preferences.java:102 Italian=Italiensk @@ -852,39 +858,39 @@ Korean=Koreansk Latvian=Latvisk #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=Bibliotek Administrasjon #: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Biblioteket er lagt til i dine bibliotek. Sjekk "Inkluder Bibliotek" menyen #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 -!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Biblioteket kan ikke bruke b\u00e5de 'src' og 'utility' mappene. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= +Library\ is\ already\ installed\:\ {0}\ version\ {1}=Biblioteket er allerede installert\: {0} versjon {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=Linje nummer\: #: Preferences.java:106 Lithuaninan=Litauisk #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=Laster konfigurasjon... #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format -!Looking\ for\ recipes\ like\ {0}*{1}= +Looking\ for\ recipes\ like\ {0}*{1}=Ser etter mottakere som {0}*{1} #: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= +Low\ memory\ available,\ stability\ problems\ may\ occur.=Lite minne tilgjengelig, stabilitetsproblemer kan inntreffe. #: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= +Manage\ Libraries...=Administrer Bibliotek... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=Manuell proxy konfigurasjon #: Preferences.java:107 Marathi=Marathi @@ -894,13 +900,13 @@ Message=Melding #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format -!Missing\ '{0}'\ from\ library\ in\ {1}= +Missing\ '{0}'\ from\ library\ in\ {1}=Mangler '{0}' fra biblioteket i {1} #: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= +Mode\ not\ supported=Modus er ikke st\u00f8ttet #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=Mer informasjon #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Flere instillinger kan redigeres direkte i filen @@ -909,14 +915,14 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Flere instillinger k Moving=Flytter #: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= +Multiple\ files\ not\ supported=Mange filer er ikke st\u00f8ttet #: ../../../processing/app/debug/Compiler.java:520 #, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= +Multiple\ libraries\ were\ found\ for\ "{0}"=Mange bibliotek ble funnet for "{0}" #: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= +Must\ specify\ exactly\ one\ sketch\ file=Du m\u00e5 spesifisere n\u00f8yaktig -en- skissefil #: Sketch.java:282 Name\ for\ new\ file\:=Navn p\u00e5 ny fil\: @@ -925,55 +931,55 @@ Name\ for\ new\ file\:=Navn p\u00e5 ny fil\: Nepali=Nepalsk #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=Nettverk #: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= +Network\ ports=Nettverks-porter #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -Network\ upload\ using\ programmer\ not\ supported=Nettverksopplasting ved bruk av Programmerer er ikke supportert +Network\ upload\ using\ programmer\ not\ supported=Nettverksopplasting ved bruk av Programmerer er ikke st\u00f8ttet #: EditorToolbar.java:41 Editor.java:493 New=Ny #: EditorHeader.java:292 -New\ Tab=Ny fane +New\ Tab=Ny Fane #: SerialMonitor.java:112 Newline=Linjeskift #: EditorHeader.java:340 -Next\ Tab=Neste fane +Next\ Tab=Neste Fane #: Preferences.java:78 UpdateCheck.java:108 No=Nei #: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= +No\ authorization\ data\ found=Ingen autorisasjonsdata funnet #: 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= +No\ command\ line\ parameters\ found=Ingen kommandolinje parametere funnet #: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= +No\ compiled\ sketch\ found=Ingen kompilert skisse funnet #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Ingen filer ble lagt til skissen. #: Platform.java:167 -No\ launcher\ available=Ikke noe startprogramm tilgjengelig +No\ launcher\ available=Ikke noe startprogram tilgjengelig #: SerialMonitor.java:112 No\ line\ ending=Ingen linjeslutt #: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= +No\ parameters=Ingen parametere #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=Ingen proxy #: 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. @@ -984,20 +990,20 @@ No\ reference\ available\ for\ "{0}"=Ingen referanse tilgjengelig for "{0}" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= +No\ sketch=Ingen skisse #: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= +No\ sketchbook=Ingen skissebok #: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= +No\ valid\ code\ files\ found=Ingen gyldige kode-filer funnet #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Inge gyldige maksinvare-definisasjoner funnet i mappe {0}. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= +None=Ingen #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norsk bokm\u00e5l @@ -1007,19 +1013,19 @@ Not\ enough\ memory;\ see\ 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 -OK=OK +OK=Greit #: 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= +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Bare --verify, --upload eller --get-pref er st\u00f8ttet #: EditorToolbar.java:41 Open=\u00c5pne #: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= +Open\ Recent=\u00c5pne Nylig Brukt #: Editor.java:2688 Open\ URL=\u00c5pne URL @@ -1043,39 +1049,39 @@ Paste=Lim inn Persian=Persisk #: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= +Persian\ (Iran)=Perser #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format -!Platform\ {0}\ (package\ {1})\ is\ unknown= +Platform\ {0}\ (package\ {1})\ is\ unknown=Plattform {0} (package {1}) er ukjent #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= +Please\ confirm\ boards\ deletion=Vennligst bekreft sletting av kort #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= +Please\ confirm\ library\ deletion=Vennligst bekreft sletting av bibliotek #: 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.= +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Vennligst importer Wire biblioteket fra Skisse -> Importer Bibliotek menyen #: ../../../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=Vennligst velg en programmerer (ISP) fra Verkt\u00f8y -> Programmerer menyen #: Preferences.java:110 Polish=Polsk #: ../../../processing/app/Editor.java:718 -!Port= +Port=Port #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=Port nummer\: #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=Portugisisk #: ../../../processing/app/Preferences.java:127 !Portuguese\ (Brazil)= @@ -1087,13 +1093,13 @@ Polish=Polsk Preferences=Innstillinger #: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= +Preparing\ boards...=Forbereder kort... #: FindReplace.java:123 FindReplace.java:128 Previous=Forrige #: EditorHeader.java:326 -Previous\ Tab=Forrige fane +Previous\ Tab=Forrige Fane #: Editor.java:571 Print=Skriv ut @@ -1111,13 +1117,13 @@ Problem\ Opening\ Folder=Problem ved \u00e5pning av mappe Problem\ Opening\ URL=Problemer ved \u00e5pning av URL #: Base.java:227 -Problem\ Setting\ the\ Platform=Problemer under setting av platform +Problem\ Setting\ the\ Platform=Problemer under valg av plattform #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=Problemer med tilgang til kort-mappen /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =Problemer med \u00e5 f\u00e5 tilgang til filer i mappen #: Base.java:1673 Problem\ getting\ data\ folder=Problem ved henting av datamappe @@ -1136,13 +1142,13 @@ Programmer=Programmerer #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format -!Progress\ {0}= +Progress\ {0}=Fremdrift {0} #: Base.java:783 Editor.java:593 Quit=Avslutt #: ../../../../../app/src/processing/app/Base.java:1233 -!RETIRED= +RETIRED=UTE AV PRODUKSJON #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Gj\u00f8r om @@ -1151,15 +1157,15 @@ Redo=Gj\u00f8r om Reference=Referanse #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= +Remove=Fjern #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format -!Removing\ library\:\ {0}= +Removing\ library\:\ {0}=Fjern bibliotek\: {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= +Removing...=Fjerner... #: EditorHeader.java:300 Rename=D\u00f8p om @@ -1185,11 +1191,11 @@ Romanian=Rumensk #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format -!Running\ recipe\:\ {0}= +Running\ recipe\:\ {0}=Kj\u00f8rer oppskrift\: {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format -!Running\:\ {0}= +Running\:\ {0}=Kj\u00f8rer\: {0} #: Preferences.java:114 Russian=Russisk @@ -1212,13 +1218,13 @@ Save\ changes\ to\ "{0}"?\ \ =Lagre endringer i "{0}"? Save\ sketch\ folder\ as...=Lagre skissemappe som... #: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= +Save\ when\ verifying\ or\ uploading=Lagre n\u00e5r du verifiserer og laster opp #: Editor.java:2270 Editor.java:2308 Saving...=Lagrer... #: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= +Search\ all\ Sketch\ Tabs=S\u00f8k alle Skisse Faner #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Velg (eller opprett ny) mappe for skisser... @@ -1237,16 +1243,16 @@ Select\ new\ sketchbook\ location=Velg en ny plassering for skisseboken #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= +Select\ version=Velg versjon #: ../../../processing/app/debug/Compiler.java:146 Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Valgt kort avhenger av '{0}' kjerne (ikke installert) #: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= +Selected\ board\ is\ not\ available=Valgt kort er ikke tilgjengelig #: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= +Selected\ library\ is\ not\ available=Valg bibliotek er ikke tilgjengelig #: SerialMonitor.java:93 Send=Send @@ -1255,7 +1261,7 @@ Send=Send Serial\ Monitor=Seriell overv\u00e5ker #: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= +Serial\ Plotter=Seriell Plotter #: Serial.java:194 #, java-format @@ -1266,14 +1272,14 @@ 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?=Fant ikke serieporten {0}.\nLast opp p\u00e5 nytt med en anne serieport? #: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= +Serial\ ports=Seriell porter #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format -!Setting\ build\ path\ to\ {0}= +Setting\ build\ path\ to\ {0}=Setter bygge-adresse til {0} #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=Instillinger #: Base.java:1681 Settings\ issues=Problemer med innstillinger @@ -1310,7 +1316,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.=Skissen bruker {0} bytes ({2}%%) av program lagrings minnet. Maks er {1} bytes #: Editor.java:510 Sketchbook=Skissebok @@ -1322,13 +1328,13 @@ Sketchbook\ folder\ disappeared=Mappen for skisser er forsvunnet Sketchbook\ location\:=Skissebok plassering\: #: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= +Sketchbook\ path\ not\ defined=Skissebok mappen er ikke definert #: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= +Slovak=Slovak #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=Slovener #: 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.=Noen filer er markert som "skrivebeskyttet". Derfor m\u00e5 \nskissen lagres p\u00e5 nytt i en annen lokasjon\nog pr\u00f8v p\u00e5 nytt. @@ -1344,16 +1350,16 @@ Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Beklager, en ski Spanish=Spansk #: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= +Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=Den valgte mappen/zip filen inneholder ikke et gyldig bibliotek #: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= +Starting...=Starter... #: Base.java:540 Sunshine=Solskinn #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=Svenska bror #: Preferences.java:84 System\ Default=System standardverdi @@ -1368,14 +1374,14 @@ Tamil=Tamilsk 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= +The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=--upload alternativet st\u00f8tter kun en fil om gangen #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client klassen har blitt omd\u00f8pt til EthernetClient. #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= +The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=IDE'en inkluderer en oppdatert {0} pakke, men du bruker en eldre en.\n\u00d8nsker du \u00e5 oppgradere {0}? #: debug/Compiler.java:420 The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server klassen har blitt omd\u00f8pt til EthernetServer. @@ -1408,19 +1414,19 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic 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. #: ../../../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.=Skissenavnet m\u00e5tte endres. Skissenavn kan kun inneholde\nASCII karakterer og tall (men ikke starte med tall).\nDet m\u00e5 ogs\u00e5 v\u00e6re kortere enn 64 tegn. #: 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. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= +The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=Den spesifiserte skissebok-mappen inneholder din kopi av IDE'en.\nVennligst velg en annen mappe som din skissebok. #: 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'. #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= +This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=Dette biblioteket er ikke listet i Bibliotek Administrasjonen. Du vil ikke kunne reinstallere det fra her.\nEr du sikker p\u00e5 at du \u00f8nsker \u00e5 slette det? #: ../../../processing/app/EditorStatus.java:467 This\ report\ would\ have\ more\ information\ with=Denne rapporten vil inkludere mer informasjon med @@ -1430,13 +1436,13 @@ Time\ for\ a\ Break=Tid for pause #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= +Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=Verkt\u00f8y {0} er ikke tilgjengelig for ditt operativsystem. #: Editor.java:663 Tools=Verkt\u00f8y #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= +Topic=Emne #: Editor.java:1070 Troubleshooting=Feils\u00f8king @@ -1446,58 +1452,58 @@ Turkish=Tyrkisk #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= +Type=Type #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Tast inn kort-passord for \u00e5 f\u00e5 tilgang til konsollen #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Tast inn kort-passord for \u00e5 laste opp ny skisse #: ../../../processing/app/Preferences.java:118 Ukrainian=Ukrainsk #: ../../../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?=Kan ikke koble til\: bruker skissen broen? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=Kan ikke koble til\: pr\u00f8ver igjen #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=Kan ikke koble til\: feil passord? #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format -!Unable\ to\ find\ {0}\ in\ {1}= +Unable\ to\ find\ {0}\ in\ {1}=Kan ikke finne {0} i {1} #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=Klarer ikke \u00e5pne seriell overv\u00e5keren #: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= +Unable\ to\ open\ serial\ plotter=Kan ikke \u00e5pne seriell plotteren #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= +Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Kan ikke n\u00e5 arduino.cc grunnet mulige nettverksproblemer. #: Editor.java:1133 Editor.java:1355 Undo=Angre #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -!Unhandled\ type\ {0}\ in\ context\ key\ {1}= +Unhandled\ type\ {0}\ in\ context\ key\ {1}=Ubehandlet type {0} i context key {1} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format -!Unknown\ sketch\ file\ extension\:\ {0}= +Unknown\ sketch\ file\ extension\:\ {0}=Ukjent skissefilnavn-endelse\: {0} #: 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=Uspesifisert platform er ikke lenger tilgjengelig.\nLegg til "launcher\=/sti/til/app" i preferences.txt for \u00e5 kunne \u00e5pne URLer og mapper. #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=Kan oppdateres #: UpdateCheck.java:111 Update=Oppdater @@ -1506,7 +1512,7 @@ Update=Oppdater Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Oppdater skissefilene til ny filtype under lagring (.pde -> .ino) #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= +Updating\ list\ of\ installed\ libraries=Oppdaterer listen over installerte bibliotek #: EditorToolbar.java:41 Editor.java:545 Upload=last opp @@ -1518,7 +1524,7 @@ Upload\ Using\ Programmer=Last opp med en Programmerer Upload\ canceled.=Opplasting avbrutt. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=Opplasting avbrutt #: Editor.java:2378 Uploading\ to\ I/O\ Board...=Laster opp til I/O kort... @@ -1534,19 +1540,19 @@ Use\ external\ editor=Bruk eksternt redigeringsprogram #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=Brukernavn\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= +Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=Bruker bibliotek {0} ved versjon {1} i mappe {2} {3} #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=Bruker bibliotek {0} i mappe {1} {2} #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Bruker tidligere kompilert fil\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 Verify=Verifiser @@ -1555,37 +1561,37 @@ Verify=Verifiser Verify\ code\ after\ upload=Sjekk kode etter opplasting #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=Verifiser/Kompiler #: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= +Verifying\ and\ uploading...=Verifiserer og kompilerer... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= +Verifying\ archive\ integrity...=Verifiserer arkiv-integriteten... #: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= +Verifying...=Verifiserer... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format -!Version\ {0}= +Version\ {0}=Versjon {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= +Version\ unknown=Ukjent versjon #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format -!Version\ {0}= +Version\ {0}=Versjon {0} #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnameser #: Editor.java:1105 Visit\ Arduino.cc=Bes\u00f8k Arduino.cc #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format -!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=ADVARSEL\: Kategori '{0}' i bibliotek {1} er ikke gyldig. Innstiller til '{2}' #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format @@ -1593,28 +1599,28 @@ 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).= +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=ADVARSEL\: bibliotek {0} p\u00e5st\u00e5r at det kj\u00f8rer p\u00e5 {1} arkitektur(er) og kan v\u00e6re inkompatibel med det valgte kortet som kj\u00f8rer p\u00e5 {2} arkitektur(er). #: Base.java:2128 Warning=Advarsel #: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= +Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=Advarsel\: Disse kjernene st\u00f8tter ikke eksportering av skisser. Vennligst vurder \u00e5 oppgradere eller kontakte utgiveren #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= +Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Advarsel\: Fil {0} lenker til absolutt bane {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=Advarsel\: Tvingt til \u00e5 stole p\u00e5 ukjent bidragsyter #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Advarsel\: Tvungent ukjent skript er kj\u00f8rt ({0}) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Advarsel\: Ukjent kontribut\u00f8r, hopper over kj\u00f8ring av skript ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format @@ -1625,7 +1631,7 @@ Warning=Advarsel #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Advarsel\: platform.txt fra kjerne '{0}' mangler egenskap {1}, automatisk satt til {2}. Vurder oppgradering av denne kjernen. #: ../../../../../app/src/processing/app/Preferences.java:190 Western\ Frisian=Vestfrisisk @@ -1657,8 +1663,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Du kan ikke impo #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Skissen kan ikke d\u00f8pes om til "{0}"\\n fordi skissen allerede har en .cpp fil med det navnet. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan ikke lagre skissen som "{0}"\nfordi skissen allrede har en .cpp fil med samme navn. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Du kan ikke lagre skissen i en mappe inn \ni seg selv. Dette vil fortsette i all evighet. @@ -1785,11 +1791,11 @@ version\ {0}=versjon {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder={0} m\u00e5 v\u00e6re en mappe #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format -!{0}\ pattern\ is\ missing= +{0}\ pattern\ is\ missing={0} m\u00f8nster mangler #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_ne.po b/arduino-core/src/processing/app/i18n/Resources_ne.po index 00f19e5f2..44aa23d7d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ne.po +++ b/arduino-core/src/processing/app/i18n/Resources_ne.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Paras Nath Chaudhary , 2013 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Nepali (http://www.transifex.com/mbanzi/arduino-ide-15/language/ne/)\n" "MIME-Version: 1.0\n" @@ -37,12 +38,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -874,6 +878,11 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2303,10 +2312,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 diff --git a/arduino-core/src/processing/app/i18n/Resources_ne.properties b/arduino-core/src/processing/app/i18n/Resources_ne.properties index 18dd0581f..cc542dbd2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ne.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ne.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Paras Nath Chaudhary , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Nepali (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Nepali (http\://www.transifex.com/mbanzi/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)= @@ -22,11 +23,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Error=\u0924\u094d\u0930\u0941\u091f\u0940 #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1654,8 +1659,8 @@ Yes=\u0939\u094b #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= diff --git a/arduino-core/src/processing/app/i18n/Resources_nl.po b/arduino-core/src/processing/app/i18n/Resources_nl.po index 17295301d..b2bf9b639 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl.po +++ b/arduino-core/src/processing/app/i18n/Resources_nl.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # MrWhammy , 2013,2015 # MrWhammy , 2012 # devMaeb , 2014 @@ -19,7 +20,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Dutch (http://www.transifex.com/mbanzi/arduino-ide-15/language/nl/)\n" "MIME-Version: 1.0\n" @@ -42,13 +43,16 @@ msgstr "Niet gebruikt: {0}" msgid " Used: {0}" msgstr "Gebruikt: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' kan alleen met de Arduino Leonardo worden gebruikt" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' kan alleen met de Arduino Leonardo worden gebruikt" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -879,6 +883,11 @@ msgstr "Fout bij het laden van code {0}" msgid "Error while printing." msgstr "Fout bij het afdrukken." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Fout bij het uploaden" @@ -2308,11 +2317,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "De schets kan niet hernoemd worden naar \"{0}\",\nomdat de schets al een .ccp-bestand met deze naam bevat." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 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 met deze naam bevat." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_nl.properties b/arduino-core/src/processing/app/i18n/Resources_nl.properties index 0ffd38a7b..390ef6129 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nl.properties @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # MrWhammy , 2013,2015 # MrWhammy , 2012 # devMaeb , 2014 # Jan Verheijen , 2014 # jkf , 2012 # Robin van der Vliet , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Dutch (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Dutch (http\://www.transifex.com/mbanzi/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)=(herstart van Arduino nodig) @@ -27,11 +28,11 @@ #, java-format \ Used\:\ {0}=Gebruikt\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' kan alleen met de Arduino Leonardo worden gebruikt +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' kan alleen met de Arduino Leonardo worden gebruikt +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=De 'arch' map wordt niet meer ondersteund\! Ga naar http\://goo.gl/gfFJzU voor meer informatie @@ -633,6 +634,10 @@ Error\ while\ loading\ code\ {0}=Fout bij het laden van code {0} #: Editor.java:2567 Error\ while\ printing.=Fout bij het afdrukken. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Fout bij het uploaden @@ -1659,8 +1664,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Het is niet moge #: 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 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 met deze naam bevat. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 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. 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 ca0958611..8652a5708 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl_NL.po +++ b/arduino-core/src/processing/app/i18n/Resources_nl_NL.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Jeroen Doggen , 2012 # TheRevMan , 2014 msgid "" @@ -15,7 +16,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mbanzi/arduino-ide-15/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -38,13 +39,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Toetsenbord' wordt enkel ondersteund door de Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Muis' wordt enkel ondersteund door de Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -875,6 +879,11 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2304,10 +2313,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 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 dcd681aa7..51706ca9f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties @@ -8,9 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Jeroen Doggen , 2012 # TheRevMan , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Dutch (Netherlands) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Dutch (Netherlands) (http\://www.transifex.com/mbanzi/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)= @@ -23,11 +24,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Toetsenbord' wordt enkel ondersteund door de Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Muis' wordt enkel ondersteund door de Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -629,6 +630,10 @@ Error\ reading\ preferences=Fout bij het lezen van de voorkeuren #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1655,8 +1660,8 @@ Yes=Ja #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= diff --git a/arduino-core/src/processing/app/i18n/Resources_pl.po b/arduino-core/src/processing/app/i18n/Resources_pl.po index 0b65721ad..9b663ceb5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pl.po +++ b/arduino-core/src/processing/app/i18n/Resources_pl.po @@ -8,18 +8,19 @@ # Translators: # Translators: # Translators: +# Translators: # Jan Bielak , 2013-2014 # Krzysztof Zbudniewek , 2015 # thedead4fun , 2015 # Szymon Borecki , 2015 -# Tom Box , 2015 +# Tomasz Pudło , 2015 # Voltinus , 2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Polish (http://www.transifex.com/mbanzi/arduino-ide-15/language/pl/)\n" "MIME-Version: 1.0\n" @@ -42,13 +43,16 @@ msgstr "Nie wykorzystane: {0}" msgid " Used: {0}" msgstr "Wykorzystane: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Klawiatura' wspierana tylko na Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Myszka\" wspierana tylko na Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -879,6 +883,11 @@ msgstr "Błąd przy odczycie kodu {0}" msgid "Error while printing." msgstr "Błąd wydruku." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Błąd przy wgrywaniu" @@ -1033,11 +1042,11 @@ msgstr "Globalne zmienne używają {0} bajtów dynamicznej pamięci." #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Idź do linii" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Idź do linii..." #: Preferences.java:98 msgid "Greek" @@ -1198,7 +1207,7 @@ msgstr "Biblioteka jest już zainstalowana: {0} wersja {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Numer linii:" #: Preferences.java:106 msgid "Lithuaninan" @@ -2308,11 +2317,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Nie można zmienić nazwy szkicu na \"{0}\"\nponieważ szkic już ma plik .cpp z taką nazwą." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Nie można zapisać szkicu jako \"{0}\"\nponieważ szkic już ma plik .cpp z taką nazwą." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_pl.properties b/arduino-core/src/processing/app/i18n/Resources_pl.properties index 3ef90ef54..3b78a1739 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pl.properties @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Jan Bielak , 2013-2014 # Krzysztof Zbudniewek , 2015 # thedead4fun , 2015 # Szymon Borecki , 2015 -# Tom Box , 2015 +# Tomasz Pud\u0142o , 2015 # Voltinus , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Polish (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Polish (http\://www.transifex.com/mbanzi/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) @@ -27,11 +28,11 @@ #, java-format \ Used\:\ {0}=Wykorzystane\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Klawiatura' wspierana tylko na Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Myszka" wspierana tylko na Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=folder 'arch' nie jest ju\u017c obs\u0142ugiwany\! Wi\u0119cej informacji pod adresem http\://goo.gl/gfFJzU @@ -633,6 +634,10 @@ Error\ while\ loading\ code\ {0}=B\u0142\u0105d przy odczycie kodu {0} #: Editor.java:2567 Error\ while\ printing.=B\u0142\u0105d wydruku. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=B\u0142\u0105d przy wgrywaniu @@ -747,10 +752,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globalne zmienne u\u017cywaj\u0105 {0} bajt\u00f3w dynamicznej pami\u0119ci. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=Id\u017a do linii #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=Id\u017a do linii... #: Preferences.java:98 Greek=Grecki @@ -867,7 +872,7 @@ Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Biblioteka nie mo\u01 Library\ is\ already\ installed\:\ {0}\ version\ {1}=Biblioteka jest ju\u017c zainstalowana\: {0} wersja {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=Numer linii\: #: Preferences.java:106 Lithuaninan=Litewski @@ -1659,8 +1664,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Nie mo\u017cesz #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nie mo\u017cna zmieni\u0107 nazwy szkicu na "{0}"\nponiewa\u017c szkic ju\u017c ma plik .cpp z tak\u0105 nazw\u0105. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nie mo\u017cna zapisa\u0107 szkicu jako "{0}"\nponiewa\u017c szkic ju\u017c ma plik .cpp z tak\u0105 nazw\u0105. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nie mo\u017cesz zapisa\u0107 szkicu w folderze\nwewn\u0105trz pliku. To by ci\u0105gn\u0119\u0142o si\u0119 w niesko\u0144czono\u015b\u0107. diff --git a/arduino-core/src/processing/app/i18n/Resources_pt.po b/arduino-core/src/processing/app/i18n/Resources_pt.po index bf06cb642..886340a94 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Luis Correia , 2012 # n3okill , 2014 # nelsonduvall , 2012,2014 @@ -22,7 +23,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Portuguese (http://www.transifex.com/mbanzi/arduino-ide-15/language/pt/)\n" "MIME-Version: 1.0\n" @@ -45,13 +46,16 @@ msgstr "Não utilizado: {0}" msgid " Used: {0}" msgstr "Utilizado: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Teclado' é apenas suportado no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Rato' é apenas suportado no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -882,6 +886,11 @@ msgstr "Erro ao carregar o código {0}" msgid "Error while printing." msgstr "Erro ao imprimir." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Erro a enviar" @@ -2311,11 +2320,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Não pode mudar o nome para \"{0}\" porque o rascunho já tem um ficheiro com a extensão .cpp que usa esse nome." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Não pode guardar o rascunho como \"{0}\"\nporque o rascunho já tem um ficheiro .cpp com esse nome." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt.properties b/arduino-core/src/processing/app/i18n/Resources_pt.properties index 5dad14aad..a04a1607a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Luis Correia , 2012 # n3okill , 2014 # nelsonduvall , 2012,2014 @@ -17,7 +18,7 @@ # Paulo Monteiro , 2012 # Pedro Santos , 2012 # renatose , 2012,2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (http\://www.transifex.com/mbanzi/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)=(requer rein\u00edcio do Arduino) @@ -30,11 +31,11 @@ #, java-format \ Used\:\ {0}=Utilizado\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclado' \u00e9 apenas suportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rato' \u00e9 apenas suportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -636,6 +637,10 @@ Error\ while\ loading\ code\ {0}=Erro ao carregar o c\u00f3digo {0} #: Editor.java:2567 Error\ while\ printing.=Erro ao imprimir. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Erro a enviar @@ -1662,8 +1667,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=N\u00e3 #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=N\u00e3o pode mudar o nome para "{0}" porque o rascunho j\u00e1 tem um ficheiro com a extens\u00e3o .cpp que usa esse nome. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=N\u00e3o pode guardar o rascunho como "{0}"\nporque o rascunho j\u00e1 tem um ficheiro .cpp com esse nome. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=N\u00e3o podes guardar o rascunho num directorio\ndentro de si pr\u00f3prio. Isto continuaria para todo o sempre. 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 26859959c..37ae45a62 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_BR.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt_BR.po @@ -8,8 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # andre graes , 2012 # Erick Simões , 2014-2015 +# Everton Leite , 2015 # Gustavo Bertoli, 2015 # Henrique P. Machado , 2013 # Philipe Rabelo , 2013 @@ -20,7 +22,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mbanzi/arduino-ide-15/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -43,19 +45,22 @@ msgstr "Não usado: {0}" msgid " Used: {0}" msgstr "Usado: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Teclado\" suportado apenas no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' suportado apenas no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " "information" -msgstr "" +msgstr "A pasta 'arch' não é mais suportada! Para mais informações, acesse http://goo.gl/gfFJzU" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -63,7 +68,7 @@ msgstr "(editar apenas quando o Arduino não estiver rodando)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 msgid "(legacy)" -msgstr "" +msgstr "(legado)" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" @@ -82,18 +87,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Atualização disponível para algumas de suas {0}placas{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Atualização disponível para algumas de suas {0}placas{1} e {2}bibliotecas{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Atualização disponível para algumas de suas {0}bibliotecas{1}" #: Editor.java:2053 msgid "" @@ -147,11 +152,11 @@ msgstr "Adicionar Arquivo..." #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" -msgstr "" +msgstr "URLs Adicionais de Gerenciadores de Placas" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 msgid "Additional Boards Manager URLs: " -msgstr "" +msgstr "URLs Adicionais de Gerenciadores de Placas:" #: ../../../../../app/src/processing/app/Preferences.java:161 msgid "Afrikaans" @@ -165,7 +170,7 @@ msgstr "Albanês" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 msgid "All" -msgstr "" +msgstr "Todos" #: tools/FixEncoding.java:77 msgid "" @@ -311,7 +316,7 @@ msgstr "Detectar automaticamente definições de proxy" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "URL para configuração automática de proxy:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -342,7 +347,7 @@ msgstr "Placa" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format msgid "Board {0} (platform {1}, package {2}) is unknown" -msgstr "" +msgstr "Placa {0} (plataforma {1}, pacote {2}) é desconhecida" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -370,7 +375,7 @@ msgstr "Placas incluídas nesse pacote:" #: ../../../processing/app/debug/Compiler.java:1273 #, java-format msgid "Bootloader file specified but missing: {0}" -msgstr "" +msgstr "O arquivo do Bootloader foi especificado mas não pôde ser encontrado: {0}" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" @@ -390,7 +395,7 @@ msgstr "Opções de compilação alteradas, recompilando tudo" #: ../../../../../app/src/processing/app/Base.java:1210 msgid "Built-in Examples" -msgstr "" +msgstr "Exemplos embutidos" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" @@ -415,7 +420,7 @@ msgstr "CRC não confere. Arquivo corrompido." #: ../../../processing/app/Base.java:379 #, java-format msgid "Can only pass one of: {0}" -msgstr "" +msgstr "Pode passar somente um de: {0}" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 @@ -437,7 +442,7 @@ msgstr "Não é possível renomear" #: ../../../processing/app/Base.java:465 msgid "Cannot specify any sketch files" -msgstr "" +msgstr "Não é possível especificar nenhum arquivo de sketch" #: SerialMonitor.java:112 msgid "Carriage return" @@ -465,7 +470,7 @@ msgstr "Chinês (Taiwan) (Big5)" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" -msgstr "" +msgstr "Clique para ver uma lista de URLs de suporte de placas não oficiais" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -675,7 +680,7 @@ msgstr "Mostrar números de linhas" msgid "" "Do you want to remove {0}?\n" "If you do so you won't be able to use {0} any more." -msgstr "" +msgstr "Deseja remover {0}?\nSe for removido não será mais possível utilizar {0}." #: Editor.java:2064 msgid "Don't Save" @@ -735,7 +740,7 @@ msgstr "Carregando índices de plataformas..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format msgid "Downloading tools ({0}/{1})." -msgstr "" +msgstr "Baixando ferramentas ({0}/{1})." #: Preferences.java:91 msgid "Dutch" @@ -747,7 +752,7 @@ msgstr "Holandês (Holanda)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" -msgstr "" +msgstr "Ajuda Edison" #: Editor.java:1130 msgid "Edit" @@ -763,7 +768,7 @@ msgstr "Idioma do editor:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" -msgstr "" +msgstr "Habilitar Dobramento de Código" #: Preferences.java:92 msgid "English" @@ -776,11 +781,11 @@ msgstr "Inglês (Britânico)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 msgid "Enter a comma separated list of urls" -msgstr "" +msgstr "Entre com uma lista de urls separadas por vírgula" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 msgid "Enter additional URLs, one for each row" -msgstr "" +msgstr "Entre com URLs adicionais, uma por linha" #: Editor.java:1062 msgid "Environment" @@ -803,7 +808,7 @@ msgstr "Erro compilando." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format msgid "Error downloading {0}" -msgstr "" +msgstr "Erro durante o download de {0}" #: Base.java:1674 msgid "Error getting the Arduino data folder." @@ -831,7 +836,7 @@ msgstr "Erro ao abrir porta serial \"{0}\"." msgid "" "Error opening serial port ''{0}''. Try consulting the documentation at " "http://playground.arduino.cc/Linux/All#Permission" -msgstr "" +msgstr "Erro abrindo a porta serial \"{0}\". Tente consultar a documentação em http://playground.arduino.cc/Linux/All#Permission" #: Preferences.java:277 msgid "Error reading preferences" @@ -848,7 +853,7 @@ msgstr "Erro lendo o arquivo de preferências. Por favor, delete (ou remova) \\n #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 msgid "Error running post install script" -msgstr "" +msgstr "Erro ao executar o script pós instalação" #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " @@ -880,6 +885,11 @@ msgstr "Erro durante o carregamento do código {0}" msgid "Error while printing." msgstr "Erro durante impressão." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Erro durante o carregamento" @@ -913,19 +923,19 @@ msgstr "Exemplos" #: ../../../../../app/src/processing/app/Base.java:1244 msgid "Examples from Custom Libraries" -msgstr "" +msgstr "Exemplos de Bibliotecas Personalizadas" #: ../../../../../app/src/processing/app/Base.java:1222 msgid "Examples from Libraries" -msgstr "" +msgstr "Exemplos de Bibliotecas" #: ../../../../../app/src/processing/app/Editor.java:753 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Exportação cancelada, alterações devem ser salvas antes." #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" -msgstr "" +msgstr "Exportar Binário compilado" #: ../../../processing/app/Base.java:416 #, java-format @@ -942,7 +952,7 @@ msgstr "Filipino" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." -msgstr "" +msgstr "Refine sua busca..." #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -981,12 +991,12 @@ msgstr "Corrigir codificação e recarregar" msgid "" "For information on installing libraries, see: " "http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Para informações a respeito de instalação de bibliotecas, acesso: http://www.arduino.cc/en/Guide/Libraries\n" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" +msgstr "Forçando reset usando 1200bps para abertura/fechamento na porta {0}" #: Preferences.java:95 msgid "French" @@ -1006,7 +1016,7 @@ msgstr "Galiza (Espanha)" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" -msgstr "" +msgstr "Ajuda Galileo" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" @@ -1034,11 +1044,11 @@ msgstr "Variáveis globais usam {0} bytes de memória dinâmica." #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Vá para a linha" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Vá para a linha..." #: Preferences.java:98 msgid "Greek" @@ -1058,7 +1068,7 @@ msgstr "Hindi" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Nome do host:" #: Sketch.java:295 msgid "" @@ -1099,12 +1109,12 @@ msgstr "No Arduino 1.0, a extensão de arquivo padrão mudou de\n.pde para .ino #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" -msgstr "" +msgstr "Incluir Biblioteca" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "Pasta de instalação da IDE incorreta" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -1116,7 +1126,7 @@ msgstr "Indonésio" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." -msgstr "" +msgstr "Inicializando pacotes..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -1125,34 +1135,34 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Instalar" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Instalação completa!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Instalado" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." -msgstr "" +msgstr "Instalando placas..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "Instalando biblioteca: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "Instalando ferramentas ({0}/{1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Instalando..." #: ../../../processing/app/Base.java:1204 #, java-format @@ -1162,7 +1172,7 @@ msgstr "Biblioteca inválida encontrada em {0}: {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format msgid "Invalid quoting: no closing [{0}] char found." -msgstr "" +msgstr "Referência inválida: encontrado o char [{0}] não fechado." #: Preferences.java:102 msgid "Italian" @@ -1182,24 +1192,24 @@ msgstr "Letão" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Gerenciador de Biblioteca" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" +msgstr "Biblioteca adicionada às suas bibliotecas. Veja o menu \"Incluir biblioteca\"" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 msgid "Library can't use both 'src' and 'utility' folders." -msgstr "" +msgstr "Biblioteca não pode usar tanto a pasta 'src' quanto a pasta 'utility'." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" -msgstr "" +msgstr "A biblioteca já está instalada: {0} versão {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Número da linha:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1207,12 +1217,12 @@ msgstr "Lituano" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." -msgstr "" +msgstr "Carregando configuração..." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format msgid "Looking for recipes like {0}*{1}" -msgstr "" +msgstr "Procurando por receitas como {0}*{1}" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." @@ -1220,11 +1230,11 @@ msgstr "Pouca memória disponível, problemas de estabilidade podem ocorrer." #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." -msgstr "" +msgstr "Gerenciar Bibliotecas..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Configuração manual de proxy" #: Preferences.java:107 msgid "Marathi" @@ -1237,7 +1247,7 @@ msgstr "Mensagem" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format msgid "Missing '{0}' from library in {1}" -msgstr "" +msgstr "'{0}' faltando na biblioteca em {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1245,7 +1255,7 @@ msgstr "Modo não suportado" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "Mais" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1262,7 +1272,7 @@ msgstr "Múltiplos arquivos não suportados" #: ../../../processing/app/debug/Compiler.java:520 #, java-format msgid "Multiple libraries were found for \"{0}\"" -msgstr "" +msgstr "Foram encontradas múltiplas bibliotecas para \"{0}\"" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" @@ -1278,11 +1288,11 @@ msgstr "Nepali" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Rede" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" -msgstr "" +msgstr "Portas de rede" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" @@ -1310,7 +1320,7 @@ msgstr "Não" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" -msgstr "" +msgstr "Não foram encontrados dados de autorização" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -1318,11 +1328,11 @@ msgstr "Nenhuma alteração necessária para Autoformatação" #: ../../../processing/app/BaseNoGui.java:665 msgid "No command line parameters found" -msgstr "" +msgstr "Não foram encontrados parâmetros de linha de comando" #: ../../../processing/app/debug/Compiler.java:200 msgid "No compiled sketch found" -msgstr "" +msgstr "Não foi encontrado um sketch compilado" #: Editor.java:373 msgid "No files were added to the sketch." @@ -1342,7 +1352,7 @@ msgstr "Sem parâmetros" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Sem proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1360,7 +1370,7 @@ msgstr "Sem sketch" #: ../../../processing/app/BaseNoGui.java:428 msgid "No sketchbook" -msgstr "" +msgstr "Sem sketchbook" #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" @@ -1373,7 +1383,7 @@ msgstr "Nenhuma definição de hardware válida encontrada na pasta {0}." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 msgid "None" -msgstr "" +msgstr "Nenhum" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" @@ -1404,7 +1414,7 @@ msgstr "Abrir" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" -msgstr "" +msgstr "Abrir Recente" #: Editor.java:2688 msgid "Open URL" @@ -1441,15 +1451,15 @@ msgstr "Persa (Irã)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format msgid "Platform {0} (package {1}) is unknown" -msgstr "" +msgstr "A plataforma {0} (pacote {1}) é desconhecida" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" -msgstr "" +msgstr "Por favor confirme a deleção de placas" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "Please confirm library deletion" -msgstr "" +msgstr "Por favor confirme a deleção de biblioteca" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1462,7 +1472,7 @@ msgstr "Favor importar a biblioteca Wire a partir do menu Sketch > Importar bibl #: ../../../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 "Por favor selecione um programador no menu Ferramentas->Programador" #: Preferences.java:110 msgid "Polish" @@ -1474,7 +1484,7 @@ msgstr "Porta" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "Número da porta:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1494,7 +1504,7 @@ msgstr "Preferências" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." -msgstr "" +msgstr "Preparando placas..." #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" @@ -1561,7 +1571,7 @@ msgstr "Programador" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format msgid "Progress {0}" -msgstr "" +msgstr "Progresso {0}" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1569,7 +1579,7 @@ msgstr "Sair" #: ../../../../../app/src/processing/app/Base.java:1233 msgid "RETIRED" -msgstr "" +msgstr "RETIRADO" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" @@ -1581,17 +1591,17 @@ msgstr "Referência" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 msgid "Remove" -msgstr "" +msgstr "Remover" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format msgid "Removing library: {0}" -msgstr "" +msgstr "Removendo biblioteca: {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 msgid "Removing..." -msgstr "" +msgstr "Removendo..." #: EditorHeader.java:300 msgid "Rename" @@ -1625,12 +1635,12 @@ msgstr "Romeno" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format msgid "Running recipe: {0}" -msgstr "" +msgstr "Executando receita: {0}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format msgid "Running: {0}" -msgstr "" +msgstr "Executando: {0}" #: Preferences.java:114 msgid "Russian" @@ -1660,7 +1670,7 @@ msgstr "Salvar a pasta de sketches como..." #: ../../../../../app/src/processing/app/Preferences.java:425 msgid "Save when verifying or uploading" -msgstr "" +msgstr "Salve ao verificar ou carregar" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." @@ -1668,7 +1678,7 @@ msgstr "Salvando..." #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" -msgstr "" +msgstr "Pesquisar em todas as Abas de Sketchs" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." @@ -1693,7 +1703,7 @@ msgstr "Selecione um novo local para o Sketchbook" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 msgid "Select version" -msgstr "" +msgstr "Selecionar versão" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." @@ -1701,11 +1711,11 @@ msgstr "A placa selecionada depende do núcleo '{0}' (não instalado)." #: ../../../../../app/src/processing/app/Base.java:374 msgid "Selected board is not available" -msgstr "" +msgstr "A placa selecionada não está disponível" #: ../../../../../app/src/processing/app/Base.java:423 msgid "Selected library is not available" -msgstr "" +msgstr "A biblioteca selecionada não está disponível" #: SerialMonitor.java:93 msgid "Send" @@ -1717,7 +1727,7 @@ msgstr "Monitor serial" #: ../../../../../app/src/processing/app/Editor.java:804 msgid "Serial Plotter" -msgstr "" +msgstr "Plotter serial" #: Serial.java:194 #, java-format @@ -1740,11 +1750,11 @@ msgstr "Portas seriais" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format msgid "Setting build path to {0}" -msgstr "" +msgstr "Definindo build path para {0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Configurações" #: Base.java:1681 msgid "Settings issues" @@ -1813,7 +1823,7 @@ msgstr "Local do Sketchbook:" #: ../../../processing/app/BaseNoGui.java:428 msgid "Sketchbook path not defined" -msgstr "" +msgstr "Caminho do Sketchbook não foi definido" #: ../../../../../app/src/processing/app/Preferences.java:185 msgid "Slovak" @@ -1847,11 +1857,11 @@ msgstr "Espanhol" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" -msgstr "" +msgstr "A pasta/arquivo zip especificado não contém uma biblioteca válida" #: ../../../../../app/src/processing/app/Base.java:466 msgid "Starting..." -msgstr "" +msgstr "Iniciando..." #: Base.java:540 msgid "Sunshine" @@ -1867,7 +1877,7 @@ msgstr "Padrão do Sistema" #: ../../../../../app/src/processing/app/Preferences.java:188 msgid "Talossan" -msgstr "" +msgstr "Talossan" #: Preferences.java:116 msgid "Tamil" @@ -1879,7 +1889,7 @@ 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 "" +msgstr "A opção --upload suporta apenas um arquivo por vez" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." @@ -1890,7 +1900,7 @@ msgstr "A classe Cliente foi renomeada para EthernetClient." msgid "" "The IDE includes an updated {0} package, but you're using an older one.\n" "Do you want to upgrade {0}?" -msgstr "" +msgstr "A IDE inclui um pacote {0} atualizado, mas você está usando um mais antigo.\nDeseja atualizar {0}?" #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." @@ -1971,7 +1981,7 @@ msgstr "A pasta do sketchbook não existe mais.\nO Arduino irá alternar para o msgid "" "The specified sketchbook folder contains your copy of the IDE.\n" "Please choose a different folder for your sketchbook." -msgstr "" +msgstr "A pasta de sketchbook especificada contém sua cópia da IDE.\nPor favor escolha uma pasta diferente para seu sketchbook." #: Sketch.java:1075 msgid "" @@ -1984,7 +1994,7 @@ msgstr "Este arquivo já foi copiado para o local\nonde você está tentando adi msgid "" "This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" "Are you sure you want to delete it?" -msgstr "" +msgstr "Esta biblioteca não está listada no Gerenciador de Bibliotecas. Não será possível reinstalá-a a partir daqui.\nTem certeza que deseja removê-la?" #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" @@ -1997,7 +2007,7 @@ msgstr "Pausa para descanso" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format msgid "Tool {0} is not available for your operating system." -msgstr "" +msgstr "A ferramenta {0} não está disponível para o seu sistema operacional." #: Editor.java:663 msgid "Tools" @@ -2005,7 +2015,7 @@ msgstr "Ferramentas" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" -msgstr "" +msgstr "Tópico" #: Editor.java:1070 msgid "Troubleshooting" @@ -2018,7 +2028,7 @@ msgstr "Turco" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 msgid "Type" -msgstr "" +msgstr "Tipo" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" @@ -2048,7 +2058,7 @@ msgstr "Não foi possível conectar: senha errada?" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format msgid "Unable to find {0} in {1}" -msgstr "" +msgstr "Não foi possível encontrar {0} em {1}" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" @@ -2056,12 +2066,12 @@ msgstr "Não foi possível abrir o monitor da porta serial" #: ../../../../../app/src/processing/app/Editor.java:2709 msgid "Unable to open serial plotter" -msgstr "" +msgstr "Não foi possível abrir o plotter serial" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" +msgstr "Não foi possível alcançar Arduino.cc devido a possíveis problemas de rede." #: Editor.java:1133 Editor.java:1355 msgid "Undo" @@ -2070,12 +2080,12 @@ msgstr "Desfazer" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format msgid "Unhandled type {0} in context key {1}" -msgstr "" +msgstr "Tipo {0} não tratado na chave de contexto {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format msgid "Unknown sketch file extension: {0}" -msgstr "" +msgstr "Extensão do arquivo de sketch desconhecida: {0}" #: Platform.java:168 msgid "" @@ -2087,7 +2097,7 @@ msgstr "Plataforma não especificada, nenhum lançador disponível.\nPara habili #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "Atualizável" #: UpdateCheck.java:111 msgid "Update" @@ -2099,7 +2109,7 @@ msgstr "Atualizar arquivos de sketch para nova extensão ao salvar (.pde -> .ino #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" -msgstr "" +msgstr "Atualizando lista de bibliotecas instaladas" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -2136,12 +2146,12 @@ msgstr "Usar editor externo" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Nome de usuário:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" +msgstr "Usando a biblioteca {0} na versão {1} na pasta: {2} {3}" #: ../../../processing/app/debug/Compiler.java:94 #, java-format @@ -2163,33 +2173,33 @@ msgstr "Verificar código depois de carregar" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Verificar/Compilar" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." -msgstr "" +msgstr "Verificando e enviando..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 msgid "Verifying archive integrity..." -msgstr "" +msgstr "Verificando integridade do arquivo..." #: ../../../../../app/src/processing/app/Base.java:454 msgid "Verifying..." -msgstr "" +msgstr "Verificando..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Versão {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 msgid "Version unknown" -msgstr "" +msgstr "Versão desconhecida" #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Versão {0}" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" @@ -2202,12 +2212,12 @@ msgstr "Visite Arduino.cc" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" -msgstr "" +msgstr "AVISO: A categoria '{0}' na biblioteca {1} é invalida. Definindo para '{2}'" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format msgid "WARNING: Spurious {0} folder in '{1}' library" -msgstr "" +msgstr "AVISO: A pasta {0} é falsa na biblioteca '{1}'" #: ../../../processing/app/debug/Compiler.java:115 #, java-format @@ -2224,50 +2234,50 @@ msgstr "Aviso" msgid "" "Warning: This core does not support exporting sketches. Please consider " "upgrading it or contacting its author" -msgstr "" +msgstr "Aviso: Este núcleo não suporta exportação de sketches. Por favor considere atualizá-lo ou entrar em contato com o autor." #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" +msgstr "Aviso: o arquivo {0} faz vínculo com um caminho absoluto {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Aviso: confiança forçada de contribuições não confiáveis" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Aviso: execução forçada de script não confiável ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Aviso: contribuição não confiável, pulando execução de script ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format msgid "" "Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" " converted to {2}. Consider upgrading this core." -msgstr "" +msgstr "Aviso: platform.txt do núcleo '[0}' contém algo depreciado ({1}), automaticamente convertido para {2}. Considere atualizar este núcleo." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 msgid "" "Warning: platform.txt from core '{0}' misses property '{1}', using default " "value '{2}'. Consider upgrading this core." -msgstr "" +msgstr "Aviso: platform.txt do núcleo '{0}' não possui a propriedade '{1}', assumindo o valor padrão '{2}'. Considere atualizar este núcleo." #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" "Warning: platform.txt from core '{0}' misses property {1}, automatically set" " to {2}. Consider upgrading this core." -msgstr "" +msgstr "Aviso: platform.txt do núcleo '{0}' não possui a propriedade {1}, definida automaticamente para {2}. Considere atualizar este núcleo." #: ../../../../../app/src/processing/app/Preferences.java:190 msgid "Western Frisian" -msgstr "" +msgstr "Frisian Ocidental" #: debug/Compiler.java:444 msgid "Wire.receive() has been renamed Wire.read()." @@ -2301,7 +2311,7 @@ msgstr "Você não pode ter um arquivo .cpp com o mesmo nome de um sketch." #: ../../../../../app/src/processing/app/Base.java:2312 msgid "You can't import a folder that contains your sketchbook" -msgstr "" +msgstr "Você não pode importar uma pasta que contém seu sketchbook" #: Sketch.java:421 msgid "" @@ -2309,11 +2319,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Você não pode renomear o sketch como \"{0}\"\nporque o sketch já tem um arquivo .cpp com este nome." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Você não pode salvar o sketch como \"{0}\" \\n porque o sketch já tem um arquivo .cpp com este nome." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" @@ -2340,13 +2350,13 @@ msgstr "Você alcançou o limite diário de auto-nomeação para novas sketches. msgid "" "Your copy of the IDE is installed in a subfolder of your settings folder.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Sua cópia da IDE está instalada em uma subpasta da sua pasta de configurações.\nPor favor mova a IDE para outra pasta." #: ../../../processing/app/BaseNoGui.java:771 msgid "" "Your copy of the IDE is installed in a subfolder of your sketchbook.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Sua cópia da IDE está instalada em uma subpasta do seu sketchbook.\nPor favor mova a IDE para outra pasta." #: Base.java:2638 msgid "ZIP files or folders" @@ -2368,7 +2378,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}\" contém caracteres não reconhecidos. Se esse código foi criado com uma versão antiga do Arduino, talvez seja necessário usar a ferramenta do menu Ferramentas -> Corrigir codificação e recarregar para atualizar o sketch para usar a codificação UTF-8. Se não, talvez seja preciso remover os caracteres com problema para se livrar deste aviso." #: debug/Compiler.java:409 msgid "" @@ -2443,7 +2453,7 @@ msgstr "habilitado em Arquivo > Preferências." #: ../../../../../app/src/processing/app/Editor.java:1352 msgid "http://www.arduino.cc/" -msgstr "" +msgstr "http://www.arduino.cc/" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" @@ -2484,23 +2494,23 @@ msgstr "carregar" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format msgid "version {0}" -msgstr "" +msgstr "versão {0}" #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format msgid "{0} - {1} | Arduino {2}" -msgstr "" +msgstr "{0} - {1} | Arduino {2}" #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format msgid "{0} file signature verification failed" -msgstr "" +msgstr "{0} verificação de assinatura de arquivo falhou" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format msgid "{0} file signature verification failed. File ignored." -msgstr "" +msgstr "{0} verificação de assinatura de arquivo falhou. Arquivo ignorado." #: Editor.java:380 #, java-format @@ -2510,17 +2520,17 @@ msgstr "{0} arquivos adicionados ao sketch." #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format msgid "{0} libraries" -msgstr "" +msgstr "{0} bibliotecas" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "{0} deve ser uma pasta" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format msgid "{0} pattern is missing" -msgstr "" +msgstr "padrão {0} ausente" #: debug/Compiler.java:365 #, java-format 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 ceafa5ec2..df06211d5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties @@ -8,14 +8,16 @@ # Translators: # Translators: # Translators: +# Translators: # andre graes , 2012 # Erick Sim\u00f5es , 2014-2015 +# Everton Leite , 2015 # Gustavo Bertoli, 2015 # Henrique P. Machado , 2013 # Philipe Rabelo , 2013 # Rafael H L Moretti , 2014 # Tiago Goto Sala, 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (Brazil) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (Brazil) (http\://www.transifex.com/mbanzi/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) @@ -28,20 +30,20 @@ #, java-format \ Used\:\ {0}=Usado\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclado" suportado apenas no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' suportado apenas no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=A pasta 'arch' n\u00e3o \u00e9 mais suportada\! Para mais informa\u00e7\u00f5es, acesse http\://goo.gl/gfFJzU #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar apenas quando o Arduino n\u00e3o estiver rodando) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 -!(legacy)= +(legacy)=(legado) #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir n\u00e3o \u00e9 mais suportado @@ -54,15 +56,15 @@ #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
Atualiza\u00e7\u00e3o dispon\u00edvel para algumas de suas {0}placas{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
Atualiza\u00e7\u00e3o dispon\u00edvel para algumas de suas {0}placas{1} e {2}bibliotecas{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
Atualiza\u00e7\u00e3o dispon\u00edvel para algumas de suas {0}bibliotecas{1} #: 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. @@ -99,10 +101,10 @@ Add\ .ZIP\ Library...=Adicionar biblioteca .ZIP Add\ File...=Adicionar Arquivo... #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= +Additional\ Boards\ Manager\ URLs=URLs Adicionais de Gerenciadores de Placas #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = +Additional\ Boards\ Manager\ URLs\:\ =URLs Adicionais de Gerenciadores de Placas\: #: ../../../../../app/src/processing/app/Preferences.java:161 Afrikaans=Afrikaans @@ -113,7 +115,7 @@ Albanian=Alban\u00eas #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= +All=Todos #: 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 @@ -214,7 +216,7 @@ Auto\ Format\ finished.=Autoformata\u00e7\u00e3o conclu\u00edda. Auto-detect\ proxy\ settings=Detectar automaticamente defini\u00e7\u00f5es de proxy #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=URL para configura\u00e7\u00e3o autom\u00e1tica de proxy\: #: SerialMonitor.java:110 Autoscroll=Auto-rolagem @@ -238,7 +240,7 @@ Board=Placa #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format -!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=Placa {0} (plataforma {1}, pacote {2}) \u00e9 desconhecida #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -258,7 +260,7 @@ Boards\ included\ in\ this\ package\:=Placas inclu\u00eddas nesse pacote\: #: ../../../processing/app/debug/Compiler.java:1273 #, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= +Bootloader\ file\ specified\ but\ missing\:\ {0}=O arquivo do Bootloader foi especificado mas n\u00e3o p\u00f4de ser encontrado\: {0} #: ../../../processing/app/Preferences.java:140 Bosnian=B\u00f3snio @@ -273,7 +275,7 @@ Browse=Navegador Build\ options\ changed,\ rebuilding\ all=Op\u00e7\u00f5es de compila\u00e7\u00e3o alteradas, recompilando tudo #: ../../../../../app/src/processing/app/Base.java:1210 -!Built-in\ Examples= +Built-in\ Examples=Exemplos embutidos #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -292,7 +294,7 @@ CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC n\u00e3o confere. Arquivo corromp #: ../../../processing/app/Base.java:379 #, java-format -!Can\ only\ pass\ one\ of\:\ {0}= +Can\ only\ pass\ one\ of\:\ {0}=Pode passar somente um de\: {0} #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 @@ -309,7 +311,7 @@ Cancel=Cancelar Cannot\ Rename=N\u00e3o \u00e9 poss\u00edvel renomear #: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= +Cannot\ specify\ any\ sketch\ files=N\u00e3o \u00e9 poss\u00edvel especificar nenhum arquivo de sketch #: SerialMonitor.java:112 Carriage\ return=Retorno de carro @@ -330,7 +332,7 @@ Chinese\ (Taiwan)=Chin\u00eas (Taiwan) Chinese\ (Taiwan)\ (Big5)=Chin\u00eas (Taiwan) (Big5) #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= +Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Clique para ver uma lista de URLs de suporte de placas n\u00e3o oficiais #: Editor.java:521 Editor.java:2024 Close=Fechar @@ -478,7 +480,7 @@ Display\ line\ numbers=Mostrar n\u00fameros de linhas #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= +Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=Deseja remover {0}?\nSe for removido n\u00e3o ser\u00e1 mais poss\u00edvel utilizar {0}. #: Editor.java:2064 Don't\ Save=N\u00e3o Salvar @@ -524,7 +526,7 @@ Downloading\ platforms\ index...=Carregando \u00edndices de plataformas... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format -!Downloading\ tools\ ({0}/{1}).= +Downloading\ tools\ ({0}/{1}).=Baixando ferramentas ({0}/{1}). #: Preferences.java:91 Dutch=Holand\u00eas @@ -533,7 +535,7 @@ Dutch=Holand\u00eas Dutch\ (Netherlands)=Holand\u00eas (Holanda) #: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= +Edison\ Help=Ajuda Edison #: Editor.java:1130 Edit=Editar @@ -545,7 +547,7 @@ Editor\ font\ size\:\ =Tamanho da fonte do editor\: Editor\ language\:\ =Idioma do editor\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= +Enable\ Code\ Folding=Habilitar Dobramento de C\u00f3digo #: Preferences.java:92 English=Ingl\u00eas @@ -555,10 +557,10 @@ English\ (United\ Kingdom)=Ingl\u00eas (Brit\u00e2nico) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= +Enter\ a\ comma\ separated\ list\ of\ urls=Entre com uma lista de urls separadas por v\u00edrgula #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= +Enter\ additional\ URLs,\ one\ for\ each\ row=Entre com URLs adicionais, uma por linha #: Editor.java:1062 Environment=Ambiente @@ -576,7 +578,7 @@ Error\ compiling.=Erro compilando. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format -!Error\ downloading\ {0}= +Error\ downloading\ {0}=Erro durante o download de {0} #: Base.java:1674 Error\ getting\ the\ Arduino\ data\ folder.=Erro ao obter a pasta de dados do Arduino. @@ -597,7 +599,7 @@ Error\ opening\ serial\ port\ ''{0}''.=Erro ao abrir porta serial "{0}". #: ../../../processing/app/Serial.java:119 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= +Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=Erro abrindo a porta serial "{0}". Tente consultar a documenta\u00e7\u00e3o em http\://playground.arduino.cc/Linux/All\#Permission #: Preferences.java:277 Error\ reading\ preferences=Erro lendo prefer\u00eancias @@ -609,7 +611,7 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= +Error\ running\ post\ install\ script=Erro ao executar o script p\u00f3s instala\u00e7\u00e3o #: ../../../cc/arduino/packages/DiscoveryManager.java:25 Error\ starting\ discovery\ method\:\ =Erro ao iniciar m\u00e9todo discovery\: @@ -634,6 +636,10 @@ Error\ while\ loading\ code\ {0}=Erro durante o carregamento do c\u00f3digo {0} #: Editor.java:2567 Error\ while\ printing.=Erro durante impress\u00e3o. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Erro durante o carregamento @@ -659,16 +665,16 @@ Estonian\ (Estonia)=Estoniano (Est\u00f4nia) Examples=Exemplos #: ../../../../../app/src/processing/app/Base.java:1244 -!Examples\ from\ Custom\ Libraries= +Examples\ from\ Custom\ Libraries=Exemplos de Bibliotecas Personalizadas #: ../../../../../app/src/processing/app/Base.java:1222 -!Examples\ from\ Libraries= +Examples\ from\ Libraries=Exemplos de Bibliotecas #: ../../../../../app/src/processing/app/Editor.java:753 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporta\u00e7\u00e3o cancelada, altera\u00e7\u00f5es devem ser salvas antes. #: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= +Export\ compiled\ Binary=Exportar Bin\u00e1rio compilado #: ../../../processing/app/Base.java:416 #, java-format @@ -681,7 +687,7 @@ File=Arquivo Filipino=Filipino #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= +Filter\ your\ search...=Refine sua busca... #: FindReplace.java:124 FindReplace.java:127 Find=Localizar @@ -709,11 +715,11 @@ Finnish=Finland\u00eas Fix\ Encoding\ &\ Reload=Corrigir codifica\u00e7\u00e3o e recarregar #: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=Para informa\u00e7\u00f5es a respeito de instala\u00e7\u00e3o de bibliotecas, acesso\: http\://www.arduino.cc/en/Guide/Libraries\n #: ../../../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}=For\u00e7ando reset usando 1200bps para abertura/fechamento na porta {0} #: Preferences.java:95 French=Franc\u00eas @@ -728,7 +734,7 @@ Galician=Gal\u00edcio Galician\ (Spain)=Galiza (Espanha) #: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= +Galileo\ Help=Ajuda Galileo #: ../../../processing/app/Preferences.java:94 Georgian=Georgiano @@ -748,10 +754,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Vari\u00e1veis globais usam {0} bytes de mem\u00f3ria din\u00e2mica. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=V\u00e1 para a linha #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=V\u00e1 para a linha... #: Preferences.java:98 Greek=Grego @@ -766,7 +772,7 @@ Help=Ajuda Hindi=Hindi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Nome do host\: #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Que tal salvar o sketch antes de\ntentar renome\u00e1-lo? @@ -790,11 +796,11 @@ Ignoring\ sketch\ with\ bad\ name=Ignorando sketch com nome inapropriado 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?=No Arduino 1.0, a extens\u00e3o de arquivo padr\u00e3o mudou de\n.pde para .ino Novos sketches (incluindo aqueles criados\npelo comando "Salvar como") usar\u00e3o a nova extens\u00e3o.\nA extens\u00e3o de sketches existentes ser\u00e1 atualizada ao\nsalvar, mas voc\u00ea pode desabilitar isto no di\u00e1logo de \nPrefer\u00eancias.\n\nSalvar e atualizar sua extens\u00e3o? #: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= +Include\ Library=Incluir Biblioteca #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=Pasta de instala\u00e7\u00e3o da IDE incorreta #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Aumentar identa\u00e7\u00e3o @@ -803,7 +809,7 @@ Increase\ Indent=Aumentar identa\u00e7\u00e3o Indonesian=Indon\u00e9sio #: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= +Initializing\ packages...=Inicializando pacotes... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -811,28 +817,28 @@ Indonesian=Indon\u00e9sio #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=Instalar #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=Instala\u00e7\u00e3o completa\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=Instalado #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= +Installing\ boards...=Instalando placas... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=Instalando biblioteca\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=Instalando ferramentas ({0}/{1})... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=Instalando... #: ../../../processing/app/Base.java:1204 #, java-format @@ -840,7 +846,7 @@ Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioteca inv\u00e1lida encontrada em { #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format -!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=Refer\u00eancia inv\u00e1lida\: encontrado o char [{0}] n\u00e3o fechado. #: Preferences.java:102 Italian=Italiano @@ -855,39 +861,39 @@ Korean=Coreano Latvian=Let\u00e3o #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=Gerenciador de Biblioteca #: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Biblioteca adicionada \u00e0s suas bibliotecas. Veja o menu "Incluir biblioteca" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 -!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Biblioteca n\u00e3o pode usar tanto a pasta 'src' quanto a pasta 'utility'. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= +Library\ is\ already\ installed\:\ {0}\ version\ {1}=A biblioteca j\u00e1 est\u00e1 instalada\: {0} vers\u00e3o {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=N\u00famero da linha\: #: Preferences.java:106 Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=Carregando configura\u00e7\u00e3o... #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format -!Looking\ for\ recipes\ like\ {0}*{1}= +Looking\ for\ recipes\ like\ {0}*{1}=Procurando por receitas como {0}*{1} #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Pouca mem\u00f3ria dispon\u00edvel, problemas de estabilidade podem ocorrer. #: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= +Manage\ Libraries...=Gerenciar Bibliotecas... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=Configura\u00e7\u00e3o manual de proxy #: Preferences.java:107 Marathi=Marathi @@ -897,13 +903,13 @@ Message=Mensagem #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format -!Missing\ '{0}'\ from\ library\ in\ {1}= +Missing\ '{0}'\ from\ library\ in\ {1}='{0}' faltando na biblioteca em {1} #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modo n\u00e3o suportado #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=Mais #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mais prefer\u00eancias podem ser editadas diretamente no arquivo @@ -916,7 +922,7 @@ Multiple\ files\ not\ supported=M\u00faltiplos arquivos n\u00e3o suportados #: ../../../processing/app/debug/Compiler.java:520 #, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= +Multiple\ libraries\ were\ found\ for\ "{0}"=Foram encontradas m\u00faltiplas bibliotecas para "{0}" #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u00c9 preciso especificar exatamente um arquivo de rascunho @@ -928,10 +934,10 @@ Name\ for\ new\ file\:=Nome para o novo arquivo\: Nepali=Nepali #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=Rede #: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= +Network\ ports=Portas de rede #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 Network\ upload\ using\ programmer\ not\ supported=Carregamento pela rede usando programador n\u00e3o suportado @@ -952,16 +958,16 @@ Next\ Tab=Pr\u00f3xima Aba No=N\u00e3o #: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= +No\ authorization\ data\ found=N\u00e3o foram encontrados dados de autoriza\u00e7\u00e3o #: 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= +No\ command\ line\ parameters\ found=N\u00e3o foram encontrados par\u00e2metros de linha de comando #: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= +No\ compiled\ sketch\ found=N\u00e3o foi encontrado um sketch compilado #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Nenhum arquivo foi adicionado ao sketch. @@ -976,7 +982,7 @@ No\ line\ ending=Nenhum final-de-linha No\ parameters=Sem par\u00e2metros #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=Sem proxy #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=S\u00e9rio, voc\u00ea precisa de ar fresco. @@ -990,7 +996,7 @@ No\ reference\ available\ for\ "{0}"=Sem refer\u00eancia dispon\u00edvel para "{ No\ sketch=Sem sketch #: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= +No\ sketchbook=Sem sketchbook #: ../../../processing/app/Sketch.java:204 No\ valid\ code\ files\ found=N\u00e3o foram encontrados arquivos de c\u00f3digo v\u00e1lidos @@ -1000,7 +1006,7 @@ No\ valid\ code\ files\ found=N\u00e3o foram encontrados arquivos de c\u00f3digo No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nenhuma defini\u00e7\u00e3o de hardware v\u00e1lida encontrada na pasta {0}. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= +None=Nenhum #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruegu\u00eas (Bokm\u00e5l) @@ -1022,7 +1028,7 @@ Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Apenas --verify, --upl Open=Abrir #: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= +Open\ Recent=Abrir Recente #: Editor.java:2688 Open\ URL=Abrir URL @@ -1050,13 +1056,13 @@ Persian\ (Iran)=Persa (Ir\u00e3) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format -!Platform\ {0}\ (package\ {1})\ is\ unknown= +Platform\ {0}\ (package\ {1})\ is\ unknown=A plataforma {0} (pacote {1}) \u00e9 desconhecida #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= +Please\ confirm\ boards\ deletion=Por favor confirme a dele\u00e7\u00e3o de placas #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= +Please\ confirm\ library\ deletion=Por favor confirme a dele\u00e7\u00e3o de biblioteca #: 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. @@ -1066,7 +1072,7 @@ Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu. #: ../../../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=Por favor selecione um programador no menu Ferramentas->Programador #: Preferences.java:110 Polish=Polon\u00eas @@ -1075,7 +1081,7 @@ Polish=Polon\u00eas Port=Porta #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=N\u00famero da porta\: #: ../../../processing/app/Preferences.java:151 Portugese=Portugu\u00eas @@ -1090,7 +1096,7 @@ Portuguese\ (Portugal)=Portugu\u00eas (Portugal) Preferences=Prefer\u00eancias #: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= +Preparing\ boards...=Preparando placas... #: FindReplace.java:123 FindReplace.java:128 Previous=Anterior @@ -1139,13 +1145,13 @@ Programmer=Programador #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format -!Progress\ {0}= +Progress\ {0}=Progresso {0} #: Base.java:783 Editor.java:593 Quit=Sair #: ../../../../../app/src/processing/app/Base.java:1233 -!RETIRED= +RETIRED=RETIRADO #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Refazer @@ -1154,15 +1160,15 @@ Redo=Refazer Reference=Refer\u00eancia #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= +Remove=Remover #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format -!Removing\ library\:\ {0}= +Removing\ library\:\ {0}=Removendo biblioteca\: {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= +Removing...=Removendo... #: EditorHeader.java:300 Rename=Renomear @@ -1188,11 +1194,11 @@ Romanian=Romeno #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format -!Running\ recipe\:\ {0}= +Running\ recipe\:\ {0}=Executando receita\: {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format -!Running\:\ {0}= +Running\:\ {0}=Executando\: {0} #: Preferences.java:114 Russian=Russo @@ -1215,13 +1221,13 @@ Save\ changes\ to\ "{0}"?\ \ =Salvar altera\u00e7\u00f5es em "{0}"? Save\ sketch\ folder\ as...=Salvar a pasta de sketches como... #: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= +Save\ when\ verifying\ or\ uploading=Salve ao verificar ou carregar #: Editor.java:2270 Editor.java:2308 Saving...=Salvando... #: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= +Search\ all\ Sketch\ Tabs=Pesquisar em todas as Abas de Sketchs #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecione (ou crie uma nova) pasta para as sketches... @@ -1240,16 +1246,16 @@ Select\ new\ sketchbook\ location=Selecione um novo local para o Sketchbook #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= +Select\ version=Selecionar vers\u00e3o #: ../../../processing/app/debug/Compiler.java:146 Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=A placa selecionada depende do n\u00facleo '{0}' (n\u00e3o instalado). #: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= +Selected\ board\ is\ not\ available=A placa selecionada n\u00e3o est\u00e1 dispon\u00edvel #: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= +Selected\ library\ is\ not\ available=A biblioteca selecionada n\u00e3o est\u00e1 dispon\u00edvel #: SerialMonitor.java:93 Send=Enviar @@ -1258,7 +1264,7 @@ Send=Enviar Serial\ Monitor=Monitor serial #: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= +Serial\ Plotter=Plotter serial #: Serial.java:194 #, java-format @@ -1273,10 +1279,10 @@ Serial\ ports=Portas seriais #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format -!Setting\ build\ path\ to\ {0}= +Setting\ build\ path\ to\ {0}=Definindo build path para {0} #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=Configura\u00e7\u00f5es #: Base.java:1681 Settings\ issues=Defini\u00e7\u00f5es de problemas @@ -1325,7 +1331,7 @@ Sketchbook\ folder\ disappeared=A pasta de sketchbooks desapareceu Sketchbook\ location\:=Local do Sketchbook\: #: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= +Sketchbook\ path\ not\ defined=Caminho do Sketchbook n\u00e3o foi definido #: ../../../../../app/src/processing/app/Preferences.java:185 Slovak=Eslovaco @@ -1347,10 +1353,10 @@ Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Desculpe, um ske Spanish=Espanhol #: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= +Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=A pasta/arquivo zip especificado n\u00e3o cont\u00e9m uma biblioteca v\u00e1lida #: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= +Starting...=Iniciando... #: Base.java:540 Sunshine=Nascer-do-sol @@ -1362,7 +1368,7 @@ Swedish=Sueco System\ Default=Padr\u00e3o do Sistema #: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= +Talossan=Talossan #: Preferences.java:116 Tamil=T\u00e2mil @@ -1371,14 +1377,14 @@ Tamil=T\u00e2mil 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= +The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=A op\u00e7\u00e3o --upload suporta apenas um arquivo por vez #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A classe Cliente foi renomeada para EthernetClient. #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= +The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=A IDE inclui um pacote {0} atualizado, mas voc\u00ea est\u00e1 usando um mais antigo.\nDeseja atualizar {0}? #: debug/Compiler.java:420 The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A classe Server foi renomeada para EthernetServer. @@ -1417,13 +1423,13 @@ 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.=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. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= +The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=A pasta de sketchbook especificada cont\u00e9m sua c\u00f3pia da IDE.\nPor favor escolha uma pasta diferente para seu sketchbook. #: 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. #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= +This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=Esta biblioteca n\u00e3o est\u00e1 listada no Gerenciador de Bibliotecas. N\u00e3o ser\u00e1 poss\u00edvel reinstal\u00e1-a a partir daqui.\nTem certeza que deseja remov\u00ea-la? #: ../../../processing/app/EditorStatus.java:467 This\ report\ would\ have\ more\ information\ with=Este relat\u00f3rio deveria ter mais informa\u00e7\u00f5es @@ -1433,13 +1439,13 @@ Time\ for\ a\ Break=Pausa para descanso #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= +Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=A ferramenta {0} n\u00e3o est\u00e1 dispon\u00edvel para o seu sistema operacional. #: Editor.java:663 Tools=Ferramentas #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= +Topic=T\u00f3pico #: Editor.java:1070 Troubleshooting=Resolu\u00e7\u00e3o de problemas @@ -1449,7 +1455,7 @@ Turkish=Turco #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= +Type=Tipo #: ../../../processing/app/Editor.java:2507 Type\ board\ password\ to\ access\ its\ console=Digite a senha da placa para acessar seu console @@ -1472,35 +1478,35 @@ Unable\ to\ connect\:\ wrong\ password?=N\u00e3o foi poss\u00edvel conectar\: se #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format -!Unable\ to\ find\ {0}\ in\ {1}= +Unable\ to\ find\ {0}\ in\ {1}=N\u00e3o foi poss\u00edvel encontrar {0} em {1} #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=N\u00e3o foi poss\u00edvel abrir o monitor da porta serial #: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= +Unable\ to\ open\ serial\ plotter=N\u00e3o foi poss\u00edvel abrir o plotter serial #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= +Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=N\u00e3o foi poss\u00edvel alcan\u00e7ar Arduino.cc devido a poss\u00edveis problemas de rede. #: Editor.java:1133 Editor.java:1355 Undo=Desfazer #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -!Unhandled\ type\ {0}\ in\ context\ key\ {1}= +Unhandled\ type\ {0}\ in\ context\ key\ {1}=Tipo {0} n\u00e3o tratado na chave de contexto {1} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format -!Unknown\ sketch\ file\ extension\:\ {0}= +Unknown\ sketch\ file\ extension\:\ {0}=Extens\u00e3o do arquivo de sketch desconhecida\: {0} #: 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=Plataforma n\u00e3o especificada, nenhum lan\u00e7ador dispon\u00edvel.\nPara habilitar a abertura de URLs ou pastas, adicione uma\nlinha "launcher\=/caminho/para/aplicativo" ao arquivo preferences.txt #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=Atualiz\u00e1vel #: UpdateCheck.java:111 Update=Atualiza\u00e7\u00e3o @@ -1509,7 +1515,7 @@ Update=Atualiza\u00e7\u00e3o Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Atualizar arquivos de sketch para nova extens\u00e3o ao salvar (.pde -> .ino) #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= +Updating\ list\ of\ installed\ libraries=Atualizando lista de bibliotecas instaladas #: EditorToolbar.java:41 Editor.java:545 Upload=Carregar @@ -1537,11 +1543,11 @@ Use\ external\ editor=Usar editor externo #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=Nome de usu\u00e1rio\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= +Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=Usando a biblioteca {0} na vers\u00e3o {1} na pasta\: {2} {3} #: ../../../processing/app/debug/Compiler.java:94 #, java-format @@ -1558,27 +1564,27 @@ Verify=Verificar Verify\ code\ after\ upload=Verificar c\u00f3digo depois de carregar #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=Verificar/Compilar #: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= +Verifying\ and\ uploading...=Verificando e enviando... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= +Verifying\ archive\ integrity...=Verificando integridade do arquivo... #: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= +Verifying...=Verificando... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format -!Version\ {0}= +Version\ {0}=Vers\u00e3o {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= +Version\ unknown=Vers\u00e3o desconhecida #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format -!Version\ {0}= +Version\ {0}=Vers\u00e3o {0} #: ../../../processing/app/Preferences.java:154 Vietnamese=Vietnamita @@ -1588,11 +1594,11 @@ Visit\ Arduino.cc=Visite Arduino.cc #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format -!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=AVISO\: A categoria '{0}' na biblioteca {1} \u00e9 invalida. Definindo para '{2}' #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format -!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=AVISO\: A pasta {0} \u00e9 falsa na biblioteca '{1}' #: ../../../processing/app/debug/Compiler.java:115 #, java-format @@ -1602,36 +1608,36 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be Warning=Aviso #: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= +Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=Aviso\: Este n\u00facleo n\u00e3o suporta exporta\u00e7\u00e3o de sketches. Por favor considere atualiz\u00e1-lo ou entrar em contato com o autor. #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= +Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Aviso\: o arquivo {0} faz v\u00ednculo com um caminho absoluto {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=Aviso\: confian\u00e7a for\u00e7ada de contribui\u00e7\u00f5es n\u00e3o confi\u00e1veis #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Aviso\: execu\u00e7\u00e3o for\u00e7ada de script n\u00e3o confi\u00e1vel ({0}) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Aviso\: contribui\u00e7\u00e3o n\u00e3o confi\u00e1vel, pulando execu\u00e7\u00e3o de script ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Aviso\: platform.txt do n\u00facleo '[0}' cont\u00e9m algo depreciado ({1}), automaticamente convertido para {2}. Considere atualizar este n\u00facleo. #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=Aviso\: platform.txt do n\u00facleo '{0}' n\u00e3o possui a propriedade '{1}', assumindo o valor padr\u00e3o '{2}'. Considere atualizar este n\u00facleo. #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Aviso\: platform.txt do n\u00facleo '{0}' n\u00e3o possui a propriedade {1}, definida automaticamente para {2}. Considere atualizar este n\u00facleo. #: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= +Western\ Frisian=Frisian Ocidental #: debug/Compiler.java:444 Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() foi renomeado para Wire.read(). @@ -1655,13 +1661,13 @@ You\ can't\ fool\ me=Voc\u00ea n\u00e3o pode me enganar You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Voc\u00ea n\u00e3o pode ter um arquivo .cpp com o mesmo nome de um sketch. #: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= +You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Voc\u00ea n\u00e3o pode importar uma pasta que cont\u00e9m seu sketchbook #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Voc\u00ea n\u00e3o pode renomear o sketch como "{0}"\nporque o sketch j\u00e1 tem um arquivo .cpp com este nome. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Voc\u00ea n\u00e3o pode salvar o sketch como "{0}" \\n porque o sketch j\u00e1 tem um arquivo .cpp com este nome. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Voc\u00ea n\u00e3o pode salvar o sketch em uma pasta\ndentro de si mesma. Isto iria acontecer infinitamente. @@ -1676,10 +1682,10 @@ You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ en You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Voc\u00ea alcan\u00e7ou o limite di\u00e1rio de auto-nomea\u00e7\u00e3o para novas sketches. \\n Que tal uma caminhada? #: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=Sua c\u00f3pia da IDE est\u00e1 instalada em uma subpasta da sua pasta de configura\u00e7\u00f5es.\nPor favor mova a IDE para outra pasta. #: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=Sua c\u00f3pia da IDE est\u00e1 instalada em uma subpasta do seu sketchbook.\nPor favor mova a IDE para outra pasta. #: Base.java:2638 ZIP\ files\ or\ folders=Arquivos ZIP ou pastas @@ -1693,7 +1699,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}"\ 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 n\u00e3o reconhecidos. Se esse c\u00f3digo foi criado com uma vers\u00e3o antiga do Arduino, talvez seja necess\u00e1rio usar a ferramenta do menu Ferramentas -> Corrigir codifica\u00e7\u00e3o e recarregar para atualizar o sketch para usar a codifica\u00e7\u00e3o UTF-8. Se n\u00e3o, talvez seja preciso remover os caracteres com problema para se livrar deste aviso. #: 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 @@ -1732,7 +1738,7 @@ createNewFile()\ returned\ false=createNewFile() retornou falso enabled\ in\ File\ >\ Preferences.=habilitado em Arquivo > Prefer\u00eancias. #: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= +http\://www.arduino.cc/=http\://www.arduino.cc/ #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1763,20 +1769,20 @@ upload=carregar #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format -!version\ {0}= +version\ {0}=vers\u00e3o {0} #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= +{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | Arduino {2} #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format -!{0}\ file\ signature\ verification\ failed= +{0}\ file\ signature\ verification\ failed={0} verifica\u00e7\u00e3o de assinatura de arquivo falhou #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= +{0}\ file\ signature\ verification\ failed.\ File\ ignored.={0} verifica\u00e7\u00e3o de assinatura de arquivo falhou. Arquivo ignorado. #: Editor.java:380 #, java-format @@ -1784,15 +1790,15 @@ upload=carregar #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format -!{0}\ libraries= +{0}\ libraries={0} bibliotecas #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder={0} deve ser uma pasta #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format -!{0}\ pattern\ is\ missing= +{0}\ pattern\ is\ missing=padr\u00e3o {0} ausente #: debug/Compiler.java:365 #, java-format 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 0048ada21..4574c732b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_PT.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt_PT.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Paulo Monteiro , 2012 # Luis Correia , 2012 # n3okill , 2014 @@ -24,7 +25,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/mbanzi/arduino-ide-15/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -47,13 +48,16 @@ msgstr "Não utilizado: {0}" msgid " Used: {0}" msgstr "Utilizado: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Teclado' é apenas suportado no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Rato' é apenas suportado no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -884,6 +888,11 @@ msgstr "Erro ao carregar o código {0}" msgid "Error while printing." msgstr "Erro ao imprimir." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Erro a enviar" @@ -2313,11 +2322,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Não pode mudar o nome para \"{0}\" porque o rascunho já tem um ficheiro com a extensão .cpp que usa esse nome." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Não pode guardar o rascunho como \"{0}\"\nporque o rascunho já tem um ficheiro .cpp com esse nome." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" 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 43f6393f4..dca4e8546 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Paulo Monteiro , 2012 # Luis Correia , 2012 # n3okill , 2014 @@ -19,7 +20,7 @@ # renatose , 2012 # Pedro Santos , 2012 # nuno407 , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (Portugal) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (Portugal) (http\://www.transifex.com/mbanzi/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) @@ -32,11 +33,11 @@ #, java-format \ Used\:\ {0}=Utilizado\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclado' \u00e9 apenas suportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rato' \u00e9 apenas suportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -638,6 +639,10 @@ Error\ while\ loading\ code\ {0}=Erro ao carregar o c\u00f3digo {0} #: Editor.java:2567 Error\ while\ printing.=Erro ao imprimir. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Erro a enviar @@ -1664,8 +1669,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=N\u00e3 #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=N\u00e3o pode mudar o nome para "{0}" porque o rascunho j\u00e1 tem um ficheiro com a extens\u00e3o .cpp que usa esse nome. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=N\u00e3o pode guardar o rascunho como "{0}"\nporque o rascunho j\u00e1 tem um ficheiro .cpp com esse nome. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=N\u00e3o podes guardar o rascunho num directorio\ndentro de si pr\u00f3prio. Isto continuaria para todo o sempre. diff --git a/arduino-core/src/processing/app/i18n/Resources_ro.po b/arduino-core/src/processing/app/i18n/Resources_ro.po index 430b4a9aa..53395516c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ro.po +++ b/arduino-core/src/processing/app/i18n/Resources_ro.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # corneliu.e , 2013-2014 # kobalt , 2012 # Liviu Roman, 2015 @@ -20,7 +21,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Romanian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ro/)\n" "MIME-Version: 1.0\n" @@ -43,19 +44,22 @@ msgstr "Nu se utilizează: {0}" msgid " Used: {0}" msgstr "Utilizat: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "''Keyboard' este compatibil doar cu Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse' este compatibil doar cu Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " "information" -msgstr "" +msgstr "directorul 'arch' nu mai este suportat! Vezi http://goo.gl/gfFJzU pentru mai multe informaţii" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -63,7 +67,7 @@ msgstr "(editează doar atunci când Arduino IDE nu funcţionează)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 msgid "(legacy)" -msgstr "" +msgstr "(moștenire)" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" @@ -342,7 +346,7 @@ msgstr "Placă" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format msgid "Board {0} (platform {1}, package {2}) is unknown" -msgstr "" +msgstr "Placa {0} (platforma {1}, pachetul {2}) este necunoscut" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -390,7 +394,7 @@ msgstr "Opțiunea pentru build a fost modificată, se execută rebuild all" #: ../../../../../app/src/processing/app/Base.java:1210 msgid "Built-in Examples" -msgstr "" +msgstr "Exemple interne" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" @@ -880,6 +884,11 @@ msgstr "Eroare la încărcarea codului {0}" msgid "Error while printing." msgstr "Eroare în timpul tipăririi." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Eroare în timpul încărcării." @@ -913,15 +922,15 @@ msgstr "Exemple" #: ../../../../../app/src/processing/app/Base.java:1244 msgid "Examples from Custom Libraries" -msgstr "" +msgstr "Exemple din librării realizate de comunitate" #: ../../../../../app/src/processing/app/Base.java:1222 msgid "Examples from Libraries" -msgstr "" +msgstr "Exemple din librării" #: ../../../../../app/src/processing/app/Editor.java:753 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Exportul a fost anulat, modificările trebuiesc întâi salvate." #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" @@ -1034,11 +1043,11 @@ msgstr "Variabila globală foloseşte {0} bytes din memoria dinamică." #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Mergi la linia" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Mergi la linia..." #: Preferences.java:98 msgid "Greek" @@ -1162,7 +1171,7 @@ msgstr "Bibliotecă invalidă în {0}: {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format msgid "Invalid quoting: no closing [{0}] char found." -msgstr "" +msgstr "Bloc invalid: caracterul [{0}] de închidere nu a fost găsit." #: Preferences.java:102 msgid "Italian" @@ -1190,7 +1199,7 @@ msgstr "Fișier adăugat în bibliotecă. Verifică meniul \"Include biblioteca\ #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 msgid "Library can't use both 'src' and 'utility' folders." -msgstr "" +msgstr "Librăria nu poate folosi concomitent directoarele 'src' şi 'utility'." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format @@ -1199,7 +1208,7 @@ msgstr "Biblioteca este deja instalată: {0} versiunea {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Număr linie:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1212,7 +1221,7 @@ msgstr "Încărcare configurație..." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format msgid "Looking for recipes like {0}*{1}" -msgstr "" +msgstr "Caut rețete precum {0}*{1}" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." @@ -1237,7 +1246,7 @@ msgstr "Mesaj" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format msgid "Missing '{0}' from library in {1}" -msgstr "" +msgstr "Lipsă '{0}' din librărie in {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1441,7 +1450,7 @@ msgstr "Persană (Iran)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format msgid "Platform {0} (package {1}) is unknown" -msgstr "" +msgstr "Platforma {0} (pachetul {1}) este necunoscut" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" @@ -1561,7 +1570,7 @@ msgstr "Programator" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format msgid "Progress {0}" -msgstr "" +msgstr "Progres {0}" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1569,7 +1578,7 @@ msgstr "Ieşire" #: ../../../../../app/src/processing/app/Base.java:1233 msgid "RETIRED" -msgstr "" +msgstr "RETRAS" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" @@ -1625,12 +1634,12 @@ msgstr "Română" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format msgid "Running recipe: {0}" -msgstr "" +msgstr "Se execută rețeta: {0}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format msgid "Running: {0}" -msgstr "" +msgstr "Rulează: {0}" #: Preferences.java:114 msgid "Russian" @@ -1740,7 +1749,7 @@ msgstr "Porturi seriale" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format msgid "Setting build path to {0}" -msgstr "" +msgstr "Setez calea de asamblare la {0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" @@ -2048,7 +2057,7 @@ msgstr "Imposibil de realizat conexiunea: parola greșită?" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format msgid "Unable to find {0} in {1}" -msgstr "" +msgstr "Nu am găsit {0} în {1}" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" @@ -2070,12 +2079,12 @@ msgstr "Anulează" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format msgid "Unhandled type {0} in context key {1}" -msgstr "" +msgstr "Tipul {0} este neprocesat în contextul cheie {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format msgid "Unknown sketch file extension: {0}" -msgstr "" +msgstr "Extensia schiţei: {0} este necunoscuta." #: Platform.java:168 msgid "" @@ -2202,12 +2211,12 @@ msgstr "Vizitaţi Arduino.cc" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" -msgstr "" +msgstr "ATENŢIE: Categoria '{0}' în librăria {1} nu este validă. Setat la '{2}'" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format msgid "WARNING: Spurious {0} folder in '{1}' library" -msgstr "" +msgstr "ATENȚIE: Directorul {0} este fals în librăria '{1}'" #: ../../../processing/app/debug/Compiler.java:115 #, java-format @@ -2256,7 +2265,7 @@ msgstr "Atenție: platform.txt din nucleul \"{0}\" conține deprecieri {1}, conv msgid "" "Warning: platform.txt from core '{0}' misses property '{1}', using default " "value '{2}'. Consider upgrading this core." -msgstr "" +msgstr "Atenție: platform.txt din nucleul '{0}' lipsă proprietate {1}, se folosește valoarea implicită {2}. Luați în considerare modernizarea acestui nucleu." #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format @@ -2309,11 +2318,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Nu poţi redenumi schiţa în \"{0}\"\ndeoarece aceasta schiţa are deja un fişier .cpp cu acelaşi nume." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Nu poţi salva schiţa ca \"{0}\"\ndeoarece schiţa conţine deja un fişier .cpp cu acest nume." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" @@ -2515,12 +2524,12 @@ msgstr "{0} Biblioteci" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "{0} trebuie să fie un director" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format msgid "{0} pattern is missing" -msgstr "" +msgstr "{0} îi lipsește o schemă" #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_ro.properties b/arduino-core/src/processing/app/i18n/Resources_ro.properties index 35570c5fe..5711805f5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ro.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ro.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # corneliu.e , 2013-2014 # kobalt , 2012 # Liviu Roman, 2015 @@ -15,7 +16,7 @@ # Pop Gheorghe , 2013 # Pop Gheorghe , 2013-2015 # Vl\u0103du\u0163 Ilie , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Romanian (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Romanian (http\://www.transifex.com/mbanzi/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) @@ -28,20 +29,20 @@ #, java-format \ Used\:\ {0}=Utilizat\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=''Keyboard' este compatibil doar cu Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' este compatibil doar cu Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=directorul 'arch' nu mai este suportat\! Vezi http\://goo.gl/gfFJzU pentru mai multe informa\u0163ii #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editeaz\u0103 doar atunci c\u00e2nd Arduino IDE nu func\u0163ioneaz\u0103) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 -!(legacy)= +(legacy)=(mo\u0219tenire) #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir nu mai este suportat @@ -238,7 +239,7 @@ Board=Plac\u0103 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format -!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=Placa {0} (platforma {1}, pachetul {2}) este necunoscut #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -273,7 +274,7 @@ Browse=R\u0103sfoire Build\ options\ changed,\ rebuilding\ all=Op\u021biunea pentru build a fost modificat\u0103, se execut\u0103 rebuild all #: ../../../../../app/src/processing/app/Base.java:1210 -!Built-in\ Examples= +Built-in\ Examples=Exemple interne #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgar\u0103 @@ -634,6 +635,10 @@ Error\ while\ loading\ code\ {0}=Eroare la \u00eenc\u0103rcarea codului {0} #: Editor.java:2567 Error\ while\ printing.=Eroare \u00een timpul tip\u0103ririi. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Eroare \u00een timpul \u00eenc\u0103rc\u0103rii. @@ -659,13 +664,13 @@ Estonian\ (Estonia)=Eston\u0103 (Estonia) Examples=Exemple #: ../../../../../app/src/processing/app/Base.java:1244 -!Examples\ from\ Custom\ Libraries= +Examples\ from\ Custom\ Libraries=Exemple din libr\u0103rii realizate de comunitate #: ../../../../../app/src/processing/app/Base.java:1222 -!Examples\ from\ Libraries= +Examples\ from\ Libraries=Exemple din libr\u0103rii #: ../../../../../app/src/processing/app/Editor.java:753 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportul a fost anulat, modific\u0103rile trebuiesc \u00eent\u00e2i salvate. #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Export\u0103 fi\u0219ierul Binar compilat @@ -748,10 +753,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Variabila global\u0103 folose\u015fte {0} bytes din memoria dinamic\u0103. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=Mergi la linia #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=Mergi la linia... #: Preferences.java:98 Greek=Greac\u0103 @@ -840,7 +845,7 @@ Invalid\ library\ found\ in\ {0}\:\ {1}=Bibliotec\u0103 invalid\u0103 \u00een {0 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format -!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=Bloc invalid\: caracterul [{0}] de \u00eenchidere nu a fost g\u0103sit. #: Preferences.java:102 Italian=Italian\u0103 @@ -861,14 +866,14 @@ Library\ Manager=Manager Librari Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Fi\u0219ier ad\u0103ugat \u00een bibliotec\u0103. Verific\u0103 meniul "Include biblioteca" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 -!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Libr\u0103ria nu poate folosi concomitent directoarele 'src' \u015fi 'utility'. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=Biblioteca este deja instalat\u0103\: {0} versiunea {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=Num\u0103r linie\: #: Preferences.java:106 Lithuaninan=Lituanian\u0103 @@ -878,7 +883,7 @@ Loading\ configuration...=\u00cenc\u0103rcare configura\u021bie... #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format -!Looking\ for\ recipes\ like\ {0}*{1}= +Looking\ for\ recipes\ like\ {0}*{1}=Caut re\u021bete precum {0}*{1} #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Memoria disponibil\u0103 este foarte redus\u0103, pot ap\u0103rea probleme de stabilitate @@ -897,7 +902,7 @@ Message=Mesaj #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format -!Missing\ '{0}'\ from\ library\ in\ {1}= +Missing\ '{0}'\ from\ library\ in\ {1}=Lips\u0103 '{0}' din libr\u0103rie in {1} #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Mod nesuportat @@ -1050,7 +1055,7 @@ Persian\ (Iran)=Persan\u0103 (Iran) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format -!Platform\ {0}\ (package\ {1})\ is\ unknown= +Platform\ {0}\ (package\ {1})\ is\ unknown=Platforma {0} (pachetul {1}) este necunoscut #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=V\u0103 rug\u0103m sa confirma\u021bi \u0219tergerea de pl\u0103ci @@ -1139,13 +1144,13 @@ Programmer=Programator #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format -!Progress\ {0}= +Progress\ {0}=Progres {0} #: Base.java:783 Editor.java:593 Quit=Ie\u015fire #: ../../../../../app/src/processing/app/Base.java:1233 -!RETIRED= +RETIRED=RETRAS #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Ref\u0103 @@ -1188,11 +1193,11 @@ Romanian=Rom\u00e2n\u0103 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 #, java-format -!Running\ recipe\:\ {0}= +Running\ recipe\:\ {0}=Se execut\u0103 re\u021beta\: {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format -!Running\:\ {0}= +Running\:\ {0}=Ruleaz\u0103\: {0} #: Preferences.java:114 Russian=Rus\u0103 @@ -1273,7 +1278,7 @@ Serial\ ports=Porturi seriale #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format -!Setting\ build\ path\ to\ {0}= +Setting\ build\ path\ to\ {0}=Setez calea de asamblare la {0} #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=Set\u0103ri @@ -1472,7 +1477,7 @@ Unable\ to\ connect\:\ wrong\ password?=Imposibil de realizat conexiunea\: parol #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format -!Unable\ to\ find\ {0}\ in\ {1}= +Unable\ to\ find\ {0}\ in\ {1}=Nu am g\u0103sit {0} \u00een {1} #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Nu pot deschide monitorizarea serial\u0103 @@ -1489,11 +1494,11 @@ Undo=Anuleaz\u0103 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -!Unhandled\ type\ {0}\ in\ context\ key\ {1}= +Unhandled\ type\ {0}\ in\ context\ key\ {1}=Tipul {0} este neprocesat \u00een contextul cheie {1} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format -!Unknown\ sketch\ file\ extension\:\ {0}= +Unknown\ sketch\ file\ extension\:\ {0}=Extensia schi\u0163ei\: {0} este necunoscuta. #: 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\u0103 nespecificat\u0103, lansator indisponibil.\nPentru a permite deschiderea URL-urilor sau a directoarelor, adauga\u0163i urm\u0103toarea linie\n"launcher\=/path/to/app" \u00een fi\u015fierul preferences.txt @@ -1588,11 +1593,11 @@ Visit\ Arduino.cc=Vizita\u0163i Arduino.cc #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 #, java-format -!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=ATEN\u0162IE\: Categoria '{0}' \u00een libr\u0103ria {1} nu este valid\u0103. Setat la '{2}' #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 #, java-format -!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=ATEN\u021aIE\: Directorul {0} este fals \u00een libr\u0103ria '{1}' #: ../../../processing/app/debug/Compiler.java:115 #, java-format @@ -1624,7 +1629,7 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Aten\ Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Aten\u021bie\: platform.txt din nucleul "{0}" con\u021bine deprecieri {1}, convertite automat la {2}. Lua\u021bi \u00een considerare modernizarea acestui nucleu. #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=Aten\u021bie\: platform.txt din nucleul '{0}' lips\u0103 proprietate {1}, se folose\u0219te valoarea implicit\u0103 {2}. Lua\u021bi \u00een considerare modernizarea acestui nucleu. #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format @@ -1660,8 +1665,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Nu se poate impo #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nu po\u0163i redenumi schi\u0163a \u00een "{0}"\ndeoarece aceasta schi\u0163a are deja un fi\u015fier .cpp cu acela\u015fi nume. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nu po\u0163i salva schi\u0163a ca "{0}"\ndeoarece schi\u0163a con\u0163ine deja un fi\u015fier .cpp cu acest nume. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nu po\u0163i salva o schi\u0103 \u00eentr-o alt\u0103 schi\u0163\u0103.\nAcest lucru ar putea dura o ve\u015fnicie. @@ -1788,11 +1793,11 @@ version\ {0}=versiunea {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder={0} trebuie s\u0103 fie un director #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format -!{0}\ pattern\ is\ missing= +{0}\ pattern\ is\ missing={0} \u00eei lipse\u0219te o schem\u0103 #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_ru.po b/arduino-core/src/processing/app/i18n/Resources_ru.po index 5631283a2..f89f7cdb5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ru.po +++ b/arduino-core/src/processing/app/i18n/Resources_ru.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Aleksandr Jadov , 2013 # AlexL , 2015 # angry_snake , 2014 @@ -19,12 +20,13 @@ # Petr Beklemishev , 2014-2015 # Petr Beklemishev , 2015 # Руслан , 2013 +# Яков Маслов , 2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Russian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ru/)\n" "MIME-Version: 1.0\n" @@ -47,19 +49,22 @@ msgstr "Не используется: {0}" msgid " Used: {0}" msgstr " Используется: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "Клавиатура поддерживается только в Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "Мышь поддерживается только в Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " "information" -msgstr "" +msgstr "папка 'arch' больше не поддерживается! Смотри подробнее на http://goo.gl/gfFJzU " #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -67,7 +72,7 @@ msgstr "(только когда Arduino IDE не запущена)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 msgid "(legacy)" -msgstr "" +msgstr "(устаревшее)" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" @@ -346,7 +351,7 @@ msgstr "Плата" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format msgid "Board {0} (platform {1}, package {2}) is unknown" -msgstr "" +msgstr "Плата {0} (платформа {1}, пакет {2}) неизвестна" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -394,7 +399,7 @@ msgstr "Изменены опции сборки, пересобираем вс #: ../../../../../app/src/processing/app/Base.java:1210 msgid "Built-in Examples" -msgstr "" +msgstr "Встроенные Примеры" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" @@ -884,6 +889,11 @@ msgstr "Ошибка при загрузке кода {0}" msgid "Error while printing." msgstr "Ошибка печати." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Ошибка при загрузке в плату" @@ -921,7 +931,7 @@ msgstr "" #: ../../../../../app/src/processing/app/Base.java:1222 msgid "Examples from Libraries" -msgstr "" +msgstr "Примеры из Библиотек" #: ../../../../../app/src/processing/app/Editor.java:753 msgid "Export canceled, changes must first be saved." @@ -1038,11 +1048,11 @@ msgstr "Глобальные переменные используют {0} ба #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Перейти к строке" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Перейти к строке..." #: Preferences.java:98 msgid "Greek" @@ -1166,7 +1176,7 @@ msgstr "Неверная библиотека найдена в {0}: {1}" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format msgid "Invalid quoting: no closing [{0}] char found." -msgstr "" +msgstr "Неверная расстановка [{0}] - нет закрывающего символа." #: Preferences.java:102 msgid "Italian" @@ -1194,7 +1204,7 @@ msgstr "Библиотека добавлена. Проверьте меню \" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 msgid "Library can't use both 'src' and 'utility' folders." -msgstr "" +msgstr "Библиотека не может использовать обе папки src' и 'utility'." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format @@ -1203,7 +1213,7 @@ msgstr "Библиотека уже установлена: {0} версии {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Номер строки:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1241,7 +1251,7 @@ msgstr "Сообщение" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format msgid "Missing '{0}' from library in {1}" -msgstr "" +msgstr "Пропущен '{0}' из библиотеки в {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1445,7 +1455,7 @@ msgstr "Персидский (Иран)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format msgid "Platform {0} (package {1}) is unknown" -msgstr "" +msgstr "Платформа {0} (пакет {1}) неизвестна" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" @@ -1565,7 +1575,7 @@ msgstr "Программатор" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format msgid "Progress {0}" -msgstr "" +msgstr "Прогресс {0}" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1634,7 +1644,7 @@ msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format msgid "Running: {0}" -msgstr "" +msgstr "Выполняется: {0}" #: Preferences.java:114 msgid "Russian" @@ -1744,7 +1754,7 @@ msgstr "Последовательные порты" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format msgid "Setting build path to {0}" -msgstr "" +msgstr "Путь построения указывает в {0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" @@ -2052,7 +2062,7 @@ msgstr "Не могу подключиться: неправильный пар #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format msgid "Unable to find {0} in {1}" -msgstr "" +msgstr "Невозможно найти {0} в {1}" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" @@ -2079,7 +2089,7 @@ msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format msgid "Unknown sketch file extension: {0}" -msgstr "" +msgstr "Неизвестное расширение файла скетча: {0}" #: Platform.java:168 msgid "" @@ -2313,11 +2323,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Вы не можете переименовать скетч в \"{0}\", \nпотому что уже есть .cpp файл с таким именем." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Вы не можете сохранить скетч как \"{0}\", \nпотому что уже есть .cpp файл с таким именем." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" @@ -2519,12 +2529,12 @@ msgstr "{0} библиотек" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "{0} должно быть папкой" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format msgid "{0} pattern is missing" -msgstr "" +msgstr "{0} не найден шаблон" #: debug/Compiler.java:365 #, 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 257a807e9..61702f74a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ru.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ru.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Aleksandr Jadov , 2013 # AlexL , 2015 # angry_snake , 2014 @@ -19,7 +20,8 @@ # Petr Beklemishev , 2014-2015 # Petr Beklemishev , 2015 # \u0420\u0443\u0441\u043b\u0430\u043d , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Russian (http\://www.transifex.com/mbanzi/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\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\n +# \u042f\u043a\u043e\u0432 \u041c\u0430\u0441\u043b\u043e\u0432 , 2015 +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Russian (http\://www.transifex.com/mbanzi/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\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\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 IDE) @@ -32,20 +34,20 @@ #, java-format \ Used\:\ {0}=\ \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u041a\u043b\u0430\u0432\u0438\u0430\u0442\u0443\u0440\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u041c\u044b\u0448\u044c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=\u043f\u0430\u043f\u043a\u0430 'arch' \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f\! \u0421\u043c\u043e\u0442\u0440\u0438 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u0435\u0435 \u043d\u0430 http\://goo.gl/gfFJzU #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0442\u043e\u043b\u044c\u043a\u043e \u043a\u043e\u0433\u0434\u0430 Arduino IDE \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 -!(legacy)= +(legacy)=(\u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0435\u0435) #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f @@ -242,7 +244,7 @@ Board=\u041f\u043b\u0430\u0442\u0430 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format -!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=\u041f\u043b\u0430\u0442\u0430 {0} (\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430 {1}, \u043f\u0430\u043a\u0435\u0442 {2}) \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430 #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -277,7 +279,7 @@ Browse=\u041e\u0431\u0437\u043e\u0440 Build\ options\ changed,\ rebuilding\ all=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u044b \u043e\u043f\u0446\u0438\u0438 \u0441\u0431\u043e\u0440\u043a\u0438, \u043f\u0435\u0440\u0435\u0441\u043e\u0431\u0438\u0440\u0430\u0435\u043c \u0432\u0441\u0435 #: ../../../../../app/src/processing/app/Base.java:1210 -!Built-in\ Examples= +Built-in\ Examples=\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u044b\u0435 \u041f\u0440\u0438\u043c\u0435\u0440\u044b #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0411\u043e\u043b\u0433\u0430\u0440\u0441\u043a\u0438\u0439 @@ -638,6 +640,10 @@ Error\ while\ loading\ code\ {0}=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u04 #: Editor.java:2567 Error\ while\ printing.=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0435\u0447\u0430\u0442\u0438. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0432 \u043f\u043b\u0430\u0442\u0443 @@ -666,7 +672,7 @@ Examples=\u041f\u0440\u0438\u043c\u0435\u0440\u044b !Examples\ from\ Custom\ Libraries= #: ../../../../../app/src/processing/app/Base.java:1222 -!Examples\ from\ Libraries= +Examples\ from\ Libraries=\u041f\u0440\u0438\u043c\u0435\u0440\u044b \u0438\u0437 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a #: ../../../../../app/src/processing/app/Editor.java:753 Export\ canceled,\ changes\ must\ first\ be\ saved.=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u043e\u0442\u043c\u0435\u043d\u0435\u043d, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0443\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. @@ -752,10 +758,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442 {0} \u0431\u0430\u0439\u0442 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u043f\u0430\u043c\u044f\u0442\u0438. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0441\u0442\u0440\u043e\u043a\u0435 #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a \u0441\u0442\u0440\u043e\u043a\u0435... #: Preferences.java:98 Greek=\u0413\u0440\u0435\u0447\u0435\u0441\u043a\u0438\u0439 @@ -844,7 +850,7 @@ Invalid\ library\ found\ in\ {0}\:\ {1}=\u041d\u0435\u0432\u0435\u0440\u043d\u04 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format -!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=\u041d\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u0440\u0430\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 [{0}] - \u043d\u0435\u0442 \u0437\u0430\u043a\u0440\u044b\u0432\u0430\u044e\u0449\u0435\u0433\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u0430. #: Preferences.java:102 Italian=\u0418\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0438\u0439 @@ -865,14 +871,14 @@ Library\ Manager=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0431\u0438\u Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u043c\u0435\u043d\u044e "\u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 -!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u0435 \u043f\u0430\u043f\u043a\u0438 src' \u0438 'utility'. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430\: {0} \u0432\u0435\u0440\u0441\u0438\u0438 {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=\u041d\u043e\u043c\u0435\u0440 \u0441\u0442\u0440\u043e\u043a\u0438\: #: Preferences.java:106 Lithuaninan=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438\u0439 @@ -901,7 +907,7 @@ Message=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format -!Missing\ '{0}'\ from\ library\ in\ {1}= +Missing\ '{0}'\ from\ library\ in\ {1}=\u041f\u0440\u043e\u043f\u0443\u0449\u0435\u043d '{0}' \u0438\u0437 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u0432 {1} #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=\u0420\u0435\u0436\u0438\u043c \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f @@ -1054,7 +1060,7 @@ Persian\ (Iran)=\u041f\u0435\u0440\u0441\u0438\u0434\u0441\u043a\u0438\u0439 (\u #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format -!Platform\ {0}\ (package\ {1})\ is\ unknown= +Platform\ {0}\ (package\ {1})\ is\ unknown=\u041f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430 {0} (\u043f\u0430\u043a\u0435\u0442 {1}) \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0442 @@ -1143,7 +1149,7 @@ Programmer=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430\u0442\u043e\u0 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format -!Progress\ {0}= +Progress\ {0}=\u041f\u0440\u043e\u0433\u0440\u0435\u0441\u0441 {0} #: Base.java:783 Editor.java:593 Quit=\u0412\u044b\u0445\u043e\u0434 @@ -1196,7 +1202,7 @@ Romanian=\u0420\u0443\u043c\u044b\u043d\u0441\u043a\u0438\u0439 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format -!Running\:\ {0}= +Running\:\ {0}=\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f\: {0} #: Preferences.java:114 Russian=\u0420\u0443\u0441\u0441\u043a\u0438\u0439 @@ -1277,7 +1283,7 @@ Serial\ ports=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format -!Setting\ build\ path\ to\ {0}= +Setting\ build\ path\ to\ {0}=\u041f\u0443\u0442\u044c \u043f\u043e\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u044f \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u0435\u0442 \u0432 {0} #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 @@ -1476,7 +1482,7 @@ Unable\ to\ connect\:\ wrong\ password?=\u041d\u0435 \u043c\u043e\u0433\u0443 \u #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format -!Unable\ to\ find\ {0}\ in\ {1}= +Unable\ to\ find\ {0}\ in\ {1}=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 {0} \u0432 {1} #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u041d\u0435 \u043c\u043e\u0433\u0443 \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043c\u043e\u043d\u0438\u0442\u043e\u0440 \u043f\u043e\u0440\u0442\u0430 @@ -1497,7 +1503,7 @@ Undo=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 #, java-format -!Unknown\ sketch\ file\ extension\:\ {0}= +Unknown\ sketch\ file\ extension\:\ {0}=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u043e\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0441\u043a\u0435\u0442\u0447\u0430\: {0} #: 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=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430, \u0437\u0430\u043f\u0443\u0441\u043a \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d.\n\u0427\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 URL-\u0430\u0434\u0440\u0435\u0441\u043e\u0432 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438, \u0434\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0441\u0442\u0440\u043e\u043a\u0443 "launcher\=/path/to/app" \u0432 \u0444\u0430\u0439\u043b preferences.txt @@ -1664,8 +1670,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\u0412\u044b \u0 #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0441\u043a\u0435\u0442\u0447 \u0432 "{0}", \n\u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0443\u0436\u0435 \u0435\u0441\u0442\u044c .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447 \u043a\u0430\u043a "{0}", \n\u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e \u0443\u0436\u0435 \u0435\u0441\u0442\u044c .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447 \u0432 \u043f\u0430\u043f\u043a\u0443 \u0432\u043d\u0443\u0442\u0440\u0438 \u0441\u0435\u0431\u044f. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0440\u0435\u043a\u0443\u0440\u0441\u0438\u0438. @@ -1792,11 +1798,11 @@ version\ {0}=\u0432\u0435\u0440\u0441\u0438\u044f {0} #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder={0} \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u043e\u0439 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format -!{0}\ pattern\ is\ missing= +{0}\ pattern\ is\ missing={0} \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d \u0448\u0430\u0431\u043b\u043e\u043d #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_sk.po b/arduino-core/src/processing/app/i18n/Resources_sk.po index 02ae2ef2e..b46a85692 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sk.po +++ b/arduino-core/src/processing/app/i18n/Resources_sk.po @@ -8,13 +8,14 @@ # Translators: # Translators: # Translators: +# Translators: # Zdeno Sekerák , 2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Slovak (http://www.transifex.com/mbanzi/arduino-ide-15/language/sk/)\n" "MIME-Version: 1.0\n" @@ -37,13 +38,16 @@ msgstr "Nepoužité: {0}" msgid " Used: {0}" msgstr "Použité: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' je podporovaný iba v Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Myš' je podporovaná iba v Adruino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -874,6 +878,11 @@ msgstr "Nastala chyba pri nahrávaní kódu {0}" msgid "Error while printing." msgstr "Nastala chyba pri tlači." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Nastala chyba pri nahrávaní" @@ -2303,11 +2312,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Nejde prejmenovať projekt na \"{0}\"\npretože súbor s rovnakým menom avšak s príponou .cpp už existuje." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Nejde uložiť projekt ako \"{0}\"\npretože projekt obsahuje súbor .cpp s rovnakým názvom." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_sk.properties b/arduino-core/src/processing/app/i18n/Resources_sk.properties index 2fad74a28..4ba1209f4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sk.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sk.properties @@ -8,8 +8,9 @@ # Translators: # Translators: # Translators: +# Translators: # Zdeno Seker\u00e1k , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Slovak (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sk/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sk\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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Slovak (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sk/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sk\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) @@ -22,11 +23,11 @@ #, java-format \ Used\:\ {0}=Pou\u017eit\u00e9\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' je podporovan\u00fd iba v Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='My\u0161' je podporovan\u00e1 iba v Adruino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Nastala chyba pri nahr\u00e1van\u00ed k\u00f3du #: Editor.java:2567 Error\ while\ printing.=Nastala chyba pri tla\u010di. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Nastala chyba pri nahr\u00e1van\u00ed @@ -1654,8 +1659,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Nemo\u017eno imp #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nejde prejmenova\u0165 projekt na "{0}"\npreto\u017ee s\u00fabor s rovnak\u00fdm menom av\u0161ak s pr\u00edponou .cpp u\u017e existuje. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nejde ulo\u017ei\u0165 projekt ako "{0}"\npreto\u017ee projekt obsahuje s\u00fabor .cpp s rovnak\u00fdm n\u00e1zvom. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nejde ulo\u017ei\u0165 projekt do adres\u00e1ra vn\u00fatri seba sam\u00e9ho.\nDo\u0161lo by k zacykleniu do nekone\u010dna. 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 c9aa1ed87..a2c543376 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sl_SI.po +++ b/arduino-core/src/processing/app/i18n/Resources_sl_SI.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Cristian Maglie , 2013 # Črt Gorup , 2013 # Miha Feus , 2012 @@ -17,7 +18,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -40,13 +41,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "Tipkovnica je podprta samo na Arduinu Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "Miška je podprta samo na Arduinu Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -877,6 +881,11 @@ msgstr "Napaka pri nalaganju kode {0}" msgid "Error while printing." msgstr "Napaka pri tiskanju." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2306,11 +2315,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Skice ne moreš preimenovati v \"{0}\",⏎ saj že ima .cpp datoteko s tem imenom." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Skice ne moreš shraniti kot \"{0}\",⏎ saj že ima .cpp datoteko s tem imenom." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 8b5018ab4..ec504b7f3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties @@ -8,11 +8,12 @@ # Translators: # Translators: # Translators: +# Translators: # Cristian Maglie , 2013 # \u010crt Gorup , 2013 # Miha Feus , 2012 # Miha Feus , 2013-2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Slovenian (Slovenia) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Slovenian (Slovenia) (http\://www.transifex.com/mbanzi/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) @@ -25,11 +26,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=Tipkovnica je podprta samo na Arduinu Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=Mi\u0161ka je podprta samo na Arduinu Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -631,6 +632,10 @@ Error\ while\ loading\ code\ {0}=Napaka pri nalaganju kode {0} #: Editor.java:2567 Error\ while\ printing.=Napaka pri tiskanju. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1657,8 +1662,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Ne more #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Skice ne more\u0161 preimenovati v "{0}",\u23ce saj \u017ee ima .cpp datoteko s tem imenom. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Skice ne more\u0161 shraniti kot "{0}",\u23ce saj \u017ee ima .cpp datoteko s tem imenom. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Skice ne more\u0161 shraniti v lastno mapo.\u23ce To bi se ponavljalo v nedogled. diff --git a/arduino-core/src/processing/app/i18n/Resources_sq.po b/arduino-core/src/processing/app/i18n/Resources_sq.po index 26a4e7f7c..ba5067c56 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sq.po +++ b/arduino-core/src/processing/app/i18n/Resources_sq.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Besiana Bici , 2014 # Elio Qoshi , 2014 # Florian Tani , 2014 @@ -20,7 +21,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Albanian (http://www.transifex.com/mbanzi/arduino-ide-15/language/sq/)\n" "MIME-Version: 1.0\n" @@ -43,13 +44,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "\"Tastiera\" perkrahet vetem ne Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "\"Miu\" perkrahet vetem ne Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -880,6 +884,11 @@ msgstr "Gabim gjate ngarkimit te kodit {0}" msgid "Error while printing." msgstr "Gabim gjate printimit." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2309,11 +2318,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Ju nuk mund te ruani skicen si \"{0}\"\nsepse skica ekziston njehere si nje skedar .cpp me ate emertim" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Ju nuk mund te ruani skicen si \"{0}\"\nsepse skica ekziston njehere si nje skedar .cpp me ate emertim" +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_sq.properties b/arduino-core/src/processing/app/i18n/Resources_sq.properties index ac2e8ac5d..78dc08181 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sq.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sq.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Besiana Bici , 2014 # Elio Qoshi , 2014 # Florian Tani , 2014 @@ -15,7 +16,7 @@ # Orven Bregu , 2014 # www.openlabs.cc , 2014 # besmirzekaj , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Albanian (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Albanian (http\://www.transifex.com/mbanzi/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) @@ -28,11 +29,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo="Tastiera" perkrahet vetem ne Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo="Miu" perkrahet vetem ne Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -634,6 +635,10 @@ Error\ while\ loading\ code\ {0}=Gabim gjate ngarkimit te kodit {0} #: Editor.java:2567 Error\ while\ printing.=Gabim gjate printimit. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1660,8 +1665,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Ju nuk #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{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:861 -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 +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 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 diff --git a/arduino-core/src/processing/app/i18n/Resources_sv.po b/arduino-core/src/processing/app/i18n/Resources_sv.po index 0c6a47d4d..371dec50b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sv.po +++ b/arduino-core/src/processing/app/i18n/Resources_sv.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anton Ryberg , 2015 # Daniel Jansson , 2012 # Dan West , 2013 @@ -21,7 +22,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Swedish (http://www.transifex.com/mbanzi/arduino-ide-15/language/sv/)\n" "MIME-Version: 1.0\n" @@ -44,13 +45,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard' stödjs endast av Adruino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mus' stöds endast av Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -881,6 +885,11 @@ msgstr "Fel vid laddning av kod {0}" msgid "Error while printing." msgstr "Fel vid utskrift." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Fel vid uppladdning" @@ -2310,11 +2319,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Du kan inte byta namn på sketchen till \"{0}\"\neftersom att sketchen redan har en .cpp-fil med det namnet." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Du kan inte spara sketchen som \"{0}\"\neftersom att sketchen redan har en .cpp-fil med det namnet." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_sv.properties b/arduino-core/src/processing/app/i18n/Resources_sv.properties index a73ec35c9..27712c33f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sv.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sv.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anton Ryberg , 2015 # Daniel Jansson , 2012 # Dan West , 2013 @@ -16,7 +17,7 @@ # GudenTorson, 2015 # Jonas Bengtsson , 2013 # Patrik Hermansson , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Swedish (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Swedish (http\://www.transifex.com/mbanzi/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) @@ -29,11 +30,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' st\u00f6djs endast av Adruino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mus' st\u00f6ds endast av Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -635,6 +636,10 @@ Error\ while\ loading\ code\ {0}=Fel vid laddning av kod {0} #: Editor.java:2567 Error\ while\ printing.=Fel vid utskrift. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Fel vid uppladdning @@ -1661,8 +1666,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Du kan #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan inte byta namn p\u00e5 sketchen till "{0}"\neftersom att sketchen redan har en .cpp-fil med det namnet. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan inte spara sketchen som "{0}"\neftersom att sketchen redan har en .cpp-fil med det namnet. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Du kan inte spara sketchen i en mapp\ninuti sig sj\u00e4lv. Det skulle kunna p\u00e5g\u00e5 i all evighet. diff --git a/arduino-core/src/processing/app/i18n/Resources_ta.po b/arduino-core/src/processing/app/i18n/Resources_ta.po index a3627c95c..b55730981 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ta.po +++ b/arduino-core/src/processing/app/i18n/Resources_ta.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Shankar C , 2015 # Nadar Solomon Sunder , 2014 msgid "" @@ -15,7 +16,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Tamil (http://www.transifex.com/mbanzi/arduino-ide-15/language/ta/)\n" "MIME-Version: 1.0\n" @@ -38,12 +39,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -875,6 +879,11 @@ msgstr "குறியீடு {0}ஐ மேலேற்றும்போத msgid "Error while printing." msgstr "அச்சிடும்போது பிழை ஏற்பட்டுவிட்டது." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2304,11 +2313,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "நீங்கள் \"{0}\" என்று வரைவை பெயர்மாற்றம் செய்ய முடியாது\nஏனென்றால் அந்த வரைவு ஏற்கனவே அதே பெயரில் ஒரு .cpp கோப்பை கொண்டுள்ளது." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "\"{0}\" என வரைவை நீங்கள் சேமிக்க முடியாது\nஏனென்றால், ஏற்கனவே அந்தப்பெயரில் .cpp கோப்பு உள்ளது." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ta.properties b/arduino-core/src/processing/app/i18n/Resources_ta.properties index 65e53af6d..31af1f26e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ta.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ta.properties @@ -8,9 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Shankar C , 2015 # Nadar Solomon Sunder , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Tamil (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Tamil (http\://www.transifex.com/mbanzi/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) @@ -23,11 +24,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -629,6 +630,10 @@ 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. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0ba8\ #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd "{0}" \u0b8e\u0ba9\u0bcd\u0bb1\u0bc1 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1\n\u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd \u0b85\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0b85\u0ba4\u0bc7 \u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0bb2\u0bcd \u0b92\u0bb0\u0bc1 .cpp \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.="{0}" \u0b8e\u0ba9 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1\n\u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd, \u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0b85\u0ba8\u0bcd\u0ba4\u0baa\u0bcd\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0bb2\u0bcd .cpp \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3 \u0b89\u0bb1\u0bc8\u0baf\u0bbf\u0bb2\u0bc7\u0baf\u0bc7 \u0b85\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\n\u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1. \u0b87\u0ba4\u0bc1 \u0ba8\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bc7 \u0baa\u0bcb\u0b95\u0bc1\u0bae\u0bcd. diff --git a/arduino-core/src/processing/app/i18n/Resources_tr.po b/arduino-core/src/processing/app/i18n/Resources_tr.po index be6a9e34c..0ec50355d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tr.po +++ b/arduino-core/src/processing/app/i18n/Resources_tr.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anıl Özbek , 2013 # Ayse Gokce Bor , 2012 # b , 2015 @@ -36,7 +37,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Turkish (http://www.transifex.com/mbanzi/arduino-ide-15/language/tr/)\n" "MIME-Version: 1.0\n" @@ -59,13 +60,16 @@ msgstr "Kullanılmıyor: {0}" msgid " Used: {0}" msgstr "Kullanılıyor: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Klavye' sadece Arduino Leonardo tarafından desteklenmektedir" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Fare' sadece Arduino Leonardo tarafından desteklenmektedir." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -896,6 +900,11 @@ msgstr "{0} numaralı kodu yüklerken hata oluştu." msgid "Error while printing." msgstr "Yazdırma sırasında hata oluştu." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Kod yüklenirken hata oluştu" @@ -2325,11 +2334,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Taslak adını \"{0}\" ile değiştiremezsiniz\nçünkü taslak içerisinde aynı isimde bir .cpp dosyasına sahipsiniz." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Taslağı \"{0}\" olarak kaydedemezsiniz\nÇünkü taslak içerisinde halihazırda aynı isimle bir .cpp dosyası mevcut" +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_tr.properties b/arduino-core/src/processing/app/i18n/Resources_tr.properties index 196de6904..93c6428e3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_tr.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # An\u0131l \u00d6zbek , 2013 # Ayse Gokce Bor , 2012 # b , 2015 @@ -31,7 +32,7 @@ # selengalp , 2014 # YUSUF CAKIR, 2014 # Zubeyir OZTURK , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Turkish (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Turkish (http\://www.transifex.com/mbanzi/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) @@ -44,11 +45,11 @@ #, java-format \ Used\:\ {0}=Kullan\u0131l\u0131yor\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Klavye' sadece Arduino Leonardo taraf\u0131ndan desteklenmektedir +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Fare' sadece Arduino Leonardo taraf\u0131ndan desteklenmektedir. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information='arch' dizini art\u0131k desteklenmiyor\! Daha fazla bilgi i\u00e7in http\://goo.gl/gfFJzU adresine bak\u0131n. @@ -650,6 +651,10 @@ 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. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=Kod y\u00fcklenirken hata olu\u015ftu @@ -1676,8 +1681,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Taslak defterini #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Taslak ad\u0131n\u0131 "{0}" ile de\u011fi\u015ftiremezsiniz\n\u00e7\u00fcnk\u00fc taslak i\u00e7erisinde ayn\u0131 isimde bir .cpp dosyas\u0131na sahipsiniz. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Tasla\u011f\u0131 "{0}" olarak kaydedemezsiniz\n\u00c7\u00fcnk\u00fc taslak i\u00e7erisinde halihaz\u0131rda ayn\u0131 isimle bir .cpp dosyas\u0131 mevcut +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Tasla\u011f\u0131 kendi klas\u00f6r\u00fcn\u00fcn i\u00e7erisine kaydedemezsiniz.\nYoksa bu sonsuza kadar b\u00f6yle devam ederdi. diff --git a/arduino-core/src/processing/app/i18n/Resources_tzl.po b/arduino-core/src/processing/app/i18n/Resources_tzl.po index 3e59b0d03..1d9054774 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tzl.po +++ b/arduino-core/src/processing/app/i18n/Resources_tzl.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Marcel Machado , 2015 # Robin van der Vliet , 2015 msgid "" @@ -15,7 +16,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Talossan (http://www.transifex.com/mbanzi/arduino-ide-15/language/tzl/)\n" "MIME-Version: 1.0\n" @@ -38,12 +39,15 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 @@ -875,6 +879,11 @@ msgstr "" msgid "Error while printing." msgstr "" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2304,10 +2313,10 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." +"because the sketch already has a file with that name." msgstr "" #: Sketch.java:883 diff --git a/arduino-core/src/processing/app/i18n/Resources_tzl.properties b/arduino-core/src/processing/app/i18n/Resources_tzl.properties index 2c5784301..0027985ff 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tzl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_tzl.properties @@ -8,9 +8,10 @@ # Translators: # Translators: # Translators: +# Translators: # Marcel Machado , 2015 # Robin van der Vliet , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Talossan (http\://www.transifex.com/mbanzi/arduino-ide-15/language/tzl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tzl\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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Talossan (http\://www.transifex.com/mbanzi/arduino-ide-15/language/tzl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tzl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -23,11 +24,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -629,6 +630,10 @@ English\ (United\ Kingdom)=Angleasca (Regip\u00e4ts Viensi\u00e7at) #: Editor.java:2567 !Error\ while\ printing.= +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1655,8 +1660,8 @@ Yes=\u00dcc #: Sketch.java:421 !You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 !You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= diff --git a/arduino-core/src/processing/app/i18n/Resources_uk.po b/arduino-core/src/processing/app/i18n/Resources_uk.po index ee4562ca8..d963e9f9a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_uk.po +++ b/arduino-core/src/processing/app/i18n/Resources_uk.po @@ -8,13 +8,15 @@ # Translators: # Translators: # Translators: +# Translators: # netavek , 2015 +# Яков Маслов , 2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Ukrainian (http://www.transifex.com/mbanzi/arduino-ide-15/language/uk/)\n" "MIME-Version: 1.0\n" @@ -30,26 +32,29 @@ msgstr " (вимагає перезавантаження Arduino)" #: ../../../processing/app/debug/Compiler.java:529 #, java-format msgid " Not used: {0}" -msgstr "" +msgstr "Не застосовується: {0}" #: ../../../processing/app/debug/Compiler.java:525 #, java-format msgid " Used: {0}" +msgstr "Використано: {0}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "«Keyboard» підтримується лише в Arduino Leonardo" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "«Mouse» підтримується лише в Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " "information" -msgstr "" +msgstr "папка 'arch' більше не підтримується! Перегляньте http://goo.gl/gfFJzU для більшої інформаціі" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" @@ -57,11 +62,11 @@ msgstr "(редагуйте тільки якщо Arduino не запущено) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 msgid "(legacy)" -msgstr "" +msgstr "(застаріле)" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" -msgstr "" +msgstr "--curdir більше не підтримується" #: ../../../processing/app/Base.java:468 msgid "" @@ -76,18 +81,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Є оновлення для деяких ваших {0}плат{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Є оновлення для деяких ваших {0}плат{1} та {2}бібліотек{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Є оновлення для деяких ваших {0}бібліотек{1}" #: Editor.java:2053 msgid "" @@ -121,11 +126,11 @@ msgstr "Доступна нова версія Arduino,\nХочете перей #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "A newer {0} package is available" -msgstr "" +msgstr "Більш новий {0} пакет доступний " #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" +msgstr "Підкаталог з вашими скетчами не є дійсною бібліотекою" #: Editor.java:1116 msgid "About Arduino" @@ -133,7 +138,7 @@ msgstr "Про Arduino" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr "Додати .ZIP бібліотеку" #: Editor.java:650 msgid "Add File..." @@ -141,25 +146,25 @@ msgstr "Додати файл…" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" -msgstr "" +msgstr "URL Менеджеров Додаткових Плат" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 msgid "Additional Boards Manager URLs: " -msgstr "" +msgstr "URL Менеджеров Додаткових Плат:" #: ../../../../../app/src/processing/app/Preferences.java:161 msgid "Afrikaans" -msgstr "" +msgstr "Афрікаанс" #: ../../../processing/app/Preferences.java:96 msgid "Albanian" -msgstr "албанська" +msgstr "Албанська" #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 msgid "All" -msgstr "" +msgstr "Всі" #: tools/FixEncoding.java:77 msgid "" @@ -170,7 +175,7 @@ msgstr "Виникла помилка при спробі виправити к #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 msgid "An error occurred while updating libraries index!" -msgstr "" +msgstr "Сталася помилка при відновленні индексу бібліотек!" #: ../../../processing/app/BaseNoGui.java:528 msgid "An error occurred while uploading the sketch" @@ -277,7 +282,7 @@ msgstr "Необхідний аргумент для --preferences-file" #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format msgid "Argument required for {0}" -msgstr "" +msgstr "Необхідний аргумент для {0}" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" @@ -301,11 +306,11 @@ msgstr "Автоформатування завершено." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Автоматично знайти налаштування прокси" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "URL автоматичної конфігураціі проксі:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -336,7 +341,7 @@ msgstr "Плата" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format msgid "Board {0} (platform {1}, package {2}) is unknown" -msgstr "" +msgstr "Плата {0} (платформа {1}, пакет {2}) невідома" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -351,20 +356,20 @@ msgstr "Плата:" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" -msgstr "" +msgstr "Менеджер плат" #: ../../../../../app/src/processing/app/Base.java:1320 msgid "Boards Manager..." -msgstr "" +msgstr "Менеджер плат..." #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 msgid "Boards included in this package:" -msgstr "" +msgstr "Плата в комплекті цього пакету:" #: ../../../processing/app/debug/Compiler.java:1273 #, java-format msgid "Bootloader file specified but missing: {0}" -msgstr "" +msgstr "Файл завантажувача зазначений але не знайден: {0}" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" @@ -384,7 +389,7 @@ msgstr "Змінились налаштування збірки, все має #: ../../../../../app/src/processing/app/Base.java:1210 msgid "Built-in Examples" -msgstr "" +msgstr "Вбудовані Приклади" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" @@ -404,7 +409,7 @@ msgstr "Запис завантажувача на плату введення/ #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." -msgstr "" +msgstr "CRC не співпадає. Файл пошкоджен." #: ../../../processing/app/Base.java:379 #, java-format @@ -459,7 +464,7 @@ msgstr "китайська (Тайвань) (Big5)" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" -msgstr "" +msgstr "Натисніть для списку URL не офіціальних плат що підтримуються" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -471,7 +476,7 @@ msgstr "Коментувати/розкоментувати" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 msgid "Compiler warnings: " -msgstr "" +msgstr "Попередження компілятора:" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." @@ -632,11 +637,11 @@ msgstr "Вирізати" #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" -msgstr "" +msgstr "Чеська (Чеська Республіка)" #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" -msgstr "" +msgstr "Датська (Данія)" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" @@ -644,7 +649,7 @@ msgstr "Зменшити відступ" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" -msgstr "" +msgstr "За умовчанням" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" @@ -669,7 +674,7 @@ msgstr "Показувати нумерацію рядків" msgid "" "Do you want to remove {0}?\n" "If you do so you won't be able to use {0} any more." -msgstr "" +msgstr "Бажаете видалити {0}?\nЯкщо так, ви не зможете більше використовувати {0}." #: Editor.java:2064 msgid "Don't Save" @@ -707,29 +712,29 @@ msgstr "Вивантаження виконано." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format msgid "Downloaded {0}kb of {1}kb." -msgstr "" +msgstr "Завантажено {0}кб з {1}кб." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 msgid "Downloading boards definitions." -msgstr "" +msgstr "Завантаження визначень плат" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 msgid "Downloading libraries index..." -msgstr "" +msgstr "Завантаження індексів бібліотек..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format msgid "Downloading library: {0}" -msgstr "" +msgstr "Завантаження бібліотеки: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 msgid "Downloading platforms index..." -msgstr "" +msgstr "Завантаження індексів платформ..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format msgid "Downloading tools ({0}/{1})." -msgstr "" +msgstr "Завантаження інструментів ({0}/{1})." #: Preferences.java:91 msgid "Dutch" @@ -741,7 +746,7 @@ msgstr "нідерландська (Нідерланди)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" -msgstr "" +msgstr "Допомога від Edison " #: Editor.java:1130 msgid "Edit" @@ -757,7 +762,7 @@ msgstr "Мова інтерфейсу:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" -msgstr "" +msgstr "Включити Згортання Коду" #: Preferences.java:92 msgid "English" @@ -770,11 +775,11 @@ msgstr "англійська (Велика Британія)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 msgid "Enter a comma separated list of urls" -msgstr "" +msgstr "Введіть розділений комами список url" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 msgid "Enter additional URLs, one for each row" -msgstr "" +msgstr "Введіть додаткові URL, по одному у кожний рядок" #: Editor.java:1062 msgid "Environment" @@ -797,7 +802,7 @@ msgstr "Помилка при компіляції." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format msgid "Error downloading {0}" -msgstr "" +msgstr "Помилка завантаження {0}" #: Base.java:1674 msgid "Error getting the Arduino data folder." @@ -825,7 +830,7 @@ msgstr "Помилка при відкритті послідовного пор msgid "" "Error opening serial port ''{0}''. Try consulting the documentation at " "http://playground.arduino.cc/Linux/All#Permission" -msgstr "" +msgstr "Помилка відкриття серійного порту '{0}''. Спробуйте знайти відповідь у документаціі http://playground.arduino.cc/Linux/All#Permission" #: Preferences.java:277 msgid "Error reading preferences" @@ -842,7 +847,7 @@ msgstr "Помилка читання файлу налаштувань. Буд #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 msgid "Error running post install script" -msgstr "" +msgstr "Помилка запуску post install script" #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " @@ -874,6 +879,11 @@ msgstr "Помилка завантаження коду {0}" msgid "Error while printing." msgstr "Помилка під час друку" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "Помилка вивантаження" @@ -907,19 +917,19 @@ msgstr "Приклади" #: ../../../../../app/src/processing/app/Base.java:1244 msgid "Examples from Custom Libraries" -msgstr "" +msgstr "Приклади з Custom Бібліотек" #: ../../../../../app/src/processing/app/Base.java:1222 msgid "Examples from Libraries" -msgstr "" +msgstr "Прикладі з Бібліотек" #: ../../../../../app/src/processing/app/Editor.java:753 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "Експорт скасовано, спочатку збережіть зміни." #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" -msgstr "" +msgstr "Експорт зкомпільованого Бінарнику" #: ../../../processing/app/Base.java:416 #, java-format @@ -936,7 +946,7 @@ msgstr "філіппінська" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." -msgstr "" +msgstr "Фільтрування вашого пошуку..." #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -975,7 +985,7 @@ msgstr "Виправити кодування і перезавантажити" msgid "" "For information on installing libraries, see: " "http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Для інформаціі по встановленню бібліотек, дивись: http://www.arduino.cc/en/Guide/Libraries\n" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format @@ -996,11 +1006,11 @@ msgstr "галісійська" #: ../../../../../app/src/processing/app/Preferences.java:176 msgid "Galician (Spain)" -msgstr "" +msgstr "Галійська (Іспанія)" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" -msgstr "" +msgstr "Допомога від Galileo" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" @@ -1028,11 +1038,11 @@ msgstr "Глобальні змінні використовують {0} бай #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "Перейти на рядок" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "Перейти на рядок..." #: Preferences.java:98 msgid "Greek" @@ -1052,7 +1062,7 @@ msgstr "хінді" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Ім'я хосту:" #: Sketch.java:295 msgid "" @@ -1093,12 +1103,12 @@ msgstr "В Arduino 1.0 розширення за умовчанням було #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" -msgstr "" +msgstr "Додати Бібліотеку" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "Невірна папка розташування IDE" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -1110,7 +1120,7 @@ msgstr "індонезійська" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." -msgstr "" +msgstr "Ініціалізуємо пакеті..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -1119,34 +1129,34 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Встановити" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Встановлення віконано!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Встановлено" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." -msgstr "" +msgstr "Встановлення плат..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "Встановлення бібліотеки: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "Встановлення інструментів ({0}/{1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Встановлення..." #: ../../../processing/app/Base.java:1204 #, java-format @@ -1176,24 +1186,24 @@ msgstr "латвійська" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Менеджер Бібліотек" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" +msgstr "Бібліотека додана до ваших бібліотек. Перевірте меню \"Додати Бібліотеку\"" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 msgid "Library can't use both 'src' and 'utility' folders." -msgstr "" +msgstr "Бібліотека не може застосовувати обідві папки 'src' та 'utility'" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" -msgstr "" +msgstr "Бібліотека вже встановлена: {0} версія {1}" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "Номер рядка:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1201,7 +1211,7 @@ msgstr "литовська" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." -msgstr "" +msgstr "Завантаження конфігураціі..." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format @@ -2303,11 +2313,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Ви не можете перейменувати скетч в \"{0}\",\nтому що скетч вже має .cpp файл з таким іменем." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Ви не можете зберегти скетч як \"{0}\",\nтому що скетч вже має .cpp файл з таким іменем." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" @@ -2437,7 +2447,7 @@ msgstr "увімкнено в Файл > Налаштування" #: ../../../../../app/src/processing/app/Editor.java:1352 msgid "http://www.arduino.cc/" -msgstr "" +msgstr "http://www.arduino.cc/" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" @@ -2478,23 +2488,23 @@ msgstr "вивантаженні" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format msgid "version {0}" -msgstr "" +msgstr "версія {0}" #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format msgid "{0} - {1} | Arduino {2}" -msgstr "" +msgstr "{0} - {1} | Arduino {2}" #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format msgid "{0} file signature verification failed" -msgstr "" +msgstr "{0} перевірка підпису файла не вдалася" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format msgid "{0} file signature verification failed. File ignored." -msgstr "" +msgstr "{0} перевірка підпису файла не вдалася. Ігноруємо файл." #: Editor.java:380 #, java-format @@ -2504,17 +2514,17 @@ msgstr "До скетчу було додано файлів: {0}." #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format msgid "{0} libraries" -msgstr "" +msgstr "{0} бібліотеки" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "{0} має бути папка" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format msgid "{0} pattern is missing" -msgstr "" +msgstr "{0} шаблон не знайдено" #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_uk.properties b/arduino-core/src/processing/app/i18n/Resources_uk.properties index 6fea25c69..75d516535 100644 --- a/arduino-core/src/processing/app/i18n/Resources_uk.properties +++ b/arduino-core/src/processing/app/i18n/Resources_uk.properties @@ -8,37 +8,39 @@ # Translators: # Translators: # Translators: +# Translators: # netavek , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Ukrainian (http\://www.transifex.com/mbanzi/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 +# \u042f\u043a\u043e\u0432 \u041c\u0430\u0441\u043b\u043e\u0432 , 2015 +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Ukrainian (http\://www.transifex.com/mbanzi/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) #: ../../../processing/app/debug/Compiler.java:529 #, java-format -!\ Not\ used\:\ {0}= +\ Not\ used\:\ {0}=\u041d\u0435 \u0437\u0430\u0441\u0442\u043e\u0441\u043e\u0432\u0443\u0454\u0442\u044c\u0441\u044f\: {0} #: ../../../processing/app/debug/Compiler.java:525 #, java-format -!\ Used\:\ {0}= +\ Used\:\ {0}=\u0412\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043e\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00abKeyboard\u00bb \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454\u0442\u044c\u0441\u044f \u043b\u0438\u0448\u0435 \u0432 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00abMouse\u00bb \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454\u0442\u044c\u0441\u044f \u043b\u0438\u0448\u0435 \u0432 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=\u043f\u0430\u043f\u043a\u0430 'arch' \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454\u0442\u044c\u0441\u044f\! \u041f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u044c\u0442\u0435 http\://goo.gl/gfFJzU \u0434\u043b\u044f \u0431\u0456\u043b\u044c\u0448\u043e\u0457 \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u0456 #: 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) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 -!(legacy)= +(legacy)=(\u0437\u0430\u0441\u0442\u0430\u0440\u0456\u043b\u0435) #: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= +--curdir\ no\ longer\ supported=--curdir \u0431\u0456\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454\u0442\u044c\u0441\u044f #: ../../../processing/app/Base.java:468 --verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload \u0442\u0430 --verbose-build \u043c\u043e\u0436\u0443\u0442\u044c \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438\u0441\u044c \u043b\u0438\u0448\u0435 \u0437 with --verify \u0430\u0431\u043e --upload @@ -48,15 +50,15 @@ #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
\u0404 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0434\u043b\u044f \u0434\u0435\u044f\u043a\u0438\u0445 \u0432\u0430\u0448\u0438\u0445 {0}\u043f\u043b\u0430\u0442{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
\u0404 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0434\u043b\u044f \u0434\u0435\u044f\u043a\u0438\u0445 \u0432\u0430\u0448\u0438\u0445 {0}\u043f\u043b\u0430\u0442{1} \u0442\u0430 {2}\u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=\
\u0404 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0434\u043b\u044f \u0434\u0435\u044f\u043a\u0438\u0445 \u0432\u0430\u0448\u0438\u0445 {0}\u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a{1} #: 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.= \u0412\u0438 \u0445\u043e\u0447\u0435\u0442\u0435 \u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0437\u043c\u0456\u043d\u0438 \u0432 \u0446\u044c\u043e\u043c\u0443 \u0441\u043a\u0435\u0442\u0447\u0456
\u043f\u0435\u0440\u0435\u0434 \u0437\u0430\u043a\u0440\u0438\u0442\u0442\u044f\u043c?

\u042f\u043a\u0449\u043e \u0432\u0438 \u043d\u0435 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u0442\u0435, \u0432\u0441\u0456 \u0437\u043c\u0456\u043d\u0438 \u0431\u0443\u0434\u0443\u0442\u044c \u0432\u0442\u0440\u0430\u0447\u0435\u043d\u0456. @@ -78,42 +80,42 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!A\ newer\ {0}\ package\ is\ available= +A\ newer\ {0}\ package\ is\ available=\u0411\u0456\u043b\u044c\u0448 \u043d\u043e\u0432\u0438\u0439 {0} \u043f\u0430\u043a\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0438\u0439 #: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= +A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=\u041f\u0456\u0434\u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u0437 \u0432\u0430\u0448\u0438\u043c\u0438 \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438 \u043d\u0435 \u0454 \u0434\u0456\u0439\u0441\u043d\u043e\u044e \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u043e\u044e #: Editor.java:1116 About\ Arduino=\u041f\u0440\u043e Arduino #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=\u0414\u043e\u0434\u0430\u0442\u0438 .ZIP \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0443 #: Editor.java:650 Add\ File...=\u0414\u043e\u0434\u0430\u0442\u0438 \u0444\u0430\u0439\u043b\u2026 #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= +Additional\ Boards\ Manager\ URLs=URL \u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u043e\u0432 \u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0438\u0445 \u041f\u043b\u0430\u0442 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = +Additional\ Boards\ Manager\ URLs\:\ =URL \u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440\u043e\u0432 \u0414\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0438\u0445 \u041f\u043b\u0430\u0442\: #: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= +Afrikaans=\u0410\u0444\u0440\u0456\u043a\u0430\u0430\u043d\u0441 #: ../../../processing/app/Preferences.java:96 -Albanian=\u0430\u043b\u0431\u0430\u043d\u0441\u044c\u043a\u0430 +Albanian=\u0410\u043b\u0431\u0430\u043d\u0441\u044c\u043a\u0430 #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= +All=\u0412\u0441\u0456 #: 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 \u00ab\u0412\u0456\u0434\u043a\u0440\u0438\u0442\u0438\u00bb, \u0449\u043e\u0431\n\u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 \u0437\u043d\u043e\u0432\u0443.\n #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= +An\ error\ occurred\ while\ updating\ libraries\ index\!=\u0421\u0442\u0430\u043b\u0430\u0441\u044f \u043f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0440\u0438 \u0432\u0456\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u0456 \u0438\u043d\u0434\u0435\u043a\u0441\u0443 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\! #: ../../../processing/app/BaseNoGui.java:528 An\ error\ occurred\ while\ uploading\ the\ sketch=\u0421\u0442\u0430\u043b\u0430\u0441\u044c \u043f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0440\u0438 \u0432\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u0456 \u0441\u043a\u0435\u0442\u0447\u0430 @@ -187,7 +189,7 @@ Argument\ required\ for\ --preferences-file=\u041d\u0435\u043e\u0431\u0445\u0456 #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format -!Argument\ required\ for\ {0}= +Argument\ required\ for\ {0}=\u041d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u0438\u0439 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f {0} #: ../../../processing/app/Preferences.java:137 Armenian=\u0432\u0456\u0440\u043c\u0435\u043d\u0441\u044c\u043a\u0430 @@ -205,10 +207,10 @@ Auto\ Format=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0443\ Auto\ Format\ finished.=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0437\u043d\u0430\u0439\u0442\u0438 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u043f\u0440\u043e\u043a\u0441\u0438 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=URL \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0457 \u043a\u043e\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0456 \u043f\u0440\u043e\u043a\u0441\u0456\: #: SerialMonitor.java:110 Autoscroll=\u0410\u0432\u0442\u043e\u043f\u0440\u043e\u043a\u0440\u0443\u0447\u0443\u0432\u0430\u043d\u043d\u044f @@ -232,7 +234,7 @@ Board=\u041f\u043b\u0430\u0442\u0430 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format -!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=\u041f\u043b\u0430\u0442\u0430 {0} (\u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430 {1}, \u043f\u0430\u043a\u0435\u0442 {2}) \u043d\u0435\u0432\u0456\u0434\u043e\u043c\u0430 #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -242,17 +244,17 @@ Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-se Board\:\ =\u041f\u043b\u0430\u0442\u0430\: #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= +Boards\ Manager=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u043f\u043b\u0430\u0442 #: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= +Boards\ Manager...=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u043f\u043b\u0430\u0442... #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= +Boards\ included\ in\ this\ package\:=\u041f\u043b\u0430\u0442\u0430 \u0432 \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u0456 \u0446\u044c\u043e\u0433\u043e \u043f\u0430\u043a\u0435\u0442\u0443\: #: ../../../processing/app/debug/Compiler.java:1273 #, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= +Bootloader\ file\ specified\ but\ missing\:\ {0}=\u0424\u0430\u0439\u043b \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0443\u0432\u0430\u0447\u0430 \u0437\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0439 \u0430\u043b\u0435 \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\: {0} #: ../../../processing/app/Preferences.java:140 Bosnian=\u0431\u043e\u0441\u043d\u0456\u0439\u0441\u044c\u043a\u0430 @@ -267,7 +269,7 @@ Browse=\u041e\u0431\u0440\u0430\u0442\u0438 Build\ options\ changed,\ rebuilding\ all=\u0417\u043c\u0456\u043d\u0438\u043b\u0438\u0441\u044c \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0431\u0456\u0440\u043a\u0438, \u0432\u0441\u0435 \u043c\u0430\u0454 \u0431\u0443\u0442\u0438 \u043f\u0435\u0440\u0435\u0437\u0456\u0431\u0440\u0430\u043d\u043e #: ../../../../../app/src/processing/app/Base.java:1210 -!Built-in\ Examples= +Built-in\ Examples=\u0412\u0431\u0443\u0434\u043e\u0432\u0430\u043d\u0456 \u041f\u0440\u0438\u043a\u043b\u0430\u0434\u0438 #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0431\u043e\u043b\u0433\u0430\u0440\u0441\u044c\u043a\u0430 @@ -282,7 +284,7 @@ Burn\ Bootloader=\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u0437\u0430\u 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\u0435\u0434\u0435\u043d\u043d\u044f (\u0445\u0432\u0438\u043b\u0438\u043d\u043e\u0447\u043a\u0443)\u2026 #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= +CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC \u043d\u0435 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0430\u0454. \u0424\u0430\u0439\u043b \u043f\u043e\u0448\u043a\u043e\u0434\u0436\u0435\u043d. #: ../../../processing/app/Base.java:379 #, java-format @@ -324,7 +326,7 @@ Chinese\ (Taiwan)=\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430 (\u0422 Chinese\ (Taiwan)\ (Big5)=\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430 (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) (Big5) #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= +Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\u041d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \u0434\u043b\u044f \u0441\u043f\u0438\u0441\u043a\u0443 URL \u043d\u0435 \u043e\u0444\u0456\u0446\u0456\u0430\u043b\u044c\u043d\u0438\u0445 \u043f\u043b\u0430\u0442 \u0449\u043e \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u044e\u0442\u044c\u0441\u044f #: Editor.java:521 Editor.java:2024 Close=\u0417\u0430\u043a\u0440\u0438\u0442\u0438 @@ -333,7 +335,7 @@ Close=\u0417\u0430\u043a\u0440\u0438\u0442\u0438 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 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = +Compiler\ warnings\:\ =\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u0436\u0435\u043d\u043d\u044f \u043a\u043e\u043c\u043f\u0456\u043b\u044f\u0442\u043e\u0440\u0430\: #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=\u041a\u043e\u043c\u043f\u0456\u043b\u044e\u0432\u0430\u043d\u043d\u044f... @@ -447,16 +449,16 @@ Croatian=\u0445\u043e\u0440\u0432\u0430\u0442\u0441\u044c\u043a\u0430 Cut=\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 #: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= +Czech\ (Czech\ Republic)=\u0427\u0435\u0441\u044c\u043a\u0430 (\u0427\u0435\u0441\u044c\u043a\u0430 \u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0456\u043a\u0430) #: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= +Danish\ (Denmark)=\u0414\u0430\u0442\u0441\u044c\u043a\u0430 (\u0414\u0430\u043d\u0456\u044f) #: Editor.java:1224 Editor.java:2765 Decrease\ Indent=\u0417\u043c\u0435\u043d\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= +Default=\u0417\u0430 \u0443\u043c\u043e\u0432\u0447\u0430\u043d\u043d\u044f\u043c #: EditorHeader.java:314 Sketch.java:591 Delete=\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u0438 @@ -472,7 +474,7 @@ Display\ line\ numbers=\u041f\u043e\u043a\u0430\u0437\u0443\u0432\u0430\u0442\u0 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= +Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=\u0411\u0430\u0436\u0430\u0435\u0442\u0435 \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 {0}?\n\u042f\u043a\u0449\u043e \u0442\u0430\u043a, \u0432\u0438 \u043d\u0435 \u0437\u043c\u043e\u0436\u0435\u0442\u0435 \u0431\u0456\u043b\u044c\u0448\u0435 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u0432\u0430\u0442\u0438 {0}. #: Editor.java:2064 Don't\ Save=\u041d\u0435 \u0437\u0431\u0435\u0440\u0456\u0433\u0430\u0442\u0438 @@ -501,24 +503,24 @@ Done\ uploading.=\u0412\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u0 #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= +Downloaded\ {0}kb\ of\ {1}kb.=\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043e {0}\u043a\u0431 \u0437 {1}\u043a\u0431. #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= +Downloading\ boards\ definitions.=\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u044c \u043f\u043b\u0430\u0442 #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= +Downloading\ libraries\ index...=\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0456\u043d\u0434\u0435\u043a\u0441\u0456\u0432 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format -!Downloading\ library\:\ {0}= +Downloading\ library\:\ {0}=\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= +Downloading\ platforms\ index...=\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0456\u043d\u0434\u0435\u043a\u0441\u0456\u0432 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format -!Downloading\ tools\ ({0}/{1}).= +Downloading\ tools\ ({0}/{1}).=\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432 ({0}/{1}). #: Preferences.java:91 Dutch=\u0433\u043e\u043b\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430 @@ -527,7 +529,7 @@ Dutch=\u0433\u043e\u043b\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430 Dutch\ (Netherlands)=\u043d\u0456\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0441\u044c\u043a\u0430 (\u041d\u0456\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0438) #: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= +Edison\ Help=\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430 \u0432\u0456\u0434 Edison #: Editor.java:1130 Edit=\u041f\u0440\u0430\u0432\u043a\u0430 @@ -539,7 +541,7 @@ Editor\ font\ size\:\ =\u0420\u043e\u0437\u043c\u0456\u0440 \u0448\u0440\u0438\u Editor\ language\:\ =\u041c\u043e\u0432\u0430 \u0456\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= +Enable\ Code\ Folding=\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0438 \u0417\u0433\u043e\u0440\u0442\u0430\u043d\u043d\u044f \u041a\u043e\u0434\u0443 #: Preferences.java:92 English=\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u044c\u043a\u0430 @@ -549,10 +551,10 @@ English\ (United\ Kingdom)=\u0430\u043d\u0433\u043b\u0456\u0439\u0441\u044c\u043 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= +Enter\ a\ comma\ separated\ list\ of\ urls=\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0440\u043e\u0437\u0434\u0456\u043b\u0435\u043d\u0438\u0439 \u043a\u043e\u043c\u0430\u043c\u0438 \u0441\u043f\u0438\u0441\u043e\u043a url #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= +Enter\ additional\ URLs,\ one\ for\ each\ row=\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0434\u043e\u0434\u0430\u0442\u043a\u043e\u0432\u0456 URL, \u043f\u043e \u043e\u0434\u043d\u043e\u043c\u0443 \u0443 \u043a\u043e\u0436\u043d\u0438\u0439 \u0440\u044f\u0434\u043e\u043a #: Editor.java:1062 Environment=\u0421\u0435\u0440\u0435\u0434\u043e\u0432\u0438\u0449\u0435 @@ -570,7 +572,7 @@ Error\ compiling.=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u043f\u0440\u0438 #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format -!Error\ downloading\ {0}= +Error\ downloading\ {0}=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f {0} #: Base.java:1674 Error\ getting\ the\ Arduino\ data\ folder.=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u043f\u0440\u0438 \u0437\u0432\u0435\u0440\u043d\u0435\u043d\u043d\u0456 \u0434\u043e \u0442\u0435\u043a\u0438 \u0437 \u0434\u0430\u043d\u0438\u043c\u0438 Arduino. @@ -591,7 +593,7 @@ Error\ opening\ serial\ port\ ''{0}''.=\u041f\u043e\u043c\u0438\u043b\u043a\u043 #: ../../../processing/app/Serial.java:119 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= +Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0442\u044f \u0441\u0435\u0440\u0456\u0439\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0443 '{0}''. \u0421\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0437\u043d\u0430\u0439\u0442\u0438 \u0432\u0456\u0434\u043f\u043e\u0432\u0456\u0434\u044c \u0443 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u0456 http\://playground.arduino.cc/Linux/All\#Permission #: Preferences.java:277 Error\ reading\ preferences=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u0447\u0438\u0442\u0430\u043d\u043d\u044f \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u044c @@ -603,7 +605,7 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= +Error\ running\ post\ install\ script=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u0437\u0430\u043f\u0443\u0441\u043a\u0443 post install script #: ../../../cc/arduino/packages/DiscoveryManager.java:25 Error\ starting\ discovery\ method\:\ =\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u0437\u0430\u043f\u0443\u0441\u043a\u0443 \u043c\u0435\u0442\u043e\u0434\u0443 \u0432\u0438\u044f\u0432\u043b\u0435\u043d\u043d\u044f\: @@ -628,6 +630,10 @@ 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 +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=\u041f\u043e\u043c\u0438\u043b\u043a\u0430 \u0432\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f @@ -653,16 +659,16 @@ Estonian\ (Estonia)=\u0435\u0441\u0442\u043e\u043d\u0441\u044c\u043a\u0430 (\u04 Examples=\u041f\u0440\u0438\u043a\u043b\u0430\u0434\u0438 #: ../../../../../app/src/processing/app/Base.java:1244 -!Examples\ from\ Custom\ Libraries= +Examples\ from\ Custom\ Libraries=\u041f\u0440\u0438\u043a\u043b\u0430\u0434\u0438 \u0437 Custom \u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a #: ../../../../../app/src/processing/app/Base.java:1222 -!Examples\ from\ Libraries= +Examples\ from\ Libraries=\u041f\u0440\u0438\u043a\u043b\u0430\u0434\u0456 \u0437 \u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a #: ../../../../../app/src/processing/app/Editor.java:753 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0415\u043a\u0441\u043f\u043e\u0440\u0442 \u0441\u043a\u0430\u0441\u043e\u0432\u0430\u043d\u043e, \u0441\u043f\u043e\u0447\u0430\u0442\u043a\u0443 \u0437\u0431\u0435\u0440\u0435\u0436\u0456\u0442\u044c \u0437\u043c\u0456\u043d\u0438. #: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= +Export\ compiled\ Binary=\u0415\u043a\u0441\u043f\u043e\u0440\u0442 \u0437\u043a\u043e\u043c\u043f\u0456\u043b\u044c\u043e\u0432\u0430\u043d\u043e\u0433\u043e \u0411\u0456\u043d\u0430\u0440\u043d\u0438\u043a\u0443 #: ../../../processing/app/Base.java:416 #, java-format @@ -675,7 +681,7 @@ File=\u0424\u0430\u0439\u043b Filipino=\u0444\u0456\u043b\u0456\u043f\u043f\u0456\u043d\u0441\u044c\u043a\u0430 #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= +Filter\ your\ search...=\u0424\u0456\u043b\u044c\u0442\u0440\u0443\u0432\u0430\u043d\u043d\u044f \u0432\u0430\u0448\u043e\u0433\u043e \u043f\u043e\u0448\u0443\u043a\u0443... #: FindReplace.java:124 FindReplace.java:127 Find=\u0417\u043d\u0430\u0439\u0442\u0438 @@ -703,7 +709,7 @@ Finnish=\u0444\u0456\u043d\u0441\u044c\u043a\u0430 Fix\ Encoding\ &\ Reload=\u0412\u0438\u043f\u0440\u0430\u0432\u0438\u0442\u0438 \u043a\u043e\u0434\u0443\u0432\u0430\u043d\u043d\u044f \u0456 \u043f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0438\u0442\u0438 #: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=\u0414\u043b\u044f \u0456\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0456\u0456 \u043f\u043e \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044e \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a, \u0434\u0438\u0432\u0438\u0441\u044c\: http\://www.arduino.cc/en/Guide/Libraries\n #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format @@ -719,10 +725,10 @@ Frequently\ Asked\ Questions=\u0427\u0430\u0441\u0442\u0456 \u043f\u0438\u0442\u Galician=\u0433\u0430\u043b\u0456\u0441\u0456\u0439\u0441\u044c\u043a\u0430 #: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= +Galician\ (Spain)=\u0413\u0430\u043b\u0456\u0439\u0441\u044c\u043a\u0430 (\u0406\u0441\u043f\u0430\u043d\u0456\u044f) #: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= +Galileo\ Help=\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430 \u0432\u0456\u0434 Galileo #: ../../../processing/app/Preferences.java:94 Georgian=\u0433\u0440\u0443\u0437\u0438\u043d\u0441\u044c\u043a\u0430 @@ -742,10 +748,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0413\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u0456 \u0437\u043c\u0456\u043d\u043d\u0456 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u043e\u0432\u0443\u044e\u0442\u044c {0} \u0431\u0430\u0439\u0442\u0456\u0432 \u0434\u0438\u043d\u0430\u043c\u0456\u0447\u043d\u043e\u0457 \u043f\u0430\u043c\u2019\u044f\u0442\u0456. #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 \u0440\u044f\u0434\u043e\u043a #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 \u0440\u044f\u0434\u043e\u043a... #: Preferences.java:98 Greek=\u0433\u0440\u0435\u0446\u044c\u043a\u0430 @@ -760,7 +766,7 @@ Help=\u0414\u043e\u043f\u043e\u043c\u043e\u0433\u0430 Hindi=\u0445\u0456\u043d\u0434\u0456 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=\u0406\u043c'\u044f \u0445\u043e\u0441\u0442\u0443\: #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u042f\u043a \u0449\u043e\u0434\u043e \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u044f \u0441\u043a\u0435\u0442\u0447\u0443 \u043f\u0435\u0440\u0435\u0434\n\u0441\u043f\u0440\u043e\u0431\u043e\u044e \u0439\u043e\u0433\u043e \u043f\u0435\u0440\u0435\u0439\u043c\u0435\u043d\u0443\u0432\u0430\u0442\u0438? @@ -784,11 +790,11 @@ Ignoring\ sketch\ with\ bad\ name=\u0406\u0433\u043d\u043e\u0440\u0443\u044e \u0 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?=\u0412 Arduino 1.0 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u0437\u0430 \u0443\u043c\u043e\u0432\u0447\u0430\u043d\u043d\u044f\u043c \u0431\u0443\u043b\u043e \u0437\u043c\u0456\u043d\u0435\u043d\u043e\n\u0437 .pde \u043d\u0430 .ino. \u041d\u043e\u0432\u0456 \u0441\u043a\u0435\u0442\u0447\u0456 (\u0432 \u0442\u043e\u043c\u0443 \u0447\u0438\u0441\u043b\u0456 \u0441\u0442\u0432\u043e\u0440\u0435\u043d\u0456\n\u0437\u0430 \u0434\u043e\u043f\u043e\u043c\u043e\u0433\u043e\u044e \u00ab\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u044f\u043a\u00bb) \u043c\u0430\u044e\u0442\u044c \u043d\u043e\u0432\u0435 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f.\n\u0420\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f \u0441\u0442\u0430\u0440\u0438\u0445 \u0441\u043a\u0435\u0442\u0447\u0456\u0432 \u043e\u043d\u043e\u0432\u0438\u0442\u044c\u0441\u044f \u043f\u0440\u0438 \u0437\u0431\u0435\u0440\u0435\u0436\u0435\u043d\u043d\u0456,\n\u0430\u043b\u0435 \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0441\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438 \u0446\u0435 \u0443 \u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f\u0445.\n\n\u0417\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 \u0442\u0430 \u043e\u043d\u043e\u0432\u0438\u0442\u0438 \u0440\u043e\u0437\u0448\u0438\u0440\u0435\u043d\u043d\u044f? #: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= +Include\ Library=\u0414\u043e\u0434\u0430\u0442\u0438 \u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0443 #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=\u041d\u0435\u0432\u0456\u0440\u043d\u0430 \u043f\u0430\u043f\u043a\u0430 \u0440\u043e\u0437\u0442\u0430\u0448\u0443\u0432\u0430\u043d\u043d\u044f IDE #: Editor.java:1216 Editor.java:2757 Increase\ Indent=\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u0456\u0434\u0441\u0442\u0443\u043f @@ -797,7 +803,7 @@ Increase\ Indent=\u0417\u0431\u0456\u043b\u044c\u0448\u0438\u0442\u0438 \u0432\u Indonesian=\u0456\u043d\u0434\u043e\u043d\u0435\u0437\u0456\u0439\u0441\u044c\u043a\u0430 #: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= +Initializing\ packages...=\u0406\u043d\u0456\u0446\u0456\u0430\u043b\u0456\u0437\u0443\u0454\u043c\u043e \u043f\u0430\u043a\u0435\u0442\u0456... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -805,28 +811,28 @@ Indonesian=\u0456\u043d\u0434\u043e\u043d\u0435\u0437\u0456\u0439\u0441\u044c\u0 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0432\u0456\u043a\u043e\u043d\u0430\u043d\u043e\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= +Installing\ boards...=\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u043f\u043b\u0430\u0442... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f \u0456\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0456\u0432 ({0}/{1})... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=\u0412\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f... #: ../../../processing/app/Base.java:1204 #, java-format @@ -849,26 +855,26 @@ Korean=\u043a\u043e\u0440\u0435\u0439\u0441\u044c\u043a\u0430 Latvian=\u043b\u0430\u0442\u0432\u0456\u0439\u0441\u044c\u043a\u0430 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a #: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430 \u0434\u043e\u0434\u0430\u043d\u0430 \u0434\u043e \u0432\u0430\u0448\u0438\u0445 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a. \u041f\u0435\u0440\u0435\u0432\u0456\u0440\u0442\u0435 \u043c\u0435\u043d\u044e "\u0414\u043e\u0434\u0430\u0442\u0438 \u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0443" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 -!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0437\u0430\u0441\u0442\u043e\u0441\u043e\u0432\u0443\u0432\u0430\u0442\u0438 \u043e\u0431\u0456\u0434\u0432\u0456 \u043f\u0430\u043f\u043a\u0438 'src' \u0442\u0430 'utility' #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= +Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430 \u0432\u0436\u0435 \u0432\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430\: {0} \u0432\u0435\u0440\u0441\u0456\u044f {1} #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=\u041d\u043e\u043c\u0435\u0440 \u0440\u044f\u0434\u043a\u0430\: #: Preferences.java:106 Lithuaninan=\u043b\u0438\u0442\u043e\u0432\u0441\u044c\u043a\u0430 #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u043a\u043e\u043d\u0444\u0456\u0433\u0443\u0440\u0430\u0446\u0456\u0456... #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format @@ -1654,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0412\ #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0435\u0440\u0435\u0439\u043c\u0435\u043d\u0443\u0432\u0430\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 \u0432 "{0}",\n\u0442\u043e\u043c\u0443 \u0449\u043e \u0441\u043a\u0435\u0442\u0447 \u0432\u0436\u0435 \u043c\u0430\u0454 .cpp \u0444\u0430\u0439\u043b \u0437 \u0442\u0430\u043a\u0438\u043c \u0456\u043c\u0435\u043d\u0435\u043c. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 \u044f\u043a "{0}",\n\u0442\u043e\u043c\u0443 \u0449\u043e \u0441\u043a\u0435\u0442\u0447 \u0432\u0436\u0435 \u043c\u0430\u0454 .cpp \u0444\u0430\u0439\u043b \u0437 \u0442\u0430\u043a\u0438\u043c \u0456\u043c\u0435\u043d\u0435\u043c. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0412\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0431\u0435\u0440\u0435\u0433\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 \u0432 \u0442\u0435\u043a\u0443\n\u0432\u0441\u0435\u0440\u0435\u0434\u0438\u043d\u0456 \u0442\u0435\u043a\u0438 \u0441\u043a\u0435\u0442\u0447\u0443. \u0426\u0435 \u0431\u0443\u0434\u0435 \u0442\u0440\u0438\u0432\u0430\u0442\u0438 \u0432\u0456\u0447\u043d\u043e. @@ -1726,7 +1732,7 @@ createNewFile()\ returned\ false=createNewFile () \u043f\u043e\u0432\u0435\u0440 enabled\ in\ File\ >\ Preferences.=\u0443\u0432\u0456\u043c\u043a\u043d\u0435\u043d\u043e \u0432 \u0424\u0430\u0439\u043b > \u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f #: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= +http\://www.arduino.cc/=http\://www.arduino.cc/ #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1757,20 +1763,20 @@ upload=\u0432\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u0456 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format -!version\ {0}= +version\ {0}=\u0432\u0435\u0440\u0441\u0456\u044f {0} #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= +{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | Arduino {2} #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format -!{0}\ file\ signature\ verification\ failed= +{0}\ file\ signature\ verification\ failed={0} \u043f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043f\u0456\u0434\u043f\u0438\u0441\u0443 \u0444\u0430\u0439\u043b\u0430 \u043d\u0435 \u0432\u0434\u0430\u043b\u0430\u0441\u044f #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= +{0}\ file\ signature\ verification\ failed.\ File\ ignored.={0} \u043f\u0435\u0440\u0435\u0432\u0456\u0440\u043a\u0430 \u043f\u0456\u0434\u043f\u0438\u0441\u0443 \u0444\u0430\u0439\u043b\u0430 \u043d\u0435 \u0432\u0434\u0430\u043b\u0430\u0441\u044f. \u0406\u0433\u043d\u043e\u0440\u0443\u0454\u043c\u043e \u0444\u0430\u0439\u043b. #: Editor.java:380 #, java-format @@ -1778,15 +1784,15 @@ upload=\u0432\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u0456 #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format -!{0}\ libraries= +{0}\ libraries={0} \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0438 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder={0} \u043c\u0430\u0454 \u0431\u0443\u0442\u0438 \u043f\u0430\u043f\u043a\u0430 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format -!{0}\ pattern\ is\ missing= +{0}\ pattern\ is\ missing={0} \u0448\u0430\u0431\u043b\u043e\u043d \u043d\u0435 \u0437\u043d\u0430\u0439\u0434\u0435\u043d\u043e #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_vi.po b/arduino-core/src/processing/app/i18n/Resources_vi.po index 9a531236b..37ab5ceff 100644 --- a/arduino-core/src/processing/app/i18n/Resources_vi.po +++ b/arduino-core/src/processing/app/i18n/Resources_vi.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anh Phan , 2013 # Anh Phan , 2013 # Anh Phan , 2013 @@ -16,7 +17,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Vietnamese (http://www.transifex.com/mbanzi/arduino-ide-15/language/vi/)\n" "MIME-Version: 1.0\n" @@ -39,13 +40,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Bàn phím' chỉ được hỗ trợ trong phiên bản Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Chuột' chỉ được hỗ trợ trong phiên bản Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -876,6 +880,11 @@ msgstr "Lỗi khi tải mã lập trình {0}" msgid "Error while printing." msgstr "Lỗi trong khi in." +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2305,11 +2314,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "Bạn không thể đổi tên sketch thành \"{0}\"\nbởi vì sketch đã có một tập tin có định dạng .cpp có trùng tên như thế." -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "Bạn không thể lưu sketch dưới dạng \"{0}\"\nbởi vì sketch này đã có phần tạp tin .cpp với cùng tên đó." +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" diff --git a/arduino-core/src/processing/app/i18n/Resources_vi.properties b/arduino-core/src/processing/app/i18n/Resources_vi.properties index 03500cdc3..b81fea5fe 100644 --- a/arduino-core/src/processing/app/i18n/Resources_vi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_vi.properties @@ -8,10 +8,11 @@ # Translators: # Translators: # Translators: +# Translators: # Anh Phan , 2013 # Anh Phan , 2013 # Anh Phan , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Vietnamese (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Vietnamese (http\://www.transifex.com/mbanzi/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) @@ -24,11 +25,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='B\u00e0n ph\u00edm' ch\u1ec9 \u0111\u01b0\u1ee3c h\u1ed7 tr\u1ee3 trong phi\u00ean b\u1ea3n Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Chu\u1ed9t' ch\u1ec9 \u0111\u01b0\u1ee3c h\u1ed7 tr\u1ee3 trong phi\u00ean b\u1ea3n Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -630,6 +631,10 @@ 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. +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1656,8 +1661,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=B\u1ea1 #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=B\u1ea1n kh\u00f4ng th\u1ec3 \u0111\u1ed5i t\u00ean sketch th\u00e0nh "{0}"\nb\u1edfi v\u00ec sketch \u0111\u00e3 c\u00f3 m\u1ed9t t\u1eadp tin c\u00f3 \u0111\u1ecbnh d\u1ea1ng .cpp c\u00f3 tr\u00f9ng t\u00ean nh\u01b0 th\u1ebf. -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=B\u1ea1n kh\u00f4ng th\u1ec3 l\u01b0u sketch d\u01b0\u1edbi d\u1ea1ng "{0}"\nb\u1edfi v\u00ec sketch n\u00e0y \u0111\u00e3 c\u00f3 ph\u1ea7n t\u1ea1p tin .cpp v\u1edbi c\u00f9ng t\u00ean \u0111\u00f3. +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=B\u1ea1n kh\u00f4ng th\u1ec3 l\u01b0u sketch trong m\u1ed9t th\u01b0 m\u1ee5c\nb\u00ean trong n\u00f3. Th\u00f4ng b\u00e1o n\u00e0y s\u1ebd l\u1eb7p l\u1ea1i li\u00ean t\u1ee5c. 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 5e553e4b3..b9e53d987 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_CN.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_CN.po @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Wong Min , 2013 # 陈吕洲 , 2015 # dongfengweixiao , 2013-2015 @@ -23,7 +24,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Chinese (China) (http://www.transifex.com/mbanzi/arduino-ide-15/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -46,13 +47,16 @@ msgstr " 未使用:{0}" msgid " Used: {0}" msgstr " 已使用: {0}" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "只有 Arduino Leonardo 支持“键盘”选项" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "只有 Arduino Leonardo 支持“鼠标”选项" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -883,6 +887,11 @@ msgstr "载入代码{0}时发生错误" msgid "Error while printing." msgstr "在输出过程中发生错误。" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "上传出错" @@ -2312,11 +2321,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "项目不能重命名为{0}\n因为项目中已有相同命名的.cpp文件。" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "你不能将项目存为{0}\n因为项目中已有相同命名的.cpp文件。" +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 d12bb04e8..02cdfe151 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties @@ -8,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Wong Min , 2013 # \u9648\u5415\u6d32 , 2015 # dongfengweixiao , 2013-2015 @@ -18,7 +19,7 @@ # Wong Min , 2013 # Zhuo Liu , 2015 # \u9648\u5415\u6d32 , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (China) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (China) (http\://www.transifex.com/mbanzi/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\u542f Arduino\uff09 @@ -31,11 +32,11 @@ #, java-format \ Used\:\ {0}=\ \u5df2\u4f7f\u7528\uff1a {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u53ea\u6709 Arduino Leonardo \u652f\u6301\u201c\u952e\u76d8\u201d\u9009\u9879 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u53ea\u6709 Arduino Leonardo \u652f\u6301\u201c\u9f20\u6807\u201d\u9009\u9879 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -637,6 +638,10 @@ 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 +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 Error\ while\ uploading=\u4e0a\u4f20\u51fa\u9519 @@ -1663,8 +1668,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\u4e0d\u53ef\u4e #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u9879\u76ee\u4e0d\u80fd\u91cd\u547d\u540d\u4e3a{0}\n\u56e0\u4e3a\u9879\u76ee\u4e2d\u5df2\u6709\u76f8\u540c\u547d\u540d\u7684.cpp\u6587\u4ef6\u3002 -#: Sketch.java:861 -You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u4f60\u4e0d\u80fd\u5c06\u9879\u76ee\u5b58\u4e3a{0}\n\u56e0\u4e3a\u9879\u76ee\u4e2d\u5df2\u6709\u76f8\u540c\u547d\u540d\u7684.cpp\u6587\u4ef6\u3002 +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u4e0d\u53ef\u4ee5\u5c06\u9879\u76ee\u4fdd\u5b58\u5230\u81ea\u8eab\u6240\u5728\u7684\u6587\u4ef6\u5939\u3002\n\u5426\u5219\u4f1a\u8fdb\u5165\u6b7b\u5faa\u73af\u3002 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 b52d3fc77..25c7f1d85 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,6 +8,7 @@ # Translators: # Translators: # Translators: +# Translators: # Ethan , 2014 # james58899 , 2014 # Jordan_Fung , 2014 @@ -17,7 +18,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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/mbanzi/arduino-ide-15/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" @@ -40,13 +41,16 @@ msgstr "" msgid " Used: {0}" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard'只被Arduino Leonardo所支援" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" +msgstr "" -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse'只被Arduino Leonardo所支援" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" @@ -877,6 +881,11 @@ msgstr "載入程式碼{0}時發生錯誤" msgid "Error while printing." msgstr "列印時發生錯誤。" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" msgstr "" @@ -2306,11 +2315,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "你不能將草稿碼重新命名為\"{0}\"\n因為草稿碼裡已經有個擁有該名的.cpp檔。" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "你不能將草稿碼存為\"{0}\"\n因為已經有個擁有相同名稱的.cpp檔了。" +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 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 523738b21..1a13297cb 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 @@ -8,11 +8,12 @@ # Translators: # Translators: # Translators: +# Translators: # Ethan , 2014 # james58899 , 2014 # Jordan_Fung , 2014 # yehnan , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Taiwan) (Big5) (http\://www.transifex.com/mbanzi/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-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Taiwan) (Big5) (http\://www.transifex.com/mbanzi/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 @@ -25,11 +26,11 @@ #, java-format !\ Used\:\ {0}= -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard'\u53ea\u88abArduino Leonardo\u6240\u652f\u63f4 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse'\u53ea\u88abArduino Leonardo\u6240\u652f\u63f4 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 !'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= @@ -631,6 +632,10 @@ 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 +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -1657,8 +1662,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u4f60\ #: Sketch.java:421 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.=\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 +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 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 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 858148502..2ea0e15e5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.po @@ -8,18 +8,19 @@ # Translators: # Translators: # Translators: +# Translators: # Ethan , 2014 # Hank Lu , 2013 # james58899 , 2014 # james58899 , 2014 # Jordan_Fung , 2014 -# yehnan , 2013 +# yehnan , 2013,2015 msgid "" 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-09-30 07:37+0000\n" +"PO-Revision-Date: 2015-11-02 12:05+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/mbanzi/arduino-ide-15/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -35,30 +36,33 @@ msgstr "(需要重新啟動Arduino)" #: ../../../processing/app/debug/Compiler.java:529 #, java-format msgid " Not used: {0}" -msgstr "" +msgstr "未使用: {0}" #: ../../../processing/app/debug/Compiler.java:525 #, java-format msgid " Used: {0}" +msgstr "已使用: {0}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +msgid "" +"'Keyboard' not found. Does your sketch include the line '#include " +"'?" msgstr "" -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Keyboard'只被Arduino Leonardo所支援" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "'Mouse'只被Arduino Leonardo所支援" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +msgid "" +"'Mouse' not found. Does your sketch include the line '#include '?" +msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 msgid "" "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " "information" -msgstr "" +msgstr "不再支援資料夾'arch'!詳情請見http://goo.gl/gfFJzU" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" -msgstr "(只能在未執行Arduino時進行編輯)" +msgstr "(只能在Arduino未執行之時進行編輯)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 msgid "(legacy)" @@ -66,13 +70,13 @@ msgstr "" #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" -msgstr "" +msgstr "--curdir已不再支援" #: ../../../processing/app/Base.java:468 msgid "" "--verbose, --verbose-upload and --verbose-build can only be used together " "with --verify or --upload" -msgstr "" +msgstr "--verbose、--verbose-upload與--verbose-build只能與--verify或--upload一同使用" #: Sketch.java:746 msgid ".pde -> .ino" @@ -126,11 +130,11 @@ msgstr "Arduino有新版本。\n你想要拜訪Arduino下載頁面嗎?" #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "A newer {0} package is available" -msgstr "" +msgstr "套件{0}有更新的版本" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" +msgstr "你的草稿碼簿裡有個子目錄不是合法的程式庫" #: Editor.java:1116 msgid "About Arduino" @@ -138,7 +142,7 @@ msgstr "關於Arduino" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr "加入.ZIP程式庫..." #: Editor.java:650 msgid "Add File..." @@ -146,15 +150,15 @@ msgstr "加入檔案..." #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" -msgstr "" +msgstr "額外的板子管理員網址" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 msgid "Additional Boards Manager URLs: " -msgstr "" +msgstr "額外的板子管理員網址:" #: ../../../../../app/src/processing/app/Preferences.java:161 msgid "Afrikaans" -msgstr "" +msgstr "南非公用荷蘭語" #: ../../../processing/app/Preferences.java:96 msgid "Albanian" @@ -164,32 +168,32 @@ msgstr "阿爾巴尼亞語" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 msgid "All" -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 "試著修正檔案編碼時發生錯誤。\n請不要試著儲存此草稿碼,因為可能會蓋掉\n舊版本,請以「開啟」重新開啟草稿碼然後再試一次\n" +msgstr "試著修正檔案編碼時發生錯誤。\n請不要視圖儲存此草稿碼,因為可能會蓋掉\n舊版本,請以「開啟」重新開啟草稿碼然後再試一次\n" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 msgid "An error occurred while updating libraries index!" -msgstr "" +msgstr "更新程式庫索引時發生錯誤!" #: ../../../processing/app/BaseNoGui.java:528 msgid "An error occurred while uploading the sketch" -msgstr "" +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 "" +msgstr "驗證草稿碼時發生錯誤" #: ../../../processing/app/BaseNoGui.java:521 msgid "An error occurred while verifying/uploading the sketch" -msgstr "" +msgstr "驗證/上傳草稿碼時發生錯誤" #: Base.java:228 msgid "" @@ -215,7 +219,7 @@ msgstr "封存草稿碼為:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "封存草稿碼動作已取消。" +msgstr "封存草稿碼的動作已取消。" #: tools/Archiver.java:75 msgid "" @@ -260,7 +264,7 @@ msgstr "你確定想要刪除\"{0}\"嗎?" #: Sketch.java:587 msgid "Are you sure you want to delete this sketch?" -msgstr "你確定想要刪除此草稿碼嗎?" +msgstr "確定想要刪除此草稿碼嗎?" #: ../../../processing/app/Base.java:356 msgid "Argument required for --board" @@ -294,7 +298,7 @@ msgstr "阿斯圖里亞斯語" #: ../../../processing/app/debug/Compiler.java:145 msgid "Authorization required" -msgstr "" +msgstr "需要授權" #: tools/AutoFormat.java:91 msgid "Auto Format" @@ -306,11 +310,11 @@ msgstr "自動格式化完畢。" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "自動偵測代理伺服器設定" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "自動型代理伺服器組態網址:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -341,7 +345,7 @@ msgstr "板子" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format msgid "Board {0} (platform {1}, package {2}) is unknown" -msgstr "" +msgstr "未知的板子{0}(平台{1},套件{2})" #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -356,20 +360,20 @@ msgstr "板子:" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" -msgstr "" +msgstr "板子管理員" #: ../../../../../app/src/processing/app/Base.java:1320 msgid "Boards Manager..." -msgstr "" +msgstr "板子管理員..." #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 msgid "Boards included in this package:" -msgstr "" +msgstr "此套件包含的板子:" #: ../../../processing/app/debug/Compiler.java:1273 #, java-format msgid "Bootloader file specified but missing: {0}" -msgstr "" +msgstr "指定了bootloader檔案但卻找不到:{0}" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" @@ -389,7 +393,7 @@ msgstr "建置選項已變更,重建所有" #: ../../../../../app/src/processing/app/Base.java:1210 msgid "Built-in Examples" -msgstr "" +msgstr "內建範例" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" @@ -405,11 +409,11 @@ msgstr "燒錄Bootloader" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "燒錄bootloader到板子裡(可能需要幾分鐘)..." +msgstr "燒錄bootloader到板子裡(可能要花上幾分鐘)..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." -msgstr "" +msgstr "CRC校對錯誤。檔案已毀損。" #: ../../../processing/app/Base.java:379 #, java-format @@ -419,7 +423,7 @@ msgstr "" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "Can't find the sketch in the specified path" -msgstr "" +msgstr "無法在指定路徑裡找到草稿碼" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -436,7 +440,7 @@ msgstr "無法重新命名" #: ../../../processing/app/Base.java:465 msgid "Cannot specify any sketch files" -msgstr "" +msgstr "無法指定任一草稿碼檔案" #: SerialMonitor.java:112 msgid "Carriage return" @@ -464,7 +468,7 @@ msgstr "中文(台灣)(Big5)" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" -msgstr "" +msgstr "點擊取得非官方板子的支援網址清單" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -472,15 +476,15 @@ msgstr "關閉" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" -msgstr "註解∕移除註解" +msgstr "註解/移除註解" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 msgid "Compiler warnings: " -msgstr "" +msgstr "編譯器警告:" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -msgstr "編譯草稿碼中..." +msgstr "草稿碼編譯中..." #: Editor.java:1157 Editor.java:2707 msgid "Copy" @@ -492,7 +496,7 @@ msgstr "當做HTML進行複製" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "複制錯誤訊息" +msgstr "複製錯誤訊息" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -543,7 +547,7 @@ msgstr "找不到工具{0}" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "在從套件{1}裡找不到工具{0}" +msgstr "從套件{1}裡找不到工具{0}" #: Base.java:1934 #, java-format @@ -563,7 +567,7 @@ msgstr "無法開啟資料夾\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 "無法適當地重新儲存草稿碼。你在此應碰上問題了,\n或許該複製貼上程式碼到別的文字編輯器裡。" +msgstr "無法適當地重新儲存草稿碼。你在此應碰上問題了,\n或許該複製貼上程式碼到別的文字編輯器。" #: Sketch.java:1768 msgid "Could not re-save sketch" @@ -637,11 +641,11 @@ msgstr "剪下" #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" -msgstr "" +msgstr "捷克語(捷克共和國)" #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" -msgstr "" +msgstr "丹麥語(丹麥)" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" @@ -649,7 +653,7 @@ msgstr "減少縮排深度" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" -msgstr "" +msgstr "預設" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" @@ -691,7 +695,7 @@ msgstr "bootloader燒錄完畢。" #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 msgid "Done compiling" -msgstr "" +msgstr "編譯完畢" #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." @@ -703,7 +707,7 @@ msgstr "列印完畢。" #: ../../../processing/app/BaseNoGui.java:514 msgid "Done uploading" -msgstr "" +msgstr "上傳完畢" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." @@ -712,29 +716,29 @@ msgstr "上傳完畢。" #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format msgid "Downloaded {0}kb of {1}kb." -msgstr "" +msgstr "已下載{0} kb,共{1] kb。" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 msgid "Downloading boards definitions." -msgstr "" +msgstr "下載板子的定義資訊" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 msgid "Downloading libraries index..." -msgstr "" +msgstr "下載程式庫索引..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format msgid "Downloading library: {0}" -msgstr "" +msgstr "下載程式庫:{0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 msgid "Downloading platforms index..." -msgstr "" +msgstr "下載平台索引..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format msgid "Downloading tools ({0}/{1})." -msgstr "" +msgstr "下載工具({0} / {1})" #: Preferences.java:91 msgid "Dutch" @@ -746,7 +750,7 @@ msgstr "荷蘭語(荷蘭)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" -msgstr "" +msgstr "Edison說明" #: Editor.java:1130 msgid "Edit" @@ -762,7 +766,7 @@ msgstr "編輯器語言:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" -msgstr "" +msgstr "啟用程式碼摺疊" #: Preferences.java:92 msgid "English" @@ -775,11 +779,11 @@ msgstr "英語(英國)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 msgid "Enter a comma separated list of urls" -msgstr "" +msgstr "輸入以逗號「,」隔開的網址清單" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 msgid "Enter additional URLs, one for each row" -msgstr "" +msgstr "輸入額外的網址,一行一個" #: Editor.java:1062 msgid "Environment" @@ -802,7 +806,7 @@ msgstr "編譯時發生錯誤" #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format msgid "Error downloading {0}" -msgstr "" +msgstr "下載{0}時發生錯誤" #: Base.java:1674 msgid "Error getting the Arduino data folder." @@ -830,7 +834,7 @@ msgstr "開啟序列埠''{0}''時發生錯誤。" msgid "" "Error opening serial port ''{0}''. Try consulting the documentation at " "http://playground.arduino.cc/Linux/All#Permission" -msgstr "" +msgstr "開啟序列埠''{0}''時發生錯誤。請到 http://playground.arduino.cc/Linux/All#Permission 查詢相關文件" #: Preferences.java:277 msgid "Error reading preferences" @@ -847,7 +851,7 @@ msgstr "讀取偏好設定檔時發生錯誤。請刪除(或移走)\n{0}並 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 msgid "Error running post install script" -msgstr "" +msgstr "執行安裝後續腳本檔時發生錯誤" #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " @@ -868,7 +872,7 @@ msgstr "燒錄bootloader時發生錯誤:缺少配置參數 '{0}'" #: ../../../../../app/src/processing/app/Editor.java:1940 msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" +msgstr "編譯時發生錯誤:沒有組態參數'{0}'" #: SketchCode.java:83 #, java-format @@ -879,9 +883,14 @@ msgstr "載入程式碼{0}時發生錯誤" msgid "Error while printing." msgstr "列印時發生錯誤。" +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +msgid "Error while setting serial port parameters: {0} {1} {2} {3}" +msgstr "" + #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" -msgstr "" +msgstr "上傳時發生錯誤" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 @@ -892,11 +901,11 @@ msgstr "上傳時發生錯誤:缺少結構參數“{0}”" #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 msgid "Error while verifying" -msgstr "" +msgstr "驗證時發生錯誤" #: ../../../processing/app/BaseNoGui.java:521 msgid "Error while verifying/uploading" -msgstr "" +msgstr "驗證/上傳時發生錯誤" #: Preferences.java:93 msgid "Estonian" @@ -912,19 +921,19 @@ msgstr "範例" #: ../../../../../app/src/processing/app/Base.java:1244 msgid "Examples from Custom Libraries" -msgstr "" +msgstr "第三方程式庫的範例" #: ../../../../../app/src/processing/app/Base.java:1222 msgid "Examples from Libraries" -msgstr "" +msgstr "程式庫的範例" #: ../../../../../app/src/processing/app/Editor.java:753 msgid "Export canceled, changes must first be saved." -msgstr "" +msgstr "取消匯出動作,變更處應先儲存。" #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" -msgstr "" +msgstr "匯出已編譯的二進位檔" #: ../../../processing/app/Base.java:416 #, java-format @@ -941,7 +950,7 @@ msgstr "菲律賓語" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." -msgstr "" +msgstr "過濾尋找結果..." #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -985,7 +994,7 @@ msgstr "" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" +msgstr "強迫使用1200 bps開關序列埠{0}來進行重置" #: Preferences.java:95 msgid "French" @@ -1001,11 +1010,11 @@ msgstr "加利西亞語" #: ../../../../../app/src/processing/app/Preferences.java:176 msgid "Galician (Spain)" -msgstr "" +msgstr "加利西亞語(西班牙)" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" -msgstr "" +msgstr "Galileo說明" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" @@ -1024,7 +1033,7 @@ msgstr "入門手冊" msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "全域變數使用了 {0} bytes ({2}%%) 動態記憶體,剩餘 {3} bytes 的局部變數。最大值為 {1} bytes 。" +msgstr "全域變數使用了 {0} bytes ({2}%%) 的動態記憶體,剩餘 {3} bytes 供局部變數。最大值為 {1} bytes 。" #: ../../../processing/app/Sketch.java:1651 #, java-format @@ -1033,11 +1042,11 @@ msgstr "全域變數使用了 {0} bytes 動態內存。" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 msgid "Go to line" -msgstr "" +msgstr "跳到行" #: ../../../../../app/src/processing/app/Editor.java:1460 msgid "Go to line..." -msgstr "" +msgstr "跳到行..." #: Preferences.java:98 msgid "Greek" @@ -1057,13 +1066,13 @@ msgstr "印度語" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "主機名稱:" #: Sketch.java:295 msgid "" "How about saving the sketch first \n" "before trying to rename it?" -msgstr "在試著重新命名前\n要不要先儲存草稿碼呢?" +msgstr "試著重新命名前\n要不要先儲存草稿碼呢?" #: Sketch.java:882 msgid "How very Borges of you" @@ -1094,16 +1103,16 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "自從Arduino 1.0之後,預設副檔名已從\n.pde改為.ino。新草稿碼(包括以\"另存新檔\"所\n建立的)將會使用新的副檔名,原有的草稿碼\n將會在儲存時更新附檔名,但您可在偏好設定裡\n取消此功能。\n\n儲存草稿碼並更新副檔名?" +msgstr "Arduino自1.0之後,預設副檔名已從\n.pde改為.ino。新草稿碼(包括以\"另存新檔\"所\n建立的)將會使用新的副檔名,原有草稿碼\n將會在儲存時更新附檔名,但您可在偏好設定裡\n取消此功能。\n\n儲存草稿碼並更新副檔名?" #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" -msgstr "" +msgstr "匯入程式庫" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "IDE安裝目錄不正確" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -1115,7 +1124,7 @@ msgstr "印尼語" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." -msgstr "" +msgstr "初始化套件..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -1124,34 +1133,34 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "安裝" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "安裝完畢!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "已安裝" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." -msgstr "" +msgstr "安裝板子..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "安裝程式庫:{0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "安裝工具({0} / {1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "安裝中..." #: ../../../processing/app/Base.java:1204 #, java-format @@ -1161,11 +1170,11 @@ msgstr "在{0}: {1}裡找到無效的程式庫" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format msgid "Invalid quoting: no closing [{0}] char found." -msgstr "" +msgstr "不正確的引號:沒找到代表結束的[{0}]字元" #: Preferences.java:102 msgid "Italian" -msgstr "意大利語" +msgstr "義大利語" #: Preferences.java:103 msgid "Japanese" @@ -1181,15 +1190,15 @@ msgstr "拉脫維亞語" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "程式庫管理員" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" +msgstr "已加入程式庫。請檢查選單「匯入程式庫」" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 msgid "Library can't use both 'src' and 'utility' folders." -msgstr "" +msgstr "程式庫不能同時使用'src'語'utility'資料夾。" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format @@ -1198,7 +1207,7 @@ msgstr "" #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 msgid "Line number:" -msgstr "" +msgstr "行數:" #: Preferences.java:106 msgid "Lithuaninan" @@ -1206,24 +1215,24 @@ msgstr "立陶宛語" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." -msgstr "" +msgstr "載入組態..." #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format msgid "Looking for recipes like {0}*{1}" -msgstr "" +msgstr "尋找類似{0}*{1}的訣竅" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." -msgstr "" +msgstr "可用記憶體低下,可能會出現穩定性問題" #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." -msgstr "" +msgstr "管理程式庫..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "手動代理伺服器組態設定" #: Preferences.java:107 msgid "Marathi" @@ -1236,15 +1245,15 @@ msgstr "訊息" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format msgid "Missing '{0}' from library in {1}" -msgstr "" +msgstr "程式庫{1}裡找不到'{0}'" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" -msgstr "" +msgstr "不支援的模式" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "更多" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1256,12 +1265,12 @@ msgstr "移動中" #: ../../../processing/app/BaseNoGui.java:484 msgid "Multiple files not supported" -msgstr "" +msgstr "多支檔案不被支援" #: ../../../processing/app/debug/Compiler.java:520 #, java-format msgid "Multiple libraries were found for \"{0}\"" -msgstr "" +msgstr "\"{0}\"找到多個程式庫" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" @@ -1277,11 +1286,11 @@ msgstr "尼泊爾語" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "網路" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" -msgstr "" +msgstr "網路連接埠" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" @@ -1309,7 +1318,7 @@ msgstr "否" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" -msgstr "" +msgstr "找不到授權資料" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -1317,11 +1326,11 @@ msgstr "自動格式化並不需要做出更動" #: ../../../processing/app/BaseNoGui.java:665 msgid "No command line parameters found" -msgstr "" +msgstr "找不到命令列參數" #: ../../../processing/app/debug/Compiler.java:200 msgid "No compiled sketch found" -msgstr "" +msgstr "找不到已編譯的草稿碼" #: Editor.java:373 msgid "No files were added to the sketch." @@ -1337,11 +1346,11 @@ msgstr "沒有行結尾" #: ../../../processing/app/BaseNoGui.java:665 msgid "No parameters" -msgstr "" +msgstr "沒有參數" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "沒有代理伺服器" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1355,11 +1364,11 @@ msgstr "關於\"{0}\"並無參考文件" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "No sketch" -msgstr "" +msgstr "沒有草稿碼" #: ../../../processing/app/BaseNoGui.java:428 msgid "No sketchbook" -msgstr "" +msgstr "沒有草稿碼簿" #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" @@ -1372,7 +1381,7 @@ msgstr "在文件夾中找不到任何有效的硬體定義{0}。" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 msgid "None" -msgstr "" +msgstr "無" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" @@ -1395,7 +1404,7 @@ msgstr "一支檔案已加入草稿碼。" #: ../../../processing/app/BaseNoGui.java:455 msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" +msgstr "僅支援--verify、--upload或--get-pref" #: EditorToolbar.java:41 msgid "Open" @@ -1403,7 +1412,7 @@ msgstr "開啟" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" -msgstr "" +msgstr "開啟最近" #: Editor.java:2688 msgid "Open URL" @@ -1440,15 +1449,15 @@ msgstr "波斯語(伊朗)" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format msgid "Platform {0} (package {1}) is unknown" -msgstr "" +msgstr "未知的平台{0}(套件{1})" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" -msgstr "" +msgstr "請確認刪除板子" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "Please confirm library deletion" -msgstr "" +msgstr "請確認刪除程式庫" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1473,7 +1482,7 @@ msgstr "序列埠" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "埠號:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1493,7 +1502,7 @@ msgstr "偏好設定" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." -msgstr "" +msgstr "準備板子..." #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" @@ -1560,7 +1569,7 @@ msgstr "燒錄器" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format msgid "Progress {0}" -msgstr "" +msgstr "進度{0}" #: Base.java:783 Editor.java:593 msgid "Quit" @@ -1568,7 +1577,7 @@ msgstr "離開" #: ../../../../../app/src/processing/app/Base.java:1233 msgid "RETIRED" -msgstr "" +msgstr "已廢棄" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" @@ -1580,17 +1589,17 @@ msgstr "參考文件" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 msgid "Remove" -msgstr "" +msgstr "移除" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format msgid "Removing library: {0}" -msgstr "" +msgstr "移除程式庫:{0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 msgid "Removing..." -msgstr "" +msgstr "移除中..." #: EditorHeader.java:300 msgid "Rename" @@ -1629,7 +1638,7 @@ msgstr "" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format msgid "Running: {0}" -msgstr "" +msgstr "執行中:{0}" #: Preferences.java:114 msgid "Russian" @@ -1659,7 +1668,7 @@ msgstr "儲存草稿碼資料夾為..." #: ../../../../../app/src/processing/app/Preferences.java:425 msgid "Save when verifying or uploading" -msgstr "" +msgstr "驗證或上傳時儲存" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." @@ -1667,7 +1676,7 @@ msgstr "儲存中..." #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" -msgstr "" +msgstr "尋找所有草稿碼標籤" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." @@ -1692,7 +1701,7 @@ msgstr "為草稿碼簿選擇新位置" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 msgid "Select version" -msgstr "" +msgstr "選擇版本" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." @@ -1700,11 +1709,11 @@ msgstr "根據'{0}'核心(並未安裝)所選擇的板子。" #: ../../../../../app/src/processing/app/Base.java:374 msgid "Selected board is not available" -msgstr "" +msgstr "沒有選定的板子" #: ../../../../../app/src/processing/app/Base.java:423 msgid "Selected library is not available" -msgstr "" +msgstr "沒有選定的程式庫" #: SerialMonitor.java:93 msgid "Send" @@ -1734,16 +1743,16 @@ msgstr "沒找到序列埠{0}。\n以另一個序列埠再試著上傳嗎?" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Serial ports" -msgstr "" +msgstr "序列埠" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format msgid "Setting build path to {0}" -msgstr "" +msgstr "把建置路徑設為{0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "設定" #: Base.java:1681 msgid "Settings issues" @@ -1812,7 +1821,7 @@ msgstr "草稿碼簿的位置:" #: ../../../processing/app/BaseNoGui.java:428 msgid "Sketchbook path not defined" -msgstr "" +msgstr "沒有定義草稿碼簿的路徑" #: ../../../../../app/src/processing/app/Preferences.java:185 msgid "Slovak" @@ -1846,11 +1855,11 @@ msgstr "西班牙語" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" -msgstr "" +msgstr "指定的目錄/zip檔並未含有合法的程式庫" #: ../../../../../app/src/processing/app/Base.java:466 msgid "Starting..." -msgstr "" +msgstr "啟動中..." #: Base.java:540 msgid "Sunshine" @@ -1866,7 +1875,7 @@ msgstr "系統預設" #: ../../../../../app/src/processing/app/Preferences.java:188 msgid "Talossan" -msgstr "" +msgstr "塔羅薩語" #: Preferences.java:116 msgid "Tamil" @@ -1878,7 +1887,7 @@ msgstr "關鍵字'BYTE'已不被支援" #: ../../../processing/app/BaseNoGui.java:484 msgid "The --upload option supports only one file at a time" -msgstr "" +msgstr "選項--upload一次僅支援一支檔案" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." @@ -1996,7 +2005,7 @@ msgstr "休息時間到了" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format msgid "Tool {0} is not available for your operating system." -msgstr "" +msgstr "你的作業系統上沒有工具{0}可用" #: Editor.java:663 msgid "Tools" @@ -2004,7 +2013,7 @@ msgstr "工具" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" -msgstr "" +msgstr "主題" #: Editor.java:1070 msgid "Troubleshooting" @@ -2047,7 +2056,7 @@ msgstr "無法連接; 錯誤的密碼?" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format msgid "Unable to find {0} in {1}" -msgstr "" +msgstr "在{1}裡找不到{0}" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" @@ -2086,7 +2095,7 @@ msgstr "平台未指定,無可用的啟動者。\n若想啟用初始網址或 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "可更新" #: UpdateCheck.java:111 msgid "Update" @@ -2098,7 +2107,7 @@ msgstr "儲存時更新草稿碼檔案的副檔名(.pde -> .ino)" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" -msgstr "" +msgstr "更新已安裝程式庫的清單" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -2135,7 +2144,7 @@ msgstr "使用外部編輯器" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "使用者名稱:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -2162,11 +2171,11 @@ msgstr "上傳後驗證程式碼" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "驗證/編譯" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." -msgstr "" +msgstr "驗證並上傳..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 msgid "Verifying archive integrity..." @@ -2174,21 +2183,21 @@ msgstr "" #: ../../../../../app/src/processing/app/Base.java:454 msgid "Verifying..." -msgstr "" +msgstr "驗證中..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format msgid "Version {0}" -msgstr "" +msgstr "版本{0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 msgid "Version unknown" -msgstr "" +msgstr "未知版本" #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format msgid "Version {0}" -msgstr "" +msgstr "版本{0}" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" @@ -2308,11 +2317,11 @@ msgid "" "because the sketch already has a .cpp file with that name." msgstr "你不能將草稿碼重新命名為\"{0}\"\n因為草稿碼裡已經有個擁有該名的.cpp檔。" -#: Sketch.java:861 +#: ../../../../../app/src/processing/app/Sketch.java:659 msgid "" "You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "你不能將草稿碼存為\"{0}\"\n因為已經有個擁有相同名稱的.cpp檔了。" +"because the sketch already has a file with that name." +msgstr "" #: Sketch.java:883 msgid "" @@ -2442,7 +2451,7 @@ msgstr "在檔案 > 偏好設定裡啟用。" #: ../../../../../app/src/processing/app/Editor.java:1352 msgid "http://www.arduino.cc/" -msgstr "" +msgstr "http://www.arduino.cc/" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" @@ -2483,23 +2492,23 @@ msgstr "上傳" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format msgid "version {0}" -msgstr "" +msgstr "版本{0}" #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format msgid "{0} - {1} | Arduino {2}" -msgstr "" +msgstr "{0} - {1} | Arduino {2}" #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format msgid "{0} file signature verification failed" -msgstr "" +msgstr "{0}檔案簽章驗證失敗" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format msgid "{0} file signature verification failed. File ignored." -msgstr "" +msgstr "{0}檔案簽章驗證失敗。忽略該檔。" #: Editor.java:380 #, java-format @@ -2509,12 +2518,12 @@ msgstr "{0}支檔案被加入到草稿碼中。" #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format msgid "{0} libraries" -msgstr "" +msgstr "{0}程式庫" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format msgid "{0} must be a folder" -msgstr "" +msgstr "{0}必須是個目錄" #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format 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 4d3fd5227..c4826822a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties @@ -8,45 +8,46 @@ # Translators: # Translators: # Translators: +# Translators: # Ethan , 2014 # Hank Lu , 2013 # james58899 , 2014 # james58899 , 2014 # Jordan_Fung , 2014 -# yehnan , 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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Taiwan) (http\://www.transifex.com/mbanzi/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 +# yehnan , 2013,2015 +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Taiwan) (http\://www.transifex.com/mbanzi/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)=\uff08\u9700\u8981\u91cd\u65b0\u555f\u52d5Arduino\uff09 #: ../../../processing/app/debug/Compiler.java:529 #, java-format -!\ Not\ used\:\ {0}= +\ Not\ used\:\ {0}=\u672a\u4f7f\u7528\: {0} #: ../../../processing/app/debug/Compiler.java:525 #, java-format -!\ Used\:\ {0}= +\ Used\:\ {0}=\u5df2\u4f7f\u7528\: {0} -#: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard'\u53ea\u88abArduino Leonardo\u6240\u652f\u63f4 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558 +!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= -#: debug/Compiler.java:450 -'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse'\u53ea\u88abArduino Leonardo\u6240\u652f\u63f4 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553 +!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ '?= #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 -!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=\u4e0d\u518d\u652f\u63f4\u8cc7\u6599\u593e'arch'\uff01\u8a73\u60c5\u8acb\u898bhttp\://goo.gl/gfFJzU #: Preferences.java:478 -(edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728\u672a\u57f7\u884cArduino\u6642\u9032\u884c\u7de8\u8f2f\uff09 +(edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728Arduino\u672a\u57f7\u884c\u4e4b\u6642\u9032\u884c\u7de8\u8f2f\uff09 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 !(legacy)= #: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= +--curdir\ no\ longer\ supported=--curdir\u5df2\u4e0d\u518d\u652f\u63f4 #: ../../../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\u3001--verbose-upload\u8207--verbose-build\u53ea\u80fd\u8207--verify\u6216--upload\u4e00\u540c\u4f7f\u7528 #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino @@ -83,28 +84,28 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!A\ newer\ {0}\ package\ is\ available= +A\ newer\ {0}\ package\ is\ available=\u5957\u4ef6{0}\u6709\u66f4\u65b0\u7684\u7248\u672c #: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= +A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=\u4f60\u7684\u8349\u7a3f\u78bc\u7c3f\u88e1\u6709\u500b\u5b50\u76ee\u9304\u4e0d\u662f\u5408\u6cd5\u7684\u7a0b\u5f0f\u5eab #: Editor.java:1116 About\ Arduino=\u95dc\u65bcArduino #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=\u52a0\u5165.ZIP\u7a0b\u5f0f\u5eab... #: Editor.java:650 Add\ File...=\u52a0\u5165\u6a94\u6848... #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= +Additional\ Boards\ Manager\ URLs=\u984d\u5916\u7684\u677f\u5b50\u7ba1\u7406\u54e1\u7db2\u5740 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = +Additional\ Boards\ Manager\ URLs\:\ =\u984d\u5916\u7684\u677f\u5b50\u7ba1\u7406\u54e1\u7db2\u5740\uff1a #: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= +Afrikaans=\u5357\u975e\u516c\u7528\u8377\u862d\u8a9e #: ../../../processing/app/Preferences.java:96 Albanian=\u963f\u723e\u5df4\u5c3c\u4e9e\u8a9e @@ -112,24 +113,24 @@ Albanian=\u963f\u723e\u5df4\u5c3c\u4e9e\u8a9e #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= +All=\u5168\u90e8 #: 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 +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\u8996\u5716\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 #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= +An\ error\ occurred\ while\ updating\ libraries\ index\!=\u66f4\u65b0\u7a0b\u5f0f\u5eab\u7d22\u5f15\u6642\u767c\u751f\u932f\u8aa4\uff01 #: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= +An\ error\ occurred\ while\ uploading\ the\ sketch=\u4e0a\u50b3\u8349\u7a3f\u78bc\u6642\u767c\u751f\u932f\u8aa4 #: ../../../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=\u9a57\u8b49\u8349\u7a3f\u78bc\u6642\u767c\u751f\u932f\u8aa4 #: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=\u9a57\u8b49\uff0f\u4e0a\u50b3\u8349\u7a3f\u78bc\u6642\u767c\u751f\u932f\u8aa4 #: 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 @@ -147,7 +148,7 @@ Archive\ Sketch=\u5c01\u5b58\u8349\u7a3f\u78bc Archive\ sketch\ as\:=\u5c01\u5b58\u8349\u7a3f\u78bc\u70ba\uff1a #: tools/Archiver.java:139 -Archive\ sketch\ canceled.=\u5c01\u5b58\u8349\u7a3f\u78bc\u52d5\u4f5c\u5df2\u53d6\u6d88\u3002 +Archive\ sketch\ canceled.=\u5c01\u5b58\u8349\u7a3f\u78bc\u7684\u52d5\u4f5c\u5df2\u53d6\u6d88\u3002 #: tools/Archiver.java:75 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 @@ -175,7 +176,7 @@ Arduino\:\ =Arduino\: 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?=\u4f60\u78ba\u5b9a\u60f3\u8981\u522a\u9664\u6b64\u8349\u7a3f\u78bc\u55ce\uff1f +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\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 @@ -201,7 +202,7 @@ Armenian=\u4e9e\u7f8e\u5c3c\u4e9e\u8a9e Asturian=\u963f\u65af\u5716\u91cc\u4e9e\u65af\u8a9e #: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= +Authorization\ required=\u9700\u8981\u6388\u6b0a #: tools/AutoFormat.java:91 Auto\ Format=\u81ea\u52d5\u683c\u5f0f\u5316 @@ -210,10 +211,10 @@ Auto\ Format=\u81ea\u52d5\u683c\u5f0f\u5316 Auto\ Format\ finished.=\u81ea\u52d5\u683c\u5f0f\u5316\u5b8c\u7562\u3002 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=\u81ea\u52d5\u5075\u6e2c\u4ee3\u7406\u4f3a\u670d\u5668\u8a2d\u5b9a #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=\u81ea\u52d5\u578b\u4ee3\u7406\u4f3a\u670d\u5668\u7d44\u614b\u7db2\u5740\uff1a #: SerialMonitor.java:110 Autoscroll=\u81ea\u52d5\u6372\u52d5 @@ -237,7 +238,7 @@ Board=\u677f\u5b50 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 #, java-format -!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=\u672a\u77e5\u7684\u677f\u5b50{0}\uff08\u5e73\u53f0{1}\uff0c\u5957\u4ef6{2}\uff09 #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format @@ -247,17 +248,17 @@ Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-se Board\:\ =\u677f\u5b50\uff1a #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= +Boards\ Manager=\u677f\u5b50\u7ba1\u7406\u54e1 #: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= +Boards\ Manager...=\u677f\u5b50\u7ba1\u7406\u54e1... #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= +Boards\ included\ in\ this\ package\:=\u6b64\u5957\u4ef6\u5305\u542b\u7684\u677f\u5b50\uff1a #: ../../../processing/app/debug/Compiler.java:1273 #, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= +Bootloader\ file\ specified\ but\ missing\:\ {0}=\u6307\u5b9a\u4e86bootloader\u6a94\u6848\u4f46\u537b\u627e\u4e0d\u5230\uff1a{0} #: ../../../processing/app/Preferences.java:140 Bosnian=\u6ce2\u65af\u5c3c\u4e9e\u8a9e @@ -272,7 +273,7 @@ Browse=\u700f\u89bd Build\ options\ changed,\ rebuilding\ all=\u5efa\u7f6e\u9078\u9805\u5df2\u8b8a\u66f4\uff0c\u91cd\u5efa\u6240\u6709 #: ../../../../../app/src/processing/app/Base.java:1210 -!Built-in\ Examples= +Built-in\ Examples=\u5167\u5efa\u7bc4\u4f8b #: ../../../processing/app/Preferences.java:80 Bulgarian=\u4fdd\u52a0\u5229\u4e9e\u8a9e @@ -284,10 +285,10 @@ Burmese\ (Myanmar)=\u7dec\u7538\u8a9e(\u7dec\u7538) 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... +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u71d2\u9304bootloader\u5230\u677f\u5b50\u88e1\uff08\u53ef\u80fd\u8981\u82b1\u4e0a\u5e7e\u5206\u9418\uff09... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= +CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC\u6821\u5c0d\u932f\u8aa4\u3002\u6a94\u6848\u5df2\u6bc0\u640d\u3002 #: ../../../processing/app/Base.java:379 #, java-format @@ -295,7 +296,7 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u71d2\u930 #: ../../../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=\u7121\u6cd5\u5728\u6307\u5b9a\u8def\u5f91\u88e1\u627e\u5230\u8349\u7a3f\u78bc #: ../../../processing/app/Preferences.java:92 Canadian\ French=\u52a0\u62ff\u5927\u6cd5\u8a9e @@ -308,7 +309,7 @@ Cancel=\u53d6\u6d88 Cannot\ Rename=\u7121\u6cd5\u91cd\u65b0\u547d\u540d #: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= +Cannot\ specify\ any\ sketch\ files=\u7121\u6cd5\u6307\u5b9a\u4efb\u4e00\u8349\u7a3f\u78bc\u6a94\u6848 #: SerialMonitor.java:112 Carriage\ return=CR(carriage return) @@ -329,19 +330,19 @@ Chinese\ (Taiwan)=\u4e2d\u6587(\u53f0\u7063) Chinese\ (Taiwan)\ (Big5)=\u4e2d\u6587(\u53f0\u7063)(Big5) #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= +Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\u9ede\u64ca\u53d6\u5f97\u975e\u5b98\u65b9\u677f\u5b50\u7684\u652f\u63f4\u7db2\u5740\u6e05\u55ae #: Editor.java:521 Editor.java:2024 Close=\u95dc\u9589 #: Editor.java:1208 Editor.java:2749 -Comment/Uncomment=\u8a3b\u89e3\u2215\u79fb\u9664\u8a3b\u89e3 +Comment/Uncomment=\u8a3b\u89e3\uff0f\u79fb\u9664\u8a3b\u89e3 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = +Compiler\ warnings\:\ =\u7de8\u8b6f\u5668\u8b66\u544a\uff1a #: Sketch.java:1608 Editor.java:1890 -Compiling\ sketch...=\u7de8\u8b6f\u8349\u7a3f\u78bc\u4e2d... +Compiling\ sketch...=\u8349\u7a3f\u78bc\u7de8\u8b6f\u4e2d... #: Editor.java:1157 Editor.java:2707 Copy=\u8907\u88fd @@ -350,7 +351,7 @@ Copy=\u8907\u88fd Copy\ as\ HTML=\u7576\u505aHTML\u9032\u884c\u8907\u88fd #: ../../../processing/app/EditorStatus.java:455 -Copy\ error\ messages=\u8907\u5236\u932f\u8aa4\u8a0a\u606f +Copy\ error\ messages=\u8907\u88fd\u932f\u8aa4\u8a0a\u606f #: Editor.java:1165 Editor.java:2715 Copy\ for\ Forum=\u70ba\u4e86\u8ad6\u58c7\u9032\u884c\u8907\u88fd @@ -390,7 +391,7 @@ 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}=\u5728\u5f9e\u5957\u4ef6{1}\u88e1\u627e\u4e0d\u5230\u5de5\u5177{0} +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\u5f9e\u5957\u4ef6{1}\u88e1\u627e\u4e0d\u5230\u5de5\u5177{0} #: Base.java:1934 #, java-format @@ -401,7 +402,7 @@ Could\ not\ open\ the\ URL\n{0}=\u7121\u6cd5\u958b\u555f\u7db2\u5740\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.=\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 +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\u3002 #: Sketch.java:1768 Could\ not\ re-save\ sketch=\u7121\u6cd5\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78bc @@ -452,16 +453,16 @@ Croatian=\u514b\u7f85\u5730\u4e9e\u8a9e Cut=\u526a\u4e0b #: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= +Czech\ (Czech\ Republic)=\u6377\u514b\u8a9e\uff08\u6377\u514b\u5171\u548c\u570b\uff09 #: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= +Danish\ (Denmark)=\u4e39\u9ea5\u8a9e\uff08\u4e39\u9ea5\uff09 #: Editor.java:1224 Editor.java:2765 Decrease\ Indent=\u6e1b\u5c11\u7e2e\u6392\u6df1\u5ea6 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= +Default=\u9810\u8a2d #: EditorHeader.java:314 Sketch.java:591 Delete=\u522a\u9664 @@ -490,7 +491,7 @@ Done\ burning\ bootloader.=bootloader\u71d2\u9304\u5b8c\u7562\u3002 #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= +Done\ compiling=\u7de8\u8b6f\u5b8c\u7562 #: Editor.java:1911 Editor.java:1928 Done\ compiling.=\u7de8\u8b6f\u5b8c\u7562\u3002 @@ -499,31 +500,31 @@ Done\ compiling.=\u7de8\u8b6f\u5b8c\u7562\u3002 Done\ printing.=\u5217\u5370\u5b8c\u7562\u3002 #: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= +Done\ uploading=\u4e0a\u50b3\u5b8c\u7562 #: Editor.java:2395 Editor.java:2431 Done\ uploading.=\u4e0a\u50b3\u5b8c\u7562\u3002 #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= +Downloaded\ {0}kb\ of\ {1}kb.=\u5df2\u4e0b\u8f09{0} kb\uff0c\u5171{1] kb\u3002 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= +Downloading\ boards\ definitions.=\u4e0b\u8f09\u677f\u5b50\u7684\u5b9a\u7fa9\u8cc7\u8a0a #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= +Downloading\ libraries\ index...=\u4e0b\u8f09\u7a0b\u5f0f\u5eab\u7d22\u5f15... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format -!Downloading\ library\:\ {0}= +Downloading\ library\:\ {0}=\u4e0b\u8f09\u7a0b\u5f0f\u5eab\uff1a{0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= +Downloading\ platforms\ index...=\u4e0b\u8f09\u5e73\u53f0\u7d22\u5f15... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format -!Downloading\ tools\ ({0}/{1}).= +Downloading\ tools\ ({0}/{1}).=\u4e0b\u8f09\u5de5\u5177\uff08{0} / {1}\uff09 #: Preferences.java:91 Dutch=\u8377\u862d\u8a9e @@ -532,7 +533,7 @@ Dutch=\u8377\u862d\u8a9e Dutch\ (Netherlands)=\u8377\u862d\u8a9e(\u8377\u862d) #: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= +Edison\ Help=Edison\u8aaa\u660e #: Editor.java:1130 Edit=\u7de8\u8f2f @@ -544,7 +545,7 @@ Editor\ font\ size\:\ =\u7de8\u8f2f\u5668\u5b57\u578b\u5927\u5c0f\uff1a Editor\ language\:\ =\u7de8\u8f2f\u5668\u8a9e\u8a00\uff1a #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= +Enable\ Code\ Folding=\u555f\u7528\u7a0b\u5f0f\u78bc\u647a\u758a #: Preferences.java:92 English=\u82f1\u8a9e @@ -554,10 +555,10 @@ English\ (United\ Kingdom)=\u82f1\u8a9e(\u82f1\u570b) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= +Enter\ a\ comma\ separated\ list\ of\ urls=\u8f38\u5165\u4ee5\u9017\u865f\u300c,\u300d\u9694\u958b\u7684\u7db2\u5740\u6e05\u55ae #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= +Enter\ additional\ URLs,\ one\ for\ each\ row=\u8f38\u5165\u984d\u5916\u7684\u7db2\u5740\uff0c\u4e00\u884c\u4e00\u500b #: Editor.java:1062 Environment=\u958b\u767c\u74b0\u5883 @@ -575,7 +576,7 @@ Error\ compiling.=\u7de8\u8b6f\u6642\u767c\u751f\u932f\u8aa4 #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format -!Error\ downloading\ {0}= +Error\ downloading\ {0}=\u4e0b\u8f09{0}\u6642\u767c\u751f\u932f\u8aa4 #: Base.java:1674 Error\ getting\ the\ Arduino\ data\ folder.=\u53d6\u5f97Arduino\u8cc7\u6599\u76ee\u9304\u6642\u767c\u751f\u932f\u8aa4 @@ -596,7 +597,7 @@ Error\ opening\ serial\ port\ ''{0}''.=\u958b\u555f\u5e8f\u5217\u57e0''{0}''\u66 #: ../../../processing/app/Serial.java:119 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= +Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=\u958b\u555f\u5e8f\u5217\u57e0''{0}''\u6642\u767c\u751f\u932f\u8aa4\u3002\u8acb\u5230 http\://playground.arduino.cc/Linux/All\#Permission \u67e5\u8a62\u76f8\u95dc\u6587\u4ef6 #: Preferences.java:277 Error\ reading\ preferences=\u8b80\u53d6\u504f\u597d\u8a2d\u5b9a\u6642\u767c\u751f\u932f\u8aa4 @@ -608,7 +609,7 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= +Error\ running\ post\ install\ script=\u57f7\u884c\u5b89\u88dd\u5f8c\u7e8c\u8173\u672c\u6a94\u6642\u767c\u751f\u932f\u8aa4 #: ../../../cc/arduino/packages/DiscoveryManager.java:25 !Error\ starting\ discovery\ method\:\ = @@ -624,7 +625,7 @@ Error\ while\ burning\ bootloader.=\u71d2\u9304bootloader\u6642\u767c\u751f\u932 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= +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=\u7de8\u8b6f\u6642\u767c\u751f\u932f\u8aa4\uff1a\u6c92\u6709\u7d44\u614b\u53c3\u6578'{0}' #: SketchCode.java:83 #, java-format @@ -633,8 +634,12 @@ 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 +#: ../../../../../arduino-core/src/processing/app/Serial.java:117 +#, java-format +!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}= + #: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= +Error\ while\ uploading=\u4e0a\u50b3\u6642\u767c\u751f\u932f\u8aa4 #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 @@ -643,10 +648,10 @@ Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u4e0a\u50b3 #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= +Error\ while\ verifying=\u9a57\u8b49\u6642\u767c\u751f\u932f\u8aa4 #: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= +Error\ while\ verifying/uploading=\u9a57\u8b49\uff0f\u4e0a\u50b3\u6642\u767c\u751f\u932f\u8aa4 #: Preferences.java:93 Estonian=\u611b\u6c99\u5c3c\u4e9e\u8a9e @@ -658,16 +663,16 @@ Estonian\ (Estonia)=\u611b\u6c99\u5c3c\u4e9e\u8a9e(\u611b\u6c99\u5c3c\u4e9e) Examples=\u7bc4\u4f8b #: ../../../../../app/src/processing/app/Base.java:1244 -!Examples\ from\ Custom\ Libraries= +Examples\ from\ Custom\ Libraries=\u7b2c\u4e09\u65b9\u7a0b\u5f0f\u5eab\u7684\u7bc4\u4f8b #: ../../../../../app/src/processing/app/Base.java:1222 -!Examples\ from\ Libraries= +Examples\ from\ Libraries=\u7a0b\u5f0f\u5eab\u7684\u7bc4\u4f8b #: ../../../../../app/src/processing/app/Editor.java:753 -!Export\ canceled,\ changes\ must\ first\ be\ saved.= +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u53d6\u6d88\u532f\u51fa\u52d5\u4f5c\uff0c\u8b8a\u66f4\u8655\u61c9\u5148\u5132\u5b58\u3002 #: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= +Export\ compiled\ Binary=\u532f\u51fa\u5df2\u7de8\u8b6f\u7684\u4e8c\u9032\u4f4d\u6a94 #: ../../../processing/app/Base.java:416 #, java-format @@ -680,7 +685,7 @@ File=\u6a94\u6848 Filipino=\u83f2\u5f8b\u8cd3\u8a9e #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= +Filter\ your\ search...=\u904e\u6ffe\u5c0b\u627e\u7d50\u679c... #: FindReplace.java:124 FindReplace.java:127 Find=\u5c0b\u627e @@ -712,7 +717,7 @@ Fix\ Encoding\ &\ Reload=\u4fee\u6b63\u7de8\u78bc\u4e26\u91cd\u65b0\u8f09\u5165 #: ../../../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}=\u5f37\u8feb\u4f7f\u75281200 bps\u958b\u95dc\u5e8f\u5217\u57e0{0}\u4f86\u9032\u884c\u91cd\u7f6e #: Preferences.java:95 French=\u6cd5\u8a9e @@ -724,10 +729,10 @@ Frequently\ Asked\ Questions=\u5e38\u898b\u554f\u7b54\u96c6 Galician=\u52a0\u5229\u897f\u4e9e\u8a9e #: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= +Galician\ (Spain)=\u52a0\u5229\u897f\u4e9e\u8a9e\uff08\u897f\u73ed\u7259\uff09 #: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= +Galileo\ Help=Galileo\u8aaa\u660e #: ../../../processing/app/Preferences.java:94 Georgian=\u55ac\u6cbb\u4e9e\u8a9e @@ -740,17 +745,17 @@ 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.=\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 +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}%%) \u7684\u52d5\u614b\u8a18\u61b6\u9ad4\uff0c\u5269\u9918 {3} bytes \u4f9b\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.=\u5168\u57df\u8b8a\u6578\u4f7f\u7528\u4e86 {0} bytes \u52d5\u614b\u5167\u5b58\u3002 #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66 -!Go\ to\ line= +Go\ to\ line=\u8df3\u5230\u884c #: ../../../../../app/src/processing/app/Editor.java:1460 -!Go\ to\ line...= +Go\ to\ line...=\u8df3\u5230\u884c... #: Preferences.java:98 Greek=\u5e0c\u81d8\u8a9e @@ -765,10 +770,10 @@ Help=\u8aaa\u660e Hindi=\u5370\u5ea6\u8a9e #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=\u4e3b\u6a5f\u540d\u7a31\uff1a #: Sketch.java:295 -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 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\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=\u8ab0\u4eba\u6bd4\u4f60\u66f4\u7672\u72c2 @@ -786,14 +791,14 @@ Ignoring\ bad\ library\ name=\u5ffd\u7565\u4e0d\u597d\u7684\u7a0b\u5f0f\u5eab\u5 Ignoring\ sketch\ with\ bad\ name=\u5ffd\u7565\u64c1\u6709\u4e0d\u597d\u540d\u7a31\u7684\u8349\u7a3f\u78bc #: ../../../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?=\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 +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?=Arduino\u81ea1.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\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 #: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= +Include\ Library=\u532f\u5165\u7a0b\u5f0f\u5eab #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=IDE\u5b89\u88dd\u76ee\u9304\u4e0d\u6b63\u78ba #: Editor.java:1216 Editor.java:2757 Increase\ Indent=\u589e\u52a0\u7e2e\u6392\u6df1\u5ea6 @@ -802,7 +807,7 @@ Increase\ Indent=\u589e\u52a0\u7e2e\u6392\u6df1\u5ea6 Indonesian=\u5370\u5c3c\u8a9e #: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= +Initializing\ packages...=\u521d\u59cb\u5316\u5957\u4ef6... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -810,28 +815,28 @@ Indonesian=\u5370\u5c3c\u8a9e #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=\u5b89\u88dd #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=\u5b89\u88dd\u5b8c\u7562\uff01 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=\u5df2\u5b89\u88dd #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= +Installing\ boards...=\u5b89\u88dd\u677f\u5b50... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=\u5b89\u88dd\u7a0b\u5f0f\u5eab\uff1a{0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=\u5b89\u88dd\u5de5\u5177\uff08{0} / {1}\uff09... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=\u5b89\u88dd\u4e2d... #: ../../../processing/app/Base.java:1204 #, java-format @@ -839,10 +844,10 @@ Invalid\ library\ found\ in\ {0}\:\ {1}=\u5728{0}\: {1}\u88e1\u627e\u5230\u7121\ #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 #, java-format -!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=\u4e0d\u6b63\u78ba\u7684\u5f15\u865f\uff1a\u6c92\u627e\u5230\u4ee3\u8868\u7d50\u675f\u7684[{0}]\u5b57\u5143 #: Preferences.java:102 -Italian=\u610f\u5927\u5229\u8a9e +Italian=\u7fa9\u5927\u5229\u8a9e #: Preferences.java:103 Japanese=\u65e5\u8a9e @@ -854,39 +859,39 @@ Korean=\u97d3\u8a9e Latvian=\u62c9\u812b\u7dad\u4e9e\u8a9e #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=\u7a0b\u5f0f\u5eab\u7ba1\u7406\u54e1 #: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u5df2\u52a0\u5165\u7a0b\u5f0f\u5eab\u3002\u8acb\u6aa2\u67e5\u9078\u55ae\u300c\u532f\u5165\u7a0b\u5f0f\u5eab\u300d #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 -!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u7a0b\u5f0f\u5eab\u4e0d\u80fd\u540c\u6642\u4f7f\u7528'src'\u8a9e'utility'\u8cc7\u6599\u593e\u3002 #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= #: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70 -!Line\ number\:= +Line\ number\:=\u884c\u6578\uff1a #: Preferences.java:106 Lithuaninan=\u7acb\u9676\u5b9b\u8a9e #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=\u8f09\u5165\u7d44\u614b... #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 #, java-format -!Looking\ for\ recipes\ like\ {0}*{1}= +Looking\ for\ recipes\ like\ {0}*{1}=\u5c0b\u627e\u985e\u4f3c{0}*{1}\u7684\u8a23\u7ac5 #: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= +Low\ memory\ available,\ stability\ problems\ may\ occur.=\u53ef\u7528\u8a18\u61b6\u9ad4\u4f4e\u4e0b\uff0c\u53ef\u80fd\u6703\u51fa\u73fe\u7a69\u5b9a\u6027\u554f\u984c #: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= +Manage\ Libraries...=\u7ba1\u7406\u7a0b\u5f0f\u5eab... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=\u624b\u52d5\u4ee3\u7406\u4f3a\u670d\u5668\u7d44\u614b\u8a2d\u5b9a #: Preferences.java:107 Marathi=\u99ac\u62c9\u5730\u8a9e @@ -896,13 +901,13 @@ Message=\u8a0a\u606f #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 #, java-format -!Missing\ '{0}'\ from\ library\ in\ {1}= +Missing\ '{0}'\ from\ library\ in\ {1}=\u7a0b\u5f0f\u5eab{1}\u88e1\u627e\u4e0d\u5230'{0}' #: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= +Mode\ not\ supported=\u4e0d\u652f\u63f4\u7684\u6a21\u5f0f #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=\u66f4\u591a #: 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 @@ -911,11 +916,11 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u5728\u504f\u597d\u Moving=\u79fb\u52d5\u4e2d #: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= +Multiple\ files\ not\ supported=\u591a\u652f\u6a94\u6848\u4e0d\u88ab\u652f\u63f4 #: ../../../processing/app/debug/Compiler.java:520 #, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= +Multiple\ libraries\ were\ found\ for\ "{0}"="{0}"\u627e\u5230\u591a\u500b\u7a0b\u5f0f\u5eab #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u8349\u7a3f\u78bc\u6587\u4ef6 @@ -927,10 +932,10 @@ Name\ for\ new\ file\:=\u65b0\u6a94\u6848\u7684\u540d\u5b57\uff1a Nepali=\u5c3c\u6cca\u723e\u8a9e #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=\u7db2\u8def #: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= +Network\ ports=\u7db2\u8def\u9023\u63a5\u57e0 #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 Network\ upload\ using\ programmer\ not\ supported=\u7de8\u7a0b\u5668\u4e0d\u652f\u63f4\u4f7f\u7528\u7db2\u7d61\u4e0a\u50b3 @@ -951,16 +956,16 @@ Next\ Tab=\u4e0b\u4e00\u500b\u6a19\u7c64 No=\u5426 #: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= +No\ authorization\ data\ found=\u627e\u4e0d\u5230\u6388\u6b0a\u8cc7\u6599 #: 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= +No\ command\ line\ parameters\ found=\u627e\u4e0d\u5230\u547d\u4ee4\u5217\u53c3\u6578 #: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= +No\ compiled\ sketch\ found=\u627e\u4e0d\u5230\u5df2\u7de8\u8b6f\u7684\u8349\u7a3f\u78bc #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=\u6c92\u6709\u6a94\u6848\u88ab\u52a0\u5165\u8349\u7a3f\u78bc\u4e2d\u3002 @@ -972,10 +977,10 @@ No\ launcher\ available=\u7121\u53ef\u7528\u7684\u555f\u52d5\u8005\u3002 No\ line\ ending=\u6c92\u6709\u884c\u7d50\u5c3e #: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= +No\ parameters=\u6c92\u6709\u53c3\u6578 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=\u6c92\u6709\u4ee3\u7406\u4f3a\u670d\u5668 #: 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 @@ -986,10 +991,10 @@ No\ reference\ available\ for\ "{0}"=\u95dc\u65bc"{0}"\u4e26\u7121\u53c3\u8003\u #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= +No\ sketch=\u6c92\u6709\u8349\u7a3f\u78bc #: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= +No\ sketchbook=\u6c92\u6709\u8349\u7a3f\u78bc\u7c3f #: ../../../processing/app/Sketch.java:204 No\ valid\ code\ files\ found=\u627e\u4e0d\u5230\u6709\u6548\u7684\u7a0b\u5f0f\u78bc\u6587\u4ef6 @@ -999,7 +1004,7 @@ No\ valid\ code\ files\ found=\u627e\u4e0d\u5230\u6709\u6548\u7684\u7a0b\u5f0f\u 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 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= +None=\u7121 #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u5df4\u514b\u6469\u632a\u5a01\u8a9e @@ -1015,13 +1020,13 @@ OK=\u597d 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= +Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=\u50c5\u652f\u63f4--verify\u3001--upload\u6216--get-pref #: EditorToolbar.java:41 Open=\u958b\u555f #: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= +Open\ Recent=\u958b\u555f\u6700\u8fd1 #: Editor.java:2688 Open\ URL=\u958b\u555f\u7db2\u5740 @@ -1049,13 +1054,13 @@ Persian\ (Iran)=\u6ce2\u65af\u8a9e(\u4f0a\u6717) #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 #, java-format -!Platform\ {0}\ (package\ {1})\ is\ unknown= +Platform\ {0}\ (package\ {1})\ is\ unknown=\u672a\u77e5\u7684\u5e73\u53f0{0}\uff08\u5957\u4ef6{1}\uff09 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= +Please\ confirm\ boards\ deletion=\u8acb\u78ba\u8a8d\u522a\u9664\u677f\u5b50 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= +Please\ confirm\ library\ deletion=\u8acb\u78ba\u8a8d\u522a\u9664\u7a0b\u5f0f\u5eab #: 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 @@ -1074,7 +1079,7 @@ Polish=\u6ce2\u862d\u8a9e Port=\u5e8f\u5217\u57e0 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=\u57e0\u865f\uff1a #: ../../../processing/app/Preferences.java:151 Portugese=\u8461\u8404\u7259\u8a9e @@ -1089,7 +1094,7 @@ Portuguese\ (Portugal)=\u8461\u8404\u7259\u8a9e(\u8461\u8404\u7259) Preferences=\u504f\u597d\u8a2d\u5b9a #: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= +Preparing\ boards...=\u6e96\u5099\u677f\u5b50... #: FindReplace.java:123 FindReplace.java:128 Previous=\u524d\u4e00\u500b @@ -1138,13 +1143,13 @@ Programmer=\u71d2\u9304\u5668 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 #, java-format -!Progress\ {0}= +Progress\ {0}=\u9032\u5ea6{0} #: Base.java:783 Editor.java:593 Quit=\u96e2\u958b #: ../../../../../app/src/processing/app/Base.java:1233 -!RETIRED= +RETIRED=\u5df2\u5ee2\u68c4 #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u91cd\u505a @@ -1153,15 +1158,15 @@ Redo=\u91cd\u505a Reference=\u53c3\u8003\u6587\u4ef6 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= +Remove=\u79fb\u9664 #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format -!Removing\ library\:\ {0}= +Removing\ library\:\ {0}=\u79fb\u9664\u7a0b\u5f0f\u5eab\uff1a{0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= +Removing...=\u79fb\u9664\u4e2d... #: EditorHeader.java:300 Rename=\u91cd\u65b0\u547d\u540d @@ -1191,7 +1196,7 @@ Romanian=\u7f85\u99ac\u5c3c\u4e9e\u8a9e #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 #, java-format -!Running\:\ {0}= +Running\:\ {0}=\u57f7\u884c\u4e2d\uff1a{0} #: Preferences.java:114 Russian=\u4fc4\u8a9e @@ -1214,13 +1219,13 @@ Save\ changes\ to\ "{0}"?\ \ =\u5132\u5b58\u8b8a\u66f4\u5230"{0}"\uff1f 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= +Save\ when\ verifying\ or\ uploading=\u9a57\u8b49\u6216\u4e0a\u50b3\u6642\u5132\u5b58 #: Editor.java:2270 Editor.java:2308 Saving...=\u5132\u5b58\u4e2d... #: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= +Search\ all\ Sketch\ Tabs=\u5c0b\u627e\u6240\u6709\u8349\u7a3f\u78bc\u6a19\u7c64 #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=\u70ba\u8349\u7a3f\u78bc\u9078\u53d6\uff08\u6216\u65b0\u589e\uff09\u8cc7\u6599\u593e... @@ -1239,16 +1244,16 @@ Select\ new\ sketchbook\ location=\u70ba\u8349\u7a3f\u78bc\u7c3f\u9078\u64c7\u65 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= +Select\ version=\u9078\u64c7\u7248\u672c #: ../../../processing/app/debug/Compiler.java:146 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 #: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= +Selected\ board\ is\ not\ available=\u6c92\u6709\u9078\u5b9a\u7684\u677f\u5b50 #: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= +Selected\ library\ is\ not\ available=\u6c92\u6709\u9078\u5b9a\u7684\u7a0b\u5f0f\u5eab #: SerialMonitor.java:93 Send=\u50b3\u9001 @@ -1268,14 +1273,14 @@ 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?=\u6c92\u627e\u5230\u5e8f\u5217\u57e0{0}\u3002\n\u4ee5\u53e6\u4e00\u500b\u5e8f\u5217\u57e0\u518d\u8a66\u8457\u4e0a\u50b3\u55ce\uff1f #: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= +Serial\ ports=\u5e8f\u5217\u57e0 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 #, java-format -!Setting\ build\ path\ to\ {0}= +Setting\ build\ path\ to\ {0}=\u628a\u5efa\u7f6e\u8def\u5f91\u8a2d\u70ba{0} #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=\u8a2d\u5b9a #: Base.java:1681 Settings\ issues=\u8a2d\u5b9a\u503c\u76f8\u95dc\u554f\u984c @@ -1324,7 +1329,7 @@ Sketchbook\ folder\ disappeared=\u8349\u7a3f\u78bc\u7c3f\u8cc7\u6599\u593e\u4e0d Sketchbook\ location\:=\u8349\u7a3f\u78bc\u7c3f\u7684\u4f4d\u7f6e\uff1a #: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= +Sketchbook\ path\ not\ defined=\u6c92\u6709\u5b9a\u7fa9\u8349\u7a3f\u78bc\u7c3f\u7684\u8def\u5f91 #: ../../../../../app/src/processing/app/Preferences.java:185 !Slovak= @@ -1346,10 +1351,10 @@ Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u62b1\u6b49\uff Spanish=\u897f\u73ed\u7259\u8a9e #: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= +Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=\u6307\u5b9a\u7684\u76ee\u9304\uff0fzip\u6a94\u4e26\u672a\u542b\u6709\u5408\u6cd5\u7684\u7a0b\u5f0f\u5eab #: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= +Starting...=\u555f\u52d5\u4e2d... #: Base.java:540 Sunshine=\u967d\u5149 @@ -1361,7 +1366,7 @@ Swedish=\u745e\u5178\u8a9e System\ Default=\u7cfb\u7d71\u9810\u8a2d #: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= +Talossan=\u5854\u7f85\u85a9\u8a9e #: Preferences.java:116 Tamil=\u6cf0\u7c73\u723e\u8a9e @@ -1370,7 +1375,7 @@ Tamil=\u6cf0\u7c73\u723e\u8a9e 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= +The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=\u9078\u9805--upload\u4e00\u6b21\u50c5\u652f\u63f4\u4e00\u652f\u6a94\u6848 #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u985e\u5225Client\u5df2\u6539\u540d\u70baEthernetClient\u3002 @@ -1432,13 +1437,13 @@ Time\ for\ a\ Break=\u4f11\u606f\u6642\u9593\u5230\u4e86 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= +Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=\u4f60\u7684\u4f5c\u696d\u7cfb\u7d71\u4e0a\u6c92\u6709\u5de5\u5177{0}\u53ef\u7528 #: Editor.java:663 Tools=\u5de5\u5177 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= +Topic=\u4e3b\u984c #: Editor.java:1070 Troubleshooting=\u6392\u9664\u554f\u984c @@ -1471,7 +1476,7 @@ Unable\ to\ connect\:\ wrong\ password?=\u7121\u6cd5\u9023\u63a5; \u932f\u8aa4\u #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 #, java-format -!Unable\ to\ find\ {0}\ in\ {1}= +Unable\ to\ find\ {0}\ in\ {1}=\u5728{1}\u88e1\u627e\u4e0d\u5230{0} #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u7121\u6cd5\u958b\u555f\u5e8f\u5217\u76e3\u8996\u5668 @@ -1499,7 +1504,7 @@ Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=\u53ef\u66f4\u65b0 #: UpdateCheck.java:111 Update=\u66f4\u65b0 @@ -1508,7 +1513,7 @@ Update=\u66f4\u65b0 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 #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= +Updating\ list\ of\ installed\ libraries=\u66f4\u65b0\u5df2\u5b89\u88dd\u7a0b\u5f0f\u5eab\u7684\u6e05\u55ae #: EditorToolbar.java:41 Editor.java:545 Upload=\u4e0a\u50b3 @@ -1536,7 +1541,7 @@ Use\ external\ editor=\u4f7f\u7528\u5916\u90e8\u7de8\u8f2f\u5668 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=\u4f7f\u7528\u8005\u540d\u7a31\uff1a #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -1557,27 +1562,27 @@ Verify=\u9a57\u8b49 Verify\ code\ after\ upload=\u4e0a\u50b3\u5f8c\u9a57\u8b49\u7a0b\u5f0f\u78bc #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=\u9a57\u8b49\uff0f\u7de8\u8b6f #: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= +Verifying\ and\ uploading...=\u9a57\u8b49\u4e26\u4e0a\u50b3... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 !Verifying\ archive\ integrity...= #: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= +Verifying...=\u9a57\u8b49\u4e2d... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format -!Version\ {0}= +Version\ {0}=\u7248\u672c{0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= +Version\ unknown=\u672a\u77e5\u7248\u672c #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format -!Version\ {0}= +Version\ {0}=\u7248\u672c{0} #: ../../../processing/app/Preferences.java:154 Vietnamese=\u8d8a\u5357\u8a9e @@ -1659,8 +1664,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u4f60\ #: Sketch.java:421 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.=\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 +#: ../../../../../app/src/processing/app/Sketch.java:659 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.= #: Sketch.java:883 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 @@ -1731,7 +1736,7 @@ createNewFile()\ returned\ false=createNewFile()\u56de\u50b3false enabled\ in\ File\ >\ Preferences.=\u5728\u6a94\u6848 > \u504f\u597d\u8a2d\u5b9a\u88e1\u555f\u7528\u3002 #: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= +http\://www.arduino.cc/=http\://www.arduino.cc/ #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1762,20 +1767,20 @@ upload=\u4e0a\u50b3 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format -!version\ {0}= +version\ {0}=\u7248\u672c{0} #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= +{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | Arduino {2} #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format -!{0}\ file\ signature\ verification\ failed= +{0}\ file\ signature\ verification\ failed={0}\u6a94\u6848\u7c3d\u7ae0\u9a57\u8b49\u5931\u6557 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= +{0}\ file\ signature\ verification\ failed.\ File\ ignored.={0}\u6a94\u6848\u7c3d\u7ae0\u9a57\u8b49\u5931\u6557\u3002\u5ffd\u7565\u8a72\u6a94\u3002 #: Editor.java:380 #, java-format @@ -1783,11 +1788,11 @@ upload=\u4e0a\u50b3 #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format -!{0}\ libraries= +{0}\ libraries={0}\u7a0b\u5f0f\u5eab #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 #, java-format -!{0}\ must\ be\ a\ folder= +{0}\ must\ be\ a\ folder={0}\u5fc5\u9808\u662f\u500b\u76ee\u9304 #: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 #, java-format diff --git a/arduino-core/src/processing/app/macosx/SystemProfilerParser.java b/arduino-core/src/processing/app/macosx/SystemProfilerParser.java index 2e1d77462..d9a08b294 100644 --- a/arduino-core/src/processing/app/macosx/SystemProfilerParser.java +++ b/arduino-core/src/processing/app/macosx/SystemProfilerParser.java @@ -45,7 +45,7 @@ public class SystemProfilerParser { devicePrefix = DEV_CU_USBMODEM; } - Map device = new HashMap(); + Map device = new HashMap<>(); String line; Matcher matcher; @@ -80,11 +80,11 @@ public class SystemProfilerParser { String computedDevicePath = device.get(DEVICE_PATH); String computedDevicePathMinusChar = computedDevicePath.substring(0, computedDevicePath.length() - 1); String serialMinusChar = serial.substring(0, serial.length() - 1); - if (computedDevicePath.equals(serial) || computedDevicePathMinusChar.equals(serialMinusChar)) { + if (computedDevicePath.equalsIgnoreCase(serial) || computedDevicePathMinusChar.equalsIgnoreCase(serialMinusChar)) { return (device.get(VID) + "_" + device.get(PID)).toUpperCase(); } } - device = new HashMap(); + device = new HashMap<>(); } } diff --git a/build/Bridge-1.0.7.zip.sha b/build/Bridge-1.0.7.zip.sha deleted file mode 100644 index e830ce9c5..000000000 --- a/build/Bridge-1.0.7.zip.sha +++ /dev/null @@ -1 +0,0 @@ -bd9f9ddb27f14acd9d300bfe7e3bf9c33b81ae22 diff --git a/build/Bridge-1.1.0.zip.sha b/build/Bridge-1.1.0.zip.sha new file mode 100644 index 000000000..c02596712 --- /dev/null +++ b/build/Bridge-1.1.0.zip.sha @@ -0,0 +1 @@ +cedc2a161b7ec2977f5311ff1f98b1f834ec5b3f diff --git a/build/Keyboard-1.0.0.zip.sha b/build/Keyboard-1.0.0.zip.sha new file mode 100644 index 000000000..828d2a889 --- /dev/null +++ b/build/Keyboard-1.0.0.zip.sha @@ -0,0 +1 @@ +175879b1f0cbc982756c083b8dbdebee38ed8dcb diff --git a/build/Mouse-1.0.0.zip.sha b/build/Mouse-1.0.0.zip.sha new file mode 100644 index 000000000..1af8e2fcf --- /dev/null +++ b/build/Mouse-1.0.0.zip.sha @@ -0,0 +1 @@ +55a186583f272b19646bd88d0ef5439b1b533568 diff --git a/build/Temboo-1.1.3.zip.sha b/build/Temboo-1.1.3.zip.sha deleted file mode 100644 index c339d6a27..000000000 --- a/build/Temboo-1.1.3.zip.sha +++ /dev/null @@ -1 +0,0 @@ -4af55b713e318f534f524b8ad239c1ca2419deaa diff --git a/build/Temboo-1.1.4.zip.sha b/build/Temboo-1.1.4.zip.sha new file mode 100644 index 000000000..667891805 --- /dev/null +++ b/build/Temboo-1.1.4.zip.sha @@ -0,0 +1 @@ +3d847f79cbb913ea1a65239ca458b3eddc1d12ac diff --git a/build/arduino-builder-linux32-1.0.0-beta22.tar.bz2.sha b/build/arduino-builder-linux32-1.0.0-beta22.tar.bz2.sha deleted file mode 100644 index b43179c7d..000000000 --- a/build/arduino-builder-linux32-1.0.0-beta22.tar.bz2.sha +++ /dev/null @@ -1 +0,0 @@ -b7bb169b0948f64eba04677464c46fccce0f4634 diff --git a/build/arduino-builder-linux32-1.1.0.tar.bz2.sha b/build/arduino-builder-linux32-1.1.0.tar.bz2.sha new file mode 100644 index 000000000..7c31fd8e2 --- /dev/null +++ b/build/arduino-builder-linux32-1.1.0.tar.bz2.sha @@ -0,0 +1 @@ +c078c70b8e508ae2032c8b501b33c06ec41f42f4 diff --git a/build/arduino-builder-linux64-1.0.0-beta22.tar.bz2.sha b/build/arduino-builder-linux64-1.0.0-beta22.tar.bz2.sha deleted file mode 100644 index 5aab5741d..000000000 --- a/build/arduino-builder-linux64-1.0.0-beta22.tar.bz2.sha +++ /dev/null @@ -1 +0,0 @@ -8c1e4c07900129b42828ab2be70c3b477cebfb50 diff --git a/build/arduino-builder-linux64-1.1.0.tar.bz2.sha b/build/arduino-builder-linux64-1.1.0.tar.bz2.sha new file mode 100644 index 000000000..1b111b2af --- /dev/null +++ b/build/arduino-builder-linux64-1.1.0.tar.bz2.sha @@ -0,0 +1 @@ +8694992ad25af3c854b04ec2328326526d750668 diff --git a/build/arduino-builder-macosx-1.0.0-beta22.tar.bz2.sha b/build/arduino-builder-macosx-1.0.0-beta22.tar.bz2.sha deleted file mode 100644 index 3fe261fa7..000000000 --- a/build/arduino-builder-macosx-1.0.0-beta22.tar.bz2.sha +++ /dev/null @@ -1 +0,0 @@ -8aa7d8a1d3bf436aef6e603feecde8b07e75ab66 diff --git a/build/arduino-builder-macosx-1.1.0.tar.bz2.sha b/build/arduino-builder-macosx-1.1.0.tar.bz2.sha new file mode 100644 index 000000000..eb71f34d2 --- /dev/null +++ b/build/arduino-builder-macosx-1.1.0.tar.bz2.sha @@ -0,0 +1 @@ +fb02956c58ae74e9ab950a5d91899dcd27698cee diff --git a/build/arduino-builder-windows-1.0.0-beta22.zip.sha b/build/arduino-builder-windows-1.0.0-beta22.zip.sha deleted file mode 100644 index 7f6efefae..000000000 --- a/build/arduino-builder-windows-1.0.0-beta22.zip.sha +++ /dev/null @@ -1 +0,0 @@ -ab362a5198352e7488719b8793f73313f2c1d17b diff --git a/build/arduino-builder-windows-1.1.0.zip.sha b/build/arduino-builder-windows-1.1.0.zip.sha new file mode 100644 index 000000000..10d89633d --- /dev/null +++ b/build/arduino-builder-windows-1.1.0.zip.sha @@ -0,0 +1 @@ +046228469fbc6aeb847de4486761bf63e03585c2 diff --git a/build/build.xml b/build/build.xml index 7883f3164..32a783124 100644 --- a/build/build.xml +++ b/build/build.xml @@ -71,7 +71,7 @@ - + @@ -155,8 +155,8 @@ - - + + @@ -182,22 +182,19 @@ - - - - - - + - + - + + + @@ -329,7 +326,7 @@