diff --git a/.gitignore b/.gitignore new file mode 100644 index 000000000..8a4a63efc --- /dev/null +++ b/.gitignore @@ -0,0 +1,17 @@ +app/bin/ +app/pde.jar +build/macosx/work/ +core/bin/ +core/core.jar +hardware/arduino/bootloaders/caterina_LUFA/Descriptors.o +hardware/arduino/bootloaders/caterina_LUFA/Descriptors.lst +hardware/arduino/bootloaders/caterina_LUFA/Caterina.sym +hardware/arduino/bootloaders/caterina_LUFA/Caterina.o +hardware/arduino/bootloaders/caterina_LUFA/Caterina.map +hardware/arduino/bootloaders/caterina_LUFA/Caterina.lst +hardware/arduino/bootloaders/caterina_LUFA/Caterina.lss +hardware/arduino/bootloaders/caterina_LUFA/Caterina.elf +hardware/arduino/bootloaders/caterina_LUFA/Caterina.eep +hardware/arduino/bootloaders/caterina_LUFA/.dep/ +.gitignore +build/windows/work/ \ No newline at end of file diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index cbfc8811e..d57b594bc 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -32,6 +32,7 @@ import javax.swing.*; import processing.app.debug.TargetPackage; import processing.app.debug.TargetPlatform; +import processing.app.helpers.FileUtils; import processing.app.helpers.PreferencesMap; import processing.app.helpers.filefilters.OnlyDirs; import processing.app.helpers.filefilters.OnlyFilesWithExtension; @@ -46,9 +47,9 @@ import static processing.app.I18n._; * files and images, etc) that comes from that. */ public class Base { - public static final int REVISION = 100; + public static final int REVISION = 101; /** This might be replaced by main() if there's a lib/version.txt file. */ - static String VERSION_NAME = "0100"; + static String VERSION_NAME = "0101"; /** Set true if this a proper release rather than a numbered revision. */ static public boolean RELEASE = false; @@ -171,6 +172,9 @@ public class Base { // run static initialization that grabs all the prefs Preferences.init(null); + // load the I18n module for internationalization + I18n.init(Preferences.get("editor.languages.current")); + // setup the theme coloring fun Theme.init(); @@ -934,6 +938,21 @@ public class Base { public void rebuildImportMenu(JMenu importMenu) { importMenu.removeAll(); + // Split between user supplied libraries and IDE libraries + Map ideLibs = new HashMap(libraries); + Map userLibs = new HashMap(libraries); + for (String lib : libraries.keySet()) { + try { + if (FileUtils.isSubDirectory(getSketchbookFolder(), libraries.get(lib))) + ideLibs.remove(lib); + else + userLibs.remove(lib); + } catch (IOException e) { + ideLibs.remove(lib); + userLibs.remove(lib); + } + } + try { // Find the current target. Get the platform, and then select the // correct name and core path. @@ -944,7 +963,9 @@ public class Base { platformItem.setEnabled(false); importMenu.add(platformItem); importMenu.addSeparator(); - addLibraries(importMenu, libraries); + addLibraries(importMenu, ideLibs); + importMenu.addSeparator(); + addLibraries(importMenu, userLibs); } catch (IOException e) { e.printStackTrace(); } @@ -1014,7 +1035,7 @@ public class Base { // Scan for libraries in each library folder. // Libraries located in the latest folders on the list can override - // other libraries with the same. + // other libraries with the same name. libraries = scanLibraries(librariesFolders); // Populate importToLibraryTable @@ -1206,7 +1227,7 @@ public class Base { return found; } - protected boolean addLibraries(JMenu menu, Map libs) throws IOException { + protected void addLibraries(JMenu menu, Map libs) throws IOException { List list = new ArrayList(libs.keySet()); Collections.sort(list, String.CASE_INSENSITIVE_ORDER); @@ -1217,8 +1238,6 @@ public class Base { } }; - boolean found = false; - for (String name : list) { File folder = libs.get(name); @@ -1227,11 +1246,9 @@ public class Base { item.addActionListener(listener); item.setActionCommand(folder.getAbsolutePath()); menu.add(item); - found = true; // XXX: DAM: should recurse here so that library folders can be nested } - return found; } /** @@ -1535,12 +1552,12 @@ public class Base { static public String getAvrBasePath() { - if(Base.isLinux()) { - return ""; // avr tools are installed system-wide and in the path - } else { - return getHardwarePath() + File.separator + "tools" + - File.separator + "avr" + File.separator + "bin" + File.separator; - } + String path = getHardwarePath() + File.separator + "tools" + + File.separator + "avr" + File.separator + "bin" + File.separator; + if (Base.isLinux() && !(new File(path)).exists()) { + return ""; // use distribution provided avr tools if bundled tools missing + } + return path; } diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index d17727299..07c821956 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -264,7 +264,9 @@ public class Editor extends JFrame implements RunnerListener { splitPane.setDividerSize(dividerSize); } - splitPane.setMinimumSize(new Dimension(600, 400)); + // the following changed from 600, 400 for netbooks + // http://code.google.com/p/arduino/issues/detail?id=52 + splitPane.setMinimumSize(new Dimension(600, 100)); box.add(splitPane); // hopefully these are no longer needed w/ swing @@ -288,19 +290,9 @@ public class Editor extends JFrame implements RunnerListener { setPlacement(location); - // If the window is resized too small this will resize it again to the - // minimums. Adapted by Chris Lonnen from comments here: - // http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4320050 - // as a fix for http://dev.processing.org/bugs/show_bug.cgi?id=25 - final int minW = Preferences.getInteger("editor.window.width.min"); - final int minH = Preferences.getInteger("editor.window.height.min"); - addComponentListener(new java.awt.event.ComponentAdapter() { - public void componentResized(ComponentEvent event) { - setSize((getWidth() < minW) ? minW : getWidth(), - (getHeight() < minH) ? minH : getHeight()); - } - }); - + // Set the minimum size for the editor window + setMinimumSize(new Dimension(Preferences.getInteger("editor.window.width.min"), + Preferences.getInteger("editor.window.height.min"))); // System.out.println("t3"); // Bring back the general options for the editor @@ -1135,7 +1127,11 @@ public class Editor extends JFrame implements RunnerListener { undoItem.addActionListener(undoAction = new UndoAction()); menu.add(undoItem); - redoItem = newJMenuItem(_("Redo"), 'Y'); + if (!Base.isMacOS()) { + redoItem = newJMenuItem(_("Redo"), 'Y'); + } else { + redoItem = newJMenuItemShift(_("Redo"), 'Z'); + } redoItem.addActionListener(redoAction = new RedoAction()); menu.add(redoItem); @@ -1247,14 +1243,33 @@ public class Editor extends JFrame implements RunnerListener { item.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { if (find != null) { - //find.find(true); - //FindReplace find = new FindReplace(Editor.this); //.show(); - find.find(true); + find.findNext(); } } }); menu.add(item); + item = newJMenuItemShift(_("Find Previous"), 'G'); + item.addActionListener(new ActionListener() { + public void actionPerformed(ActionEvent e) { + if (find != null) { + find.findPrevious(); + } + } + }); + menu.add(item); + + item = newJMenuItem(_("Use Selection For Find"), 'E'); + item.addActionListener(new ActionListener() { + public void actionPerformed(ActionEvent e) { + if (find == null) { + find = new FindReplace(Editor.this); + } + find.setFindText( getSelectedText() ); + } + }); + menu.add(item); + return menu; } diff --git a/app/src/processing/app/EditorListener.java b/app/src/processing/app/EditorListener.java index 58c3fc9a1..12806b4ce 100644 --- a/app/src/processing/app/EditorListener.java +++ b/app/src/processing/app/EditorListener.java @@ -122,6 +122,14 @@ public class EditorListener { } } + if ((event.getModifiers() & KeyEvent.CTRL_MASK) != 0) { + // Consume ctrl-m(carriage return) keypresses + if (code == KeyEvent.VK_M) { + event.consume(); // does nothing + return false; + } + } + if ((event.getModifiers() & KeyEvent.META_MASK) != 0) { //event.consume(); // does nothing return false; diff --git a/app/src/processing/app/FindReplace.java b/app/src/processing/app/FindReplace.java index 95ae7e7cd..a8b79352d 100644 --- a/app/src/processing/app/FindReplace.java +++ b/app/src/processing/app/FindReplace.java @@ -46,8 +46,9 @@ import javax.swing.*; */ public class FindReplace extends JFrame implements ActionListener { - static final int BIG = 13; + static final int EDGE = Base.isMacOS() ? 20 : 13; static final int SMALL = 6; + static final int BUTTONGAP = 12; // 12 is correct for Mac, other numbers may be required for other platofrms Editor editor; @@ -59,14 +60,14 @@ public class FindReplace extends JFrame implements ActionListener { JButton replaceButton; JButton replaceAllButton; JButton replaceFindButton; + JButton previousButton; JButton findButton; JCheckBox ignoreCaseBox; static boolean ignoreCase = true; - /// true when there's something selected in the editor - boolean found; - + JCheckBox wrapAroundBox; + static boolean wrapAround = true; public FindReplace(Editor editor) { super("Find"); @@ -77,23 +78,66 @@ public class FindReplace extends JFrame implements ActionListener { pain.setLayout(null); JLabel findLabel = new JLabel(_("Find:")); - Dimension d0 = findLabel.getPreferredSize(); JLabel replaceLabel = new JLabel(_("Replace with:")); - Dimension d1 = replaceLabel.getPreferredSize(); + Dimension labelDimension = replaceLabel.getPreferredSize(); pain.add(findLabel); pain.add(replaceLabel); pain.add(findField = new JTextField(20)); pain.add(replaceField = new JTextField(20)); - Dimension d2 = findField.getPreferredSize(); + int fieldHeight = findField.getPreferredSize().height; if (findString != null) findField.setText(findString); if (replaceString != null) replaceField.setText(replaceString); //System.out.println("setting find str to " + findString); //findField.requestFocusInWindow(); - //pain.setDefault + ignoreCaseBox = new JCheckBox(_("Ignore Case")); + ignoreCaseBox.addActionListener(new ActionListener() { + public void actionPerformed(ActionEvent e) { + ignoreCase = ignoreCaseBox.isSelected(); + } + }); + ignoreCaseBox.setSelected(ignoreCase); + pain.add(ignoreCaseBox); + + wrapAroundBox = new JCheckBox(_("Wrap Around")); + wrapAroundBox.addActionListener(new ActionListener() { + public void actionPerformed(ActionEvent e) { + wrapAround = wrapAroundBox.isSelected(); + } + }); + wrapAroundBox.setSelected(wrapAround); + pain.add(wrapAroundBox); + + JPanel buttons = new JPanel(); + + buttons.setLayout(new FlowLayout(FlowLayout.CENTER,BUTTONGAP,0)); + + // ordering is different on mac versus pc + if (Base.isMacOS()) { + buttons.add(replaceAllButton = new JButton(_("Replace All"))); + buttons.add(replaceButton = new JButton(_("Replace"))); + buttons.add(replaceFindButton = new JButton(_("Replace & Find"))); + buttons.add(previousButton = new JButton(_("Previous"))); + buttons.add(findButton = new JButton(_("Find"))); + + } else { + buttons.add(findButton = new JButton(_("Find"))); + buttons.add(previousButton = new JButton(_("Previous"))); // is this the right position for non-Mac? + buttons.add(replaceFindButton = new JButton(_("Replace & Find"))); + buttons.add(replaceButton = new JButton(_("Replace"))); + buttons.add(replaceAllButton = new JButton(_("Replace All"))); + } + pain.add(buttons); + + // to fix ugliness.. normally macosx java 1.3 puts an + // ugly white border around this object, so turn it off. + if (Base.isMacOS()) { + buttons.setBorder(null); + } + /* findField.addFocusListener(new FocusListener() { public void focusGained(FocusEvent e) { @@ -109,92 +153,74 @@ public class FindReplace extends JFrame implements ActionListener { }); */ - // +1 since it's better to tend downwards - int yoff = (1 + d2.height - d1.height) / 2; + Dimension buttonsDimension = buttons.getPreferredSize(); + int visibleButtonWidth = buttonsDimension.width - 2 * BUTTONGAP; + int fieldWidth = visibleButtonWidth - (labelDimension.width + SMALL); - findLabel.setBounds(BIG + (d1.width-d0.width) + yoff, BIG, - d1.width, d1.height); - replaceLabel.setBounds(BIG, BIG + d2.height + SMALL + yoff, - d1.width, d1.height); + // +1 since it's better to tend downwards + int yoff = (1 + fieldHeight - labelDimension.height) / 2; - //ignoreCase = true; - ignoreCaseBox = new JCheckBox(_("Ignore Case")); - ignoreCaseBox.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - ignoreCase = ignoreCaseBox.isSelected(); - } - }); - ignoreCaseBox.setSelected(ignoreCase); - pain.add(ignoreCaseBox); + int ypos = EDGE; + + int labelWidth = findLabel.getPreferredSize().width; + findLabel.setBounds(EDGE + (labelDimension.width-labelWidth), ypos + yoff, // + yoff was added to the wrong field + labelWidth, labelDimension.height); + findField.setBounds(EDGE + labelDimension.width + SMALL, ypos, + fieldWidth, fieldHeight); + + ypos += fieldHeight + SMALL; + + labelWidth = replaceLabel.getPreferredSize().width; + replaceLabel.setBounds(EDGE + (labelDimension.width-labelWidth), ypos + yoff, + labelWidth, labelDimension.height); + replaceField.setBounds(EDGE + labelDimension.width + SMALL, ypos, + fieldWidth, fieldHeight); - // + ypos += fieldHeight + SMALL; - JPanel buttons = new JPanel(); - buttons.setLayout(new FlowLayout()); + ignoreCaseBox.setBounds(EDGE + labelDimension.width + SMALL, + ypos, + (fieldWidth-SMALL)/2, fieldHeight); - // ordering is different on mac versus pc - if (Base.isMacOS()) { - buttons.add(replaceAllButton = new JButton(_("Replace All"))); - buttons.add(replaceButton = new JButton(_("Replace"))); - buttons.add(replaceFindButton = new JButton(_("Replace & Find"))); - buttons.add(findButton = new JButton(_("Find"))); + wrapAroundBox.setBounds(EDGE + labelDimension.width + SMALL + (fieldWidth-SMALL)/2 + SMALL, + ypos, + (fieldWidth-SMALL)/2, fieldHeight); - } else { - buttons.add(findButton = new JButton(_("Find"))); - buttons.add(replaceFindButton = new JButton(_("Replace & Find"))); - buttons.add(replaceButton = new JButton(_("Replace"))); - buttons.add(replaceAllButton = new JButton(_("Replace All"))); - } - pain.add(buttons); + ypos += fieldHeight + SMALL; - // to fix ugliness.. normally macosx java 1.3 puts an - // ugly white border around this object, so turn it off. - if (Base.isMacOS()) { - buttons.setBorder(null); - } + buttons.setBounds(EDGE-BUTTONGAP, ypos, + buttonsDimension.width, buttonsDimension.height); - Dimension d3 = buttons.getPreferredSize(); - //buttons.setBounds(BIG, BIG + d2.height*2 + SMALL + BIG, - buttons.setBounds(BIG, BIG + d2.height*3 + SMALL*2 + BIG, - d3.width, d3.height); + ypos += buttonsDimension.height + EDGE; - // +// Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - findField.setBounds(BIG + d1.width + SMALL, BIG, - d3.width - (d1.width + SMALL), d2.height); - replaceField.setBounds(BIG + d1.width + SMALL, BIG + d2.height + SMALL, - d3.width - (d1.width + SMALL), d2.height); + int wide = visibleButtonWidth + EDGE*2; + int high = ypos; // butt.y + butt.height + EDGE*2 + SMALL; - ignoreCaseBox.setBounds(BIG + d1.width + SMALL, - BIG + d2.height*2 + SMALL*2, - d3.width, d2.height); + pack(); + Insets insets = getInsets(); + //System.out.println("Insets = " + insets); + setSize(wide + insets.left + insets.right,high + insets.top + insets.bottom); - // + setLocationRelativeTo( null ); // center + // setBounds((screen.width - wide) / 2, (screen.height - high) / 2, wide, high); replaceButton.addActionListener(this); replaceAllButton.addActionListener(this); replaceFindButton.addActionListener(this); findButton.addActionListener(this); + previousButton.addActionListener(this); // you mustn't replace what you haven't found, my son - replaceButton.setEnabled(false); - replaceFindButton.setEnabled(false); - - // so that typing will go straight to this field - //findField.requestFocus(); + // semantics of replace are "replace the current selection with the replace field" + // so whether we have found before or not is irrelevent + // replaceButton.setEnabled(false); + // replaceFindButton.setEnabled(false); // make the find button the blinky default getRootPane().setDefaultButton(findButton); - Dimension screen = Toolkit.getDefaultToolkit().getScreenSize(); - - int wide = d3.width + BIG*2; - Rectangle butt = buttons.getBounds(); // how big is your butt? - int high = butt.y + butt.height + BIG*2 + SMALL; - - setBounds((screen.width - wide) / 2, - (screen.height - high) / 2, wide, high); - setDefaultCloseOperation(WindowConstants.DO_NOTHING_ON_CLOSE); addWindowListener(new WindowAdapter() { public void windowClosing(WindowEvent e) { @@ -245,11 +271,13 @@ public class FindReplace extends JFrame implements ActionListener { Object source = e.getSource(); if (source == findButton) { - find(true); + findNext(); + + } else if (source == previousButton) { + findPrevious(); } else if (source == replaceFindButton) { - replace(); - find(true); + replaceAndFindNext(); } else if (source == replaceButton) { replace(); @@ -260,50 +288,54 @@ public class FindReplace extends JFrame implements ActionListener { } - // look for the next instance of the find string - // to be found later than the current caret selection - + // look for the next instance of the find string to be found // once found, select it (and go to that line) - public void find(boolean wrap) { - // in case search len is zero, - // otherwise replace all will go into an infinite loop - found = false; + private boolean find(boolean wrap,boolean backwards ) { String search = findField.getText(); //System.out.println("finding for " + search + " " + findString); // this will catch "find next" being called when no search yet - if (search.length() == 0) return; + if (search.length() == 0) return false; String text = editor.getText(); if (ignoreCase) { - search = search.toLowerCase(); + search = search.toLowerCase(); text = text.toLowerCase(); } - //int selectionStart = editor.textarea.getSelectionStart(); - int selectionEnd = editor.getSelectionStop(); + int nextIndex; + if (!backwards) { + //int selectionStart = editor.textarea.getSelectionStart(); + int selectionEnd = editor.getSelectionStop(); - int nextIndex = text.indexOf(search, selectionEnd); - if (nextIndex == -1) { - if (wrap) { + nextIndex = text.indexOf(search, selectionEnd); + if (wrap && nextIndex == -1) { // if wrapping, a second chance is ok, start from beginning nextIndex = text.indexOf(search, 0); } + } else { + //int selectionStart = editor.textarea.getSelectionStart(); + int selectionStart = editor.getSelectionStart()-1; - if (nextIndex == -1) { - found = false; - replaceButton.setEnabled(false); - replaceFindButton.setEnabled(false); - //Toolkit.getDefaultToolkit().beep(); - return; + if ( selectionStart >= 0 ) { + nextIndex = text.lastIndexOf(search, selectionStart); + } else { + nextIndex = -1; + } + if (wrap && nextIndex == -1) { + // if wrapping, a second chance is ok, start from the end + nextIndex = text.lastIndexOf(search); } } - found = true; - replaceButton.setEnabled(true); - replaceFindButton.setEnabled(true); - editor.setSelection(nextIndex, nextIndex + search.length()); + + if (nextIndex != -1) { + editor.setSelection(nextIndex, nextIndex + search.length()); + } else { + //Toolkit.getDefaultToolkit().beep(); + } + return nextIndex != -1; } @@ -312,28 +344,18 @@ public class FindReplace extends JFrame implements ActionListener { * replacement text field. */ public void replace() { - if (!found) return; // don't replace if nothing found - - // check to see if the document has wrapped around - // otherwise this will cause an infinite loop - String sel = editor.getSelectedText(); - if (sel.equals(replaceField.getText())) { - found = false; - replaceButton.setEnabled(false); - replaceFindButton.setEnabled(false); - return; - } - editor.setSelectedText(replaceField.getText()); - //editor.setSketchModified(true); - //editor.sketch.setCurrentModified(true); editor.getSketch().setModified(true); // TODO is this necessary? - - // don't allow a double replace - replaceButton.setEnabled(false); - replaceFindButton.setEnabled(false); } + /** + * Replace the current selection with whatever's in the + * replacement text field, and then find the next match + */ + public void replaceAndFindNext() { + replace(); + findNext(); + } /** * Replace everything that matches by doing find and replace @@ -343,9 +365,35 @@ public class FindReplace extends JFrame implements ActionListener { // move to the beginning editor.setSelection(0, 0); - do { - find(false); - replace(); - } while (found); + boolean foundAtLeastOne = false; + while ( true ) { + if ( find(false,false) ) { + foundAtLeastOne = true; + replace(); + } else { + break; + } + } + if ( !foundAtLeastOne ) { + Toolkit.getDefaultToolkit().beep(); + } } + + public void setFindText( String t ) { + findField.setText( t ); + findString = t; + } + + public void findNext() { + if ( !find( wrapAround, false ) ) { + Toolkit.getDefaultToolkit().beep(); + } + } + + public void findPrevious() { + if ( !find( wrapAround, true ) ) { + Toolkit.getDefaultToolkit().beep(); + } + } + } diff --git a/app/src/processing/app/I18n.java b/app/src/processing/app/I18n.java index 0e3396a27..5a61fb3d7 100644 --- a/app/src/processing/app/I18n.java +++ b/app/src/processing/app/I18n.java @@ -12,11 +12,25 @@ */ package processing.app; + import java.util.*; +import java.util.Locale.*; import java.text.MessageFormat; public class I18n { + // start using current locale but still allow using the dropdown list later private static ResourceBundle i18n = ResourceBundle.getBundle("processing.app.Resources"); + public static Locale locale; + + static protected void init (String language) { + // there might be a null pointer exception ... most likely will never happen but the jvm gets mad + try { + if (language == null || language.trim().length() == 0) locale = Locale.getDefault(); + else locale = new Locale(language); + i18n = ResourceBundle.getBundle("processing.app.Resources", locale); + } catch (java.lang.NullPointerException e) { + } + } public static String _(String s) { try { diff --git a/app/src/processing/app/Preferences.java b/app/src/processing/app/Preferences.java index 8d61ec7ea..640cb2e1f 100644 --- a/app/src/processing/app/Preferences.java +++ b/app/src/processing/app/Preferences.java @@ -80,6 +80,75 @@ public class Preferences { static final String PROMPT_OK = _("OK"); static final String PROMPT_BROWSE = _("Browse"); + String[] languages = { + _("System Default"), + "العربية" + " (" + _("Arabic") + ")", + "Aragonés" + " (" + _("Aragonese") + ")", + "Català" + " (" + _("Catalan") + ")", + "简体中文" + " (" + _("Chinese Simplified") + ")", + "繁體中文" + " (" + _("Chinese Traditional") + ")", + "Dansk" + " (" + _("Danish") + ")", + "Nederlands" + " (" + _("Dutch") + ")", + "English" + " (" + _("English") + ")", + "Eesti" + " (" + _("Estonian") + ")", + "Pilipino" + " (" + _("Filipino") + ")", + "Français" + " (" + _("French") + ")", + "Galego" + " (" + _("Galician") + ")", + "Deutsch" + " (" + _("German") + ")", + "ελληνικά" + " (" + _("Greek") + ")", + "Magyar" + " (" + _("Hindi") + ")", + "Magyar" + " (" + _("Hungarian") + ")", + "Bahasa Indonesia" + " (" + _("Indonesian") + ")", + "Italiano" + " (" + _("Italian") + ")", + "日本語" + " (" + _("Japanese") + ")", + "한국어" + " (" + _("Korean") + ")", + "Latviešu" + " (" + _("Latvian") + ")", + "Lietuvių Kalba" + " (" + _("Lithuaninan") + ")", + "मराठी" + " (" + _("Marathi") + ")", + "Norsk" + " (" + _("Norwegian") + ")", + "فارسی" + " (" + _("Persian") + ")", + "Język Polski" + " (" + _("Polish") + ")", + "Português" + " (" + _("Portuguese") + " - Brazil)", + "Português" + " (" + _("Portuguese") + " - Portugal)", + "Română" + " (" + _("Romanian") + ")", + "Русский" + " (" + _("Russian") + ")", + "Español" + " (" + _("Spanish") + ")", + "தமிழ்" + " (" + _("Tamil") + ")"}; + String[] languagesISO = { + "", + "ar", + "an", + "ca", + "zh_cn", + "zh_tw", + "da", + "nl", + "en", + "et", + "tl", + "fr", + "gl", + "de", + "el", + "hi", + "hu", + "id", + "it", + "ja", + "ko", + "lv", + "lt", + "mr", + "no_nb", + "fa", + "pl", + "pt_br", + "pt_pt", + "ro", + "ru", + "es", + "ta"}; + /** * Standardized width for buttons. Mac OS X 10.3 wants 70 as its default, * Windows XP needs 66, and my Ubuntu machine needs 80+, so 80 seems proper. @@ -117,6 +186,7 @@ public class Preferences { JCheckBox exportSeparateBox; JCheckBox verboseCompilationBox; JCheckBox verboseUploadBox; + JCheckBox verifyUploadBox; JCheckBox externalEditorBox; JCheckBox memoryOverrideBox; JTextField memoryField; @@ -124,6 +194,7 @@ public class Preferences { JTextField fontSizeField; JCheckBox updateExtensionBox; JCheckBox autoAssociateBox; + JComboBox comboLanguage; // the calling editor, so updates can be applied @@ -151,10 +222,9 @@ public class Preferences { // set some runtime constants (not saved on preferences file) table.put("runtime.os", PConstants.platformNames[PApplet.platform]); - String idePath = System.getProperty("user.dir"); - if (Base.isMacOS()) - idePath += "/Arduino.app/Contents/Resources/Java"; - table.put("runtime.ide.path", idePath); + File hardwareFolder = Base.getHardwareFolder(); + table.put("runtime.hardware.path", hardwareFolder.getAbsolutePath()); + table.put("runtime.ide.path", hardwareFolder.getParentFile().getAbsolutePath()); table.put("runtime.ide.version", "" + Base.REVISION); // check for platform-specific properties in the defaults @@ -278,9 +348,25 @@ public class Preferences { top += vmax + GUI_BETWEEN; + // Preferred language: [ ] (requires restart of Arduino) + Container box = Box.createHorizontalBox(); + label = new JLabel(_("Editor language: ")); + box.add(label); + comboLanguage = new JComboBox(languages); + comboLanguage.setSelectedIndex((Arrays.asList(languagesISO)).indexOf(Preferences.get("editor.languages.current"))); + box.add(comboLanguage); + label = new JLabel(_(" (requires restart of Arduino)")); + box.add(label); + pain.add(box); + d = box.getPreferredSize(); + box.setForeground(Color.gray); + box.setBounds(left, top, d.width, d.height); + right = Math.max(right, left + d.width); + top += d.height + GUI_BETWEEN; + // Editor font size [ ] - Container box = Box.createHorizontalBox(); + box = Box.createHorizontalBox(); label = new JLabel(_("Editor font size: ")); box.add(label); fontSizeField = new JTextField(4); @@ -308,8 +394,16 @@ public class Preferences { d = box.getPreferredSize(); box.setBounds(left, top, d.width, d.height); top += d.height + GUI_BETWEEN; - + // [ ] Verify code after upload + + verifyUploadBox = new JCheckBox(_("Verify code after upload")); + pain.add(verifyUploadBox); + d = verifyUploadBox.getPreferredSize(); + verifyUploadBox.setBounds(left, top, d.width + 10, d.height); + right = Math.max(right, left + d.width); + top += d.height + GUI_BETWEEN; + // [ ] Use external editor externalEditorBox = new JCheckBox(_("Use external editor")); @@ -350,7 +444,6 @@ public class Preferences { top += d.height + GUI_BETWEEN; } - // More preferences are in the ... label = new JLabel(_("More preferences can be edited directly in the file")); @@ -491,7 +584,8 @@ public class Preferences { // put each of the settings into the table setBoolean("build.verbose", verboseCompilationBox.isSelected()); setBoolean("upload.verbose", verboseUploadBox.isSelected()); - + setBoolean("upload.verify", verifyUploadBox.isSelected()); + // setBoolean("sketchbook.closing_last_window_quits", // closingLastQuitsBox.isSelected()); //setBoolean("sketchbook.prompt", sketchPromptBox.isSelected()); @@ -538,6 +632,11 @@ public class Preferences { setBoolean("editor.update_extension", updateExtensionBox.isSelected()); + // adds the selected language to the preferences file + Object newItem = comboLanguage.getSelectedItem(); + int pos = (Arrays.asList(languages)).indexOf(newItem.toString()); // position in the languages array + set("editor.languages.current",(Arrays.asList(languagesISO)).get(pos)); + editor.applyPreferences(); } @@ -548,6 +647,7 @@ public class Preferences { // set all settings entry boxes to their actual status verboseCompilationBox.setSelected(getBoolean("build.verbose")); verboseUploadBox.setSelected(getBoolean("upload.verbose")); + verifyUploadBox.setSelected(getBoolean("upload.verify")); //closingLastQuitsBox. // setSelected(getBoolean("sketchbook.closing_last_window_quits")); diff --git a/app/src/processing/app/Resources_an.po b/app/src/processing/app/Resources_an.po new file mode 100644 index 000000000..1ab8382d0 --- /dev/null +++ b/app/src/processing/app/Resources_an.po @@ -0,0 +1,1674 @@ +# Aragonese translations for Arduino IDE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# Juan Pablo Martinez , 2012. +# Daniel Martinez , 2012. +msgid "" +msgstr "" +"Project-Id-Version: 1.0.1\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-03 07:48+0200\n" +"PO-Revision-Date: 2012-04-15 20:54+0200\n" +"Last-Translator: Juan Pablo Martínez Cortés \n" +"Language-Team: Softaragonés\n" +"Language: an\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.0\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "No s'ha adhibiu garra fichero en o sketch." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "S'ha adhibiu un fichero en o sketch." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "S'ha adhibiu {0} fichers en o sketch." + +#: Editor.java:484 +msgid "File" +msgstr "Fichero" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nuevo" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Ubrir..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Sketchbook" + +#: Editor.java:509 +msgid "Examples" +msgstr "Eixemplos" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Zarrar" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Alzar" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Alzar como..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Cargar" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Cargar fendo servir o programador" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Configuración d'a pachina" + +#: Editor.java:564 +msgid "Print" +msgstr "Imprentar" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferencias" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Salir" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verificar / Compilar" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importar Biblioteca..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Amostrar a Carpeta de sketch" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Adhibir un Fichero..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Ferramientas" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitor serie" + +#: Editor.java:682 +msgid "Board" +msgstr "Tarcheta" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Puerto serie" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programador" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Gravar o bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu ye null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "o nombre ye null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "error tot leyendo a lista de puertos" + +#: Editor.java:1002 +msgid "Help" +msgstr "Aduya" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Primers trangos" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Entorno" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Solución de problemas" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referencia" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Trobar en a referencia" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Preguntas freqüents" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Visitar Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Arredol d'Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Editar" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Desfer" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Refer" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Retallar" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Copiar" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copiar ta'l Foro" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Copiar como HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Apegar" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Seleccionar-lo tot" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Comentar/Descomentar " + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Incrementar o sangrau" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Reducir o sangrau" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Buscar..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Buscar o siguient" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Buscar l'anterior" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Fer servir a selección ta buscar-la" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "En primeras seleccione una parola ta buscar en a referencia." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "No i hai garra referencia disponible ta \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Compilando o sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "S'ha rematau a compilación." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Alzar os cambeos en \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Quiers " +"alzar os cambeos feitos a iste sketch
antes de zarrar?

Si no los " +"alzas, os cambeos se perderán." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Cancelar" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "No l'alces" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "O fichero seleccionau ye incorrecto" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing no puede ubrir que os suyos propios sketches\n" +"y atros fichers remataus en .ino u .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "Acceptar" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Ye menester que o fichero \"{0}\" se trobe endentro d'a \n" +"carpeta d'un sketch clamada \"{1}\".\n" +"Quiers creyar ista carpeta, mover iste fichero y continar?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Movendo" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Error" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Ya existe una carpeta clamada \"{0}\". No s'ha puesto ubrir o sketch." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "No s'ha puesto creyar a carpeta d'o sketch." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "No s'ha puesto copiar a una ubicación apropiada." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "No s'ha puesto creyar o sketch." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Se ye alzando..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "S'ha rematau l'alzau." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "S'ha cancelau l'alzau." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"No s'ha trobau o puerto serie {0}.\n" +"Quiers tornar a intentar a carga con belatro puerto serie?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Cargando ta la tarcheta I/O..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "S'ha rematau a carga." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "S'ha cancelau a carga." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Alzar os cambeos antes d'exportar?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "S'ha cancelau a exportación: en primeras has d'alzaus os cambeos." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "" +"Se ye gravando o bootloader en a tarcheta I/O (podría tardar un " +"minuto)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "S'ha rematau a gravación d'o bootloader." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "S'ha trobau una error en gravar o bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Se ye imprentando..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "S'ha rematau a impresión." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "S'ha trobau una error en imprentar." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "S'ha cancelau a impresión." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Linia d'error incorrecta: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Ubrir una URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Una nueva versión d'Arduino ye disponible,\n" +"Te fería goyo de visitar agora a pachina de descargas d'Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Sí" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "No" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Esviellar" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Buscar:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Reemplazar con:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignorar mayusclas y minusclas" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Embolicar" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Reemplazar-lo tot" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Reemplazar" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Reemplazar y Buscar" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Anterior" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Buscar" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Ninviar" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Desplazamiento automatico" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "No i ha garra fin de linia" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Linia nueva (NL)" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Retorno de Carro (CR)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Totz dos NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"O puerto serie ''{0}'' ya ye en uso. Mira de zarrar qualsiquier atro " +"programa que lo podese estar usando." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "S'ha trobau una error en ubrir o puerto serie ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"No s'ha trobau o puerto serie ''{0}''. Yes seguro que trigués o correcto en " +"o menú Ferramientas > Puerto Serie?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"O buffer de bytes readBytesUntil() ye masiau chicot ta os {0} bytes dica y " +"incluindo-ie o char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "S'ha trobau una error en Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Formato automatico" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "No s'amenista garra cambeo ta o formato automatico." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "S'ha cancelau o formato automatico: masiaus parentesis dreitos." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "S'ha cancelau o formato automatico: masiaus parentesis cuchos." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "S'ha cancelau o formato automatico: masiaus gafetz dreitos." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "S'ha cancelau o formato automatico: masiaus gafetz cuchos." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "S'ha rematau o formato automatico." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Reparar a Codificación y Recargar" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Descartar totz os cambeos y recargar o sketch?" + +#: 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 "" +"Ha ocurriu una error entre que se miraba d'apanyar a codificación d'o\n" +"fichero. No intentes alzar iste sketch porque puede sobrescribir a versión\n" +"anterior. Utiliza Ubrir ta reabrir o sketch y intenta de nuevo.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Archivar o sketch" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "No s'ha puesto archivar o sketch" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"S'ha cancelau l'archivo d'o sketch porque\n" +"o sketch no s'ha puesto alzar correctament." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Archivar o sketch como:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "S'ha cancelau l'archivo d'o sketch." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Error entre que se cargaba o codigo {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" contiene caracters incorrectos. Si iste codigo se creyó con una " +"versión anterior de Processing, talment te calga usar Ferramientas -> " +"Correchir Codificación y Recargar ta esviellar o sketch a codificación " +"UTF-8. Si no, talment te calga borrar os caracters incorrectos ta desfer-te " +"d'ista alvertencia." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "O sketch ye nomás de lectura" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Qualques fichers son marcaus como \"nomás de lectura\",\n" +"asinas que amenesterás tornar a alzar iste sketch en unatra ubicación, y \n" +"intentar-lo de nuevas." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nombre d'o nuevo fichero:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "O sketch no tiene nombre" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Qué te pareixe d'alzar en primeras o sketch \n" +"antes de mirar de renombrar-lo?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "S'ha trobau un problema en renombrar" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "O nombre no puede empecipiar con un punto." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" no ye una extensión valida." + +#: Sketch.java:378 +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 "" +"O fichero prencipal no puede fer servir una extensión.\n" +"(Talment siga ya hora de que pases ta un\n" +"entorno de desembolique \"real\")" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Nop" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Ya existe un fichero clamau \"{0}\" en \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "No puetz tener un fichero .cpp con o mesmo nombre que o sketch." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"No puetz renombrar o sketch como \"{0}\"\n" +"porque o sketch ya tiene un fichero .cpp con ixe nombre" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "No se puede renombrar" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Ya existe un sketch (u carpeta) clamau \"{0}\"." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "No s'ha puesto renombrar o sketch. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "No s'ha puesto renombrar \"{0}\" como \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "No s'ha puesto renombrar o sketch. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "No s'ha puesto renombrar o sketch. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() ha retornau a valura \"false\"" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Yes seguro que quiers borrar iste sketch?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Yes seguro que quiers borrar \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Borrar" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "No s'ha puesto fer" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "No s'ha puesto borrar \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: error interna... no s'ha puesto trobar o codigo" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "O sketch ye nomás de lectura" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Qualques fichers son marcaus como \"nomás de lectura\",\n" +"asinas que te caldrá tornar a alzar iste sketch en belatro puesto." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"En Arduino 1.0, a extensión por defecto ha cambiau\n" +"de .pde ta .ino. Os nuevos sketches (incluindo-ie os creyaus con\n" +"\"Alzar como\" ferán servir a nueva extensión. A extensión\n" +"d'os sketches ya existents s'esviellará en alzar, pero isto\n" +"puede deshabilitar-se en o dialogo de Preferencias\n" +"\n" +"Alzar o sketch y esviellar a extensión?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Alzar a carpeta de sketch como..." + +#: Sketch.java:865 +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 sketch como \"{0}\"\n" +"porque o sketch ya tiene un fichero .cpp con ixe nombre." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Que en yes de Borges tu!" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"No puetz alzar o sketch en una carpeta\n" +"adentro d'ell mesmo. Isto podría seguir ta cutio." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Selecciona una imachen u belatro fichero de datos ta copiar en o sketch" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Reemplazar a versión existent de {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "S'ha trobau una error en adhibir o fichero" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "No s'ha puesto borrar o fichero existent ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "No me puetz enganyuflar" + +#: Sketch.java:1079 +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 "" +"Iste fichero ya s'ha copiau en o puesto\n" +"dende o qual ye mirando d'adhibir-lo.\n" +"No'n feré cosa." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "No s'ha puesto adhibir ''{0}'' a lo sketch." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "A carpeta de construcción ha despareixiu u no s'ha puesto escribir" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "No s'ha puesto trobar a clase main" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "S'ha trobau una excepción no apercazada de tipo: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "S'ha trobau un problema movendo {0} ta la carpeta de construcción" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Cargando..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Grandaria binaria d'o sketch: {0} bytes (d'un maximo de {1} bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "No s'ha puesto determinar a grandaria d'o programa: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"O sketch ye masiau gran; leye-te " +"http://www.arduino.cc/en/Guide/Troubleshooting#size ta trobar consellos de " +"cómo reducir-lo." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Falta o */ a la fin d'un /* comentario */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "O sketch ha desapareixiu" + +#: Sketch.java:1797 +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 "" +"A carpeta de sketches ha desapareixiu.\n" +" Se mirará de tornar a alzar-la en o mesmo puesto,\n" +"pero tot, fueras d'o codigo, se perderá." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "No s'ha puesto tornar a alzar o sketch" + +#: Sketch.java:1811 +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 "" +"No s'ha puesto tornar a alzar o sketch adequadament. Talment tiengas \n" +"problemas en iste punto, y siga hora de copiar y apegar o tuyo codigo en \n" +"belatro editor." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"O nombre d'o sketch s'ha habiu de modificar. Os nombres de sketch\n" +"no pueden tener que caracters ASCII y numeros (pero no pueden\n" +"empecipiar con un numero). A suya largaria ha d'estar menor a 64 caracters." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Error de compilación, por favor ninvia iste codigo a {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"o puerto serie seleccionau {0} no existe u a tuya tarcheta ye sin connectar" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"O dispositivo no responde, revisa que siga seleccionau o puerto serie u " +"REINICIA a tarcheta antes d'exportar" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Problema en puyar codigo ta la tarcheta. Mira-te " +"http://www.arduino.cc/en/Guide/Troubleshooting#upload ta trobar " +"sucherencias." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"S'ha trobau un Microcontrolador entivocau. Has trigau a tarcheta \n" +"correcta d'o menú Ferramientas > Tarcheta?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "" +"No i ha garra tarcheta seleccionada; por favor, triga una tarcheta d'o menú\n" +"Ferramientas > Tarcheta." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} ha retornau {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Error en compilar." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "" +"Por favor importa la biblioteca SPI fendo servir o menú\n" +"Sketch > Importar Biblioteca." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "A parola clau 'BYTE' ya no ye suportada." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Dende Arduino 1.0, a parola clau 'BYTE' ya no ye suportada.\n" +"Por favor fe servir Serial.write() en cuenta.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "A clase Server s'ha renombrau como EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Dende Arduino 1.0, a clase Server en a biblioteca Ethernet s'ha \n" +"renombrau como EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "A clase Client s'ha renombrau como EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Dende Arduino 1.0, a clase Client en a biblioteca Ethernet s'ha renombrau\n" +"como EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "A clase Udp s'ha renombrau como EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Dende Arduino 1.0, a clase Udp en a biblioteca Ethernet s'ha renombrau\n" +"como EthernetUdp.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() s'ha renombrau como Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Dende Arduino 1.0, a función Wire.send() s'ha renombrau como Wire.write() ta " +"mantener a consistencia con atras bibliotecas.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() s'ha renombrau como Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Dende Arduino 1.0, a función Wire.receive() s'ha renombrau como Wire.read() " +"ta mantener a consistencia con atras bibliotecas.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "S'ha trobau una error de consola" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"S'ha trobau un problema entre que se miraba d'ubrir o\n" +"fichero utilizau ta alzar o resultau d'a consola." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "S'ha trobau una error no fatal entre que se configuraba l'Apariencia." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "" +"O que sigue ye o mensache d'error, pero Arduino habría de continar\n" +"funcionando bien." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problema en configurar a Plataforma" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"S'ha trobau una error desconoixida entre que\n" +"se cargaba o codigo especifico ta la tuya plataforma." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Por favor instala o JDK 1.5 u posterior" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino requiere o JDK completo (no nomás o JRE)\n" +"ta funcionar. Por favor instala o JDK 1.5 u superior.\n" +"Podrás trobar mas información en a referencia." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "A carpeta sketchbook ha desapareixiu" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"A carpeta sketchbook ya no existe.\n" +"Arduino cambiará ta o puesto predeterminau\n" +"d'o sketchbook y creyará una nueva carpeta sketchbook\n" +"si ye menister. Dimpués, Arduino deixará de charrar d'ell mesmo\n" +"en tercera persona." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Hora de fer un descanso" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Por hue has plegau en o limite d'auto nombramiento de sketches nuevos\n" +"Qué tal si te fas una gambadeta?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Luz d'o sol" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "De verdat, ye hora que prengas un poquet d'aire fresco." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Ubrir un sketch d'Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Yes \n" +"seguro que quiers salir-ne?

Si zarras o zaguer sketch ubierto se " +"zarrará\n" +"Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribuiu" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Ixe sketch no existe" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"O sketch seleccionau ya no existe.\n" +"Ye posible que te calga reiniciar Arduino\n" +"ta esviellar o menú sketchbook." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"O sketch \"{0}\" no se puede fer servir.\n" +"Os nombres de sketch han de contener nomás letras basicas y numers\n" +"(Nomás ASCII sin espacios, y no puede empecipiar con un numero).\n" +"Ta desfer-te d'iste mensache, elimina o sketch de {1}.\n" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignorando sketch con nombre incorrecto" + +#: Base.java:1202 +#, java-format +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 "" +"A biblioteca \"{0}\" no se puede fer servir.\n" +"Os nombres de biblioteca han de contener nomás letras basicas y numers\n" +"(Nomás ASCII sin espacios y no puede empecipiar con un numero)." + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignorando o nombre incorrecto d'a biblioteca" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "S'ha trobau un problema en obtener a carpeta de datos" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "S'ha trobau una error en obtener a carpeta de datos d'Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Problemas de configuración" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino no puede executar porque no ha puesto\n" +"creyar una carpeta ta alzar a tuya configuración." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Has ixuplidau o tuyo sketchbook" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino no se puede executar porque no ha puesto\n" +"creyar una carpeta ta alzar o tuyo sketchbook." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Selecciona (u creya una nueva) carpeta ta sketches..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "S'ha trobau un problema en ubrir a URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"No s'ha puesto ubrir a URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problema en ubrir a carpeta" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"No s'ha puesto ubrir a carpeta\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "entorno" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Mensache" + +#: Base.java:1842 +msgid "Warning" +msgstr "Alvertencia" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "No s'ha puesto eliminar a versión anterior de {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "No s'ha puesto reemplazar {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "No s'ha puesto borrar {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nueva pestanya" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Renombrar" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Pestanya anterior" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Siguient pestanya" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verificar" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Ubrir" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nueva finestra d'editor" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Ubrir en unatra finestra" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "No i ha garra lanzador disponible" + +#: 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 "" +"No s'ha especificau a plataforma, u no i ha garra lanzador disponible.\n" +"Ta habilitar a obridura d'URLs u carpetas, adhibe una linia como \n" +"\"launcher=/rota/ta/app\" a o fichero preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"No s'ha puesto leyer a configuración d'esquema de color. \n" +"Te caldrá tornar a instalar Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Navegar" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Catalán" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Chinés Simplificau" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Danés" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Neerlandés" + +#: Preferences.java:91 +msgid "English" +msgstr "Anglés" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Francés" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipino" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Gallego" + +#: Preferences.java:96 +msgid "German" +msgstr "Alemán" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Griego" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Hongaro" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italián" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Chaponés" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Letón" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persa" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Rumán" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Espanyol" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"No s'ha puesto leyer a configuración predeterminada.\n" +"Te caldrá tornar a instalar Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "No s'ha puesto leyer as preferencias de {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Error en leyer as preferencias" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Error en leyer o fichero de preferencias. Por favor borra (u mueve)\n" +"{0} y reinicia Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Ubicación d'o sketchbook:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Selecciona a nueva ubicación d'o sketchbook" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (cal reiniciar Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Grandaria de tipo de letra ta l'editor: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Amostrar resultau detallau entre: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilación " + +#: Preferences.java:375 +msgid "upload" +msgstr "carga" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Verificar o codigo dimpués de cargar" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Fer servir un editor externo" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Verificar actualizacions en empecipiar" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "" +"Actualizar fichers de sketch a nueva extensión en alzar \n" +"(.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Asociar automaticament fichers .ino con Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Mas preferencias se pueden editar dreitament en o fichero" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(editar nomaś quan Arduino no se siga executando)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignorando a grandaria invalida d'o tipo de letra {0}" diff --git a/app/src/processing/app/Resources_an.properties b/app/src/processing/app/Resources_an.properties new file mode 100644 index 000000000..17d50192e --- /dev/null +++ b/app/src/processing/app/Resources_an.properties @@ -0,0 +1,1034 @@ +# Aragonese translations for Arduino IDE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# Juan Pablo Martinez , 2012. +# Daniel Martinez , 2012. +!=Project-Id-Version\: 1.0.1\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-03 07\:48+0200\nPO-Revision-Date\: 2012-04-15 20\:54+0200\nLast-Translator\: Juan Pablo Mart\u00ednez Cort\u00e9s \nLanguage-Team\: Softaragon\u00e9s\nLanguage\: an\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\nX-Generator\: Virtaal 0.7.0\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=No s'ha adhibiu garra fichero en o sketch. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=S'ha adhibiu un fichero en o sketch. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=S'ha adhibiu {0} fichers en o sketch. + +#: Editor.java:484 +File=Fichero + +#: Editor.java:486 EditorToolbar.java:41 +New=Nuevo + +#: Editor.java:494 Base.java:903 +Open...=Ubrir... + +#: Editor.java:503 +Sketchbook=Sketchbook + +#: Editor.java:509 +Examples=Eixemplos + +#: Editor.java:514 Editor.java:1977 +Close=Zarrar + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Alzar + +#: Editor.java:530 +Save\ As...=Alzar como... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Cargar + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Cargar fendo servir o programador + +#: Editor.java:556 +Page\ Setup=Configuraci\u00f3n d'a pachina + +#: Editor.java:564 +Print=Imprentar + +#: Editor.java:576 Preferences.java:279 +Preferences=Preferencias + +#: Editor.java:586 Base.java:782 +Quit=Salir + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=Verificar / Compilar + +#: Editor.java:629 +Import\ Library...=Importar Biblioteca... + +#: Editor.java:634 +Show\ Sketch\ Folder=Amostrar a Carpeta de sketch + +#: Editor.java:643 +Add\ File...=Adhibir un Fichero... + +#: Editor.java:656 +Tools=Ferramientas + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitor serie + +#: Editor.java:682 +Board=Tarcheta + +#: Editor.java:690 +Serial\ Port=Puerto serie + +#: Editor.java:695 +Programmer=Programador + +#: Editor.java:699 +Burn\ Bootloader=Gravar o bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu ye null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=o nombre ye null + +#: Editor.java:986 +error\ retrieving\ port\ list=error tot leyendo a lista de puertos + +#: Editor.java:1002 +Help=Aduya + +#: Editor.java:1041 +Getting\ Started=Primers trangos + +#: Editor.java:1049 +Environment=Entorno + +#: Editor.java:1057 +Troubleshooting=Soluci\u00f3n de problemas + +#: Editor.java:1065 +Reference=Referencia + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Trobar en a referencia + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Preguntas freq\u00fcents + +#: Editor.java:1091 +Visit\ Arduino.cc=Visitar Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Arredol d'Arduino + +#: Editor.java:1116 +Edit=Editar + +#: Editor.java:1119 Editor.java:1341 +Undo=Desfer + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Refer + +#: Editor.java:1135 Editor.java:2652 +Cut=Retallar + +#: Editor.java:1143 Editor.java:2660 +Copy=Copiar + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copiar ta'l Foro + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Copiar como HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Apegar + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Seleccionar-lo tot + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Comentar/Descomentar + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Incrementar o sangrau + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Reducir o sangrau + +#: Editor.java:1220 +Find...=Buscar... + +#: Editor.java:1235 +Find\ Next=Buscar o siguient + +#: Editor.java:1245 +Find\ Previous=Buscar l'anterior + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Fer servir a selecci\u00f3n ta buscar-la + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=En primeras seleccione una parola ta buscar en a referencia. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=No i hai garra referencia disponible ta "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Compilando o sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=S'ha rematau a compilaci\u00f3n. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Alzar os cambeos en "{0}"? + +#: Editor.java:2006 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Quiers alzar os cambeos feitos a iste sketch
antes de zarrar?

Si no los alzas, os cambeos se perder\u00e1n. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Cancelar + +#: Editor.java:2017 +Don't\ Save=No l'alces + +#: Editor.java:2089 +Bad\ file\ selected=O fichero seleccionau ye incorrecto + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing no puede ubrir que os suyos propios sketches\ny atros fichers remataus en .ino u .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=Acceptar + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Ye menester que o fichero "{0}" se trobe endentro d'a \ncarpeta d'un sketch clamada "{1}".\nQuiers creyar ista carpeta, mover iste fichero y continar? + +#: Editor.java:2109 +Moving=Movendo + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Error + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Ya existe una carpeta clamada "{0}". No s'ha puesto ubrir o sketch. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=No s'ha puesto creyar a carpeta d'o sketch. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=No s'ha puesto copiar a una ubicaci\u00f3n apropiada. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=No s'ha puesto creyar o sketch. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Se ye alzando... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=S'ha rematau l'alzau. + +#: Editor.java:2270 +Save\ Canceled.=S'ha cancelau l'alzau. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=No s'ha trobau o puerto serie {0}.\nQuiers tornar a intentar a carga con belatro puerto serie? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Cargando ta la tarcheta I/O... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=S'ha rematau a carga. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=S'ha cancelau a carga. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Alzar os cambeos antes d'exportar? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=S'ha cancelau a exportaci\u00f3n\: en primeras has d'alzaus os cambeos. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Se ye gravando o bootloader en a tarcheta I/O (podr\u00eda tardar un minuto)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=S'ha rematau a gravaci\u00f3n d'o bootloader. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=S'ha trobau una error en gravar o bootloader. + +#: Editor.java:2500 +Printing...=Se ye imprentando... + +#: Editor.java:2517 +Done\ printing.=S'ha rematau a impresi\u00f3n. + +#: Editor.java:2520 +Error\ while\ printing.=S'ha trobau una error en imprentar. + +#: Editor.java:2524 +Printing\ canceled.=S'ha cancelau a impresi\u00f3n. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Linia d'error incorrecta\: {0} + +#: Editor.java:2641 +Open\ URL=Ubrir una URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nueva versi\u00f3n d'Arduino ye disponible,\nTe fer\u00eda goyo de visitar agora a pachina de descargas d'Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=S\u00ed + +#: UpdateCheck.java:108 Preferences.java:77 +No=No + +#: UpdateCheck.java:111 +Update=Esviellar + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Buscar\: + +#: FindReplace.java:81 +Replace\ with\:=Reemplazar con\: + +#: FindReplace.java:96 +Ignore\ Case=Ignorar mayusclas y minusclas + +#: FindReplace.java:105 +Wrap\ Around=Embolicar + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Reemplazar-lo tot + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Reemplazar + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Reemplazar y Buscar + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Anterior + +#: FindReplace.java:124 FindReplace.java:127 +Find=Buscar + +#: SerialMonitor.java:93 +Send=Ninviar + +#: SerialMonitor.java:110 +Autoscroll=Desplazamiento automatico + +#: SerialMonitor.java:112 +No\ line\ ending=No i ha garra fin de linia + +#: SerialMonitor.java:112 +Newline=Linia nueva (NL) + +#: SerialMonitor.java:112 +Carriage\ return=Retorno de Carro (CR) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Totz dos NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=O puerto serie ''{0}'' ya ye en uso. Mira de zarrar qualsiquier atro programa que lo podese estar usando. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=S'ha trobau una error en ubrir o puerto serie ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=No s'ha trobau o puerto serie ''{0}''. Yes seguro que trigu\u00e9s o correcto en o men\u00fa Ferramientas > Puerto Serie? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de bytes readBytesUntil() ye masiau chicot ta os {0} bytes dica y incluindo-ie o char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=S'ha trobau una error en Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Formato automatico + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=No s'amenista garra cambeo ta o formato automatico. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=S'ha cancelau o formato automatico\: masiaus parentesis dreitos. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=S'ha cancelau o formato automatico\: masiaus parentesis cuchos. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=S'ha cancelau o formato automatico\: masiaus gafetz dreitos. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=S'ha cancelau o formato automatico\: masiaus gafetz cuchos. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=S'ha rematau o formato automatico. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Reparar a Codificaci\u00f3n y Recargar + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Descartar totz os cambeos y recargar o sketch? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ha ocurriu una error entre que se miraba d'apanyar a codificaci\u00f3n d'o\nfichero. No intentes alzar iste sketch porque puede sobrescribir a versi\u00f3n\nanterior. Utiliza Ubrir ta reabrir o sketch y intenta de nuevo.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Archivar o sketch + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=No s'ha puesto archivar o sketch + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=S'ha cancelau l'archivo d'o sketch porque\no sketch no s'ha puesto alzar correctament. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Archivar o sketch como\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=S'ha cancelau l'archivo d'o sketch. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Error entre que se cargaba o codigo {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contiene caracters incorrectos. Si iste codigo se crey\u00f3 con una versi\u00f3n anterior de Processing, talment te calga usar Ferramientas -> Correchir Codificaci\u00f3n y Recargar ta esviellar o sketch a codificaci\u00f3n UTF-8. Si no, talment te calga borrar os caracters incorrectos ta desfer-te d'ista alvertencia. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=O sketch ye nom\u00e1s de lectura + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Qualques fichers son marcaus como "nom\u00e1s de lectura",\nasinas que amenester\u00e1s tornar a alzar iste sketch en unatra ubicaci\u00f3n, y \nintentar-lo de nuevas. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nombre d'o nuevo fichero\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=O sketch no tiene nombre + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Qu\u00e9 te pareixe d'alzar en primeras o sketch \nantes de mirar de renombrar-lo? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=S'ha trobau un problema en renombrar + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=O nombre no puede empecipiar con un punto. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" no ye una extensi\u00f3n valida. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O fichero prencipal no puede fer servir una extensi\u00f3n.\n(Talment siga ya hora de que pases ta un\nentorno de desembolique "real") + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Nop + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Ya existe un fichero clamau "{0}" en "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No puetz tener un fichero .cpp con o mesmo nombre que o sketch. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puetz renombrar o sketch como "{0}"\nporque o sketch ya tiene un fichero .cpp con ixe nombre + +#: Sketch.java:459 +Cannot\ Rename=No se puede renombrar + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Ya existe un sketch (u carpeta) clamau "{0}". + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=No s'ha puesto renombrar o sketch. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=No s'ha puesto renombrar "{0}" como "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=No s'ha puesto renombrar o sketch. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=No s'ha puesto renombrar o sketch. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() ha retornau a valura "false" + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Yes seguro que quiers borrar iste sketch? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Yes seguro que quiers borrar "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Borrar + +#: Sketch.java:620 +Couldn't\ do\ it=No s'ha puesto fer + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=No s'ha puesto borrar "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error interna... no s'ha puesto trobar o codigo + +#: Sketch.java:724 +Sketch\ is\ read-only=O sketch ye nom\u00e1s de lectura + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Qualques fichers son marcaus como "nom\u00e1s de lectura",\nasinas que te caldr\u00e1 tornar a alzar iste sketch en belatro puesto. + +#: Sketch.java:743 +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En Arduino 1.0, a extensi\u00f3n por defecto ha cambiau\nde .pde ta .ino. Os nuevos sketches (incluindo-ie os creyaus con\n"Alzar como" fer\u00e1n servir a nueva extensi\u00f3n. A extensi\u00f3n\nd'os sketches ya existents s'esviellar\u00e1 en alzar, pero isto\npuede deshabilitar-se en o dialogo de Preferencias\n\nAlzar o sketch y esviellar a extensi\u00f3n? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Alzar a carpeta de sketch como... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puetz alzar o sketch como "{0}"\nporque o sketch ya tiene un fichero .cpp con ixe nombre. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Que en yes de Borges tu\! + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No puetz alzar o sketch en una carpeta\nadentro d'ell mesmo. Isto podr\u00eda seguir ta cutio. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecciona una imachen u belatro fichero de datos ta copiar en o sketch + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Reemplazar a versi\u00f3n existent de {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=S'ha trobau una error en adhibir o fichero + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=No s'ha puesto borrar o fichero existent ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=No me puetz enganyuflar + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Iste fichero ya s'ha copiau en o puesto\ndende o qual ye mirando d'adhibir-lo.\nNo'n fer\u00e9 cosa. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=No s'ha puesto adhibir ''{0}'' a lo sketch. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=A carpeta de construcci\u00f3n ha despareixiu u no s'ha puesto escribir + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=No s'ha puesto trobar a clase main + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=S'ha trobau una excepci\u00f3n no apercazada de tipo\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=S'ha trobau un problema movendo {0} ta la carpeta de construcci\u00f3n + +#: Sketch.java:1661 +Uploading...=Cargando... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Grandaria binaria d'o sketch\: {0} bytes (d'un maximo de {1} bytes) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=No s'ha puesto determinar a grandaria d'o programa\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=O sketch ye masiau gran; leye-te http\://www.arduino.cc/en/Guide/Troubleshooting\#size ta trobar consellos de c\u00f3mo reducir-lo. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ a la fin d'un /* comentario */ + +#: Sketch.java:1796 +Sketch\ Disappeared=O sketch ha desapareixiu + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A carpeta de sketches ha desapareixiu.\n Se mirar\u00e1 de tornar a alzar-la en o mesmo puesto,\npero tot, fueras d'o codigo, se perder\u00e1. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=No s'ha puesto tornar a alzar o sketch + +#: Sketch.java:1811 +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=No s'ha puesto tornar a alzar o sketch adequadament. Talment tiengas \nproblemas en iste punto, y siga hora de copiar y apegar o tuyo codigo en \nbelatro editor. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=O nombre d'o sketch s'ha habiu de modificar. Os nombres de sketch\nno pueden tener que caracters ASCII y numeros (pero no pueden\nempecipiar con un numero). A suya largaria ha d'estar menor a 64 caracters. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error de compilaci\u00f3n, por favor ninvia iste codigo a {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=o puerto serie seleccionau {0} no existe u a tuya tarcheta ye sin connectar + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo no responde, revisa que siga seleccionau o puerto serie u REINICIA a tarcheta antes d'exportar + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema en puyar codigo ta la tarcheta. Mira-te http\://www.arduino.cc/en/Guide/Troubleshooting\#upload ta trobar sucherencias. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=S'ha trobau un Microcontrolador entivocau. Has trigau a tarcheta \ncorrecta d'o men\u00fa Ferramientas > Tarcheta? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No i ha garra tarcheta seleccionada; por favor, triga una tarcheta d'o men\u00fa\nFerramientas > Tarcheta. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} ha retornau {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Error en compilar. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importa la biblioteca SPI fendo servir o men\u00fa\nSketch > Importar Biblioteca. + +#: debug/Compiler.java:466 +!\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= + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A parola clau 'BYTE' ya no ye suportada. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nDende Arduino 1.0, a parola clau 'BYTE' ya no ye suportada.\nPor favor fe servir Serial.write() en cuenta.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A clase Server s'ha renombrau como EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDende Arduino 1.0, a clase Server en a biblioteca Ethernet s'ha \nrenombrau como EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A clase Client s'ha renombrau como EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDende Arduino 1.0, a clase Client en a biblioteca Ethernet s'ha renombrau\ncomo EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp s'ha renombrau como EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDende Arduino 1.0, a clase Udp en a biblioteca Ethernet s'ha renombrau\ncomo EthernetUdp.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() s'ha renombrau como Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDende Arduino 1.0, a funci\u00f3n Wire.send() s'ha renombrau como Wire.write() ta mantener a consistencia con atras bibliotecas.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() s'ha renombrau como Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDende Arduino 1.0, a funci\u00f3n Wire.receive() s'ha renombrau como Wire.read() ta mantener a consistencia con atras bibliotecas.\n\n + +#: EditorConsole.java:152 +Console\ Error=S'ha trobau una error de consola + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=S'ha trobau un problema entre que se miraba d'ubrir o\nfichero utilizau ta alzar o resultau d'a consola. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=S'ha trobau una error no fatal entre que se configuraba l'Apariencia. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=O que sigue ye o mensache d'error, pero Arduino habr\u00eda de continar\nfuncionando bien. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problema en configurar a Plataforma + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=S'ha trobau una error desconoixida entre que\nse cargaba o codigo especifico ta la tuya plataforma. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Por favor instala o JDK 1.5 u posterior + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requiere o JDK completo (no nom\u00e1s o JRE)\nta funcionar. Por favor instala o JDK 1.5 u superior.\nPodr\u00e1s trobar mas informaci\u00f3n en a referencia. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=A carpeta sketchbook ha desapareixiu + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A carpeta sketchbook ya no existe.\nArduino cambiar\u00e1 ta o puesto predeterminau\nd'o sketchbook y creyar\u00e1 una nueva carpeta sketchbook\nsi ye menister. Dimpu\u00e9s, Arduino deixar\u00e1 de charrar d'ell mesmo\nen tercera persona. + +#: Base.java:532 +Time\ for\ a\ Break=Hora de fer un descanso + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Por hue has plegau en o limite d'auto nombramiento de sketches nuevos\nQu\u00e9 tal si te fas una gambadeta? + +#: Base.java:537 +Sunshine=Luz d'o sol + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De verdat, ye hora que prengas un poquet d'aire fresco. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Ubrir un sketch d'Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Yes \nseguro que quiers salir-ne?

Si zarras o zaguer sketch ubierto se zarrar\u00e1\nArduino. + +#: Base.java:970 +Contributed=Contribuiu + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Ixe sketch no existe + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=O sketch seleccionau ya no existe.\nYe posible que te calga reiniciar Arduino\nta esviellar o men\u00fa sketchbook. + +#: Base.java:1125 +#, 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}=O sketch "{0}" no se puede fer servir.\nOs nombres de sketch han de contener nom\u00e1s letras basicas y numers\n(Nom\u00e1s ASCII sin espacios, y no puede empecipiar con un numero).\nTa desfer-te d'iste mensache, elimina o sketch de {1}.\n + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignorando sketch con nombre incorrecto + +#: Base.java:1202 +#, 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)=A biblioteca "{0}" no se puede fer servir.\nOs nombres de biblioteca han de contener nom\u00e1s letras basicas y numers\n(Nom\u00e1s ASCII sin espacios y no puede empecipiar con un numero). + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignorando o nombre incorrecto d'a biblioteca + +#: Base.java:1432 +Problem\ getting\ data\ folder=S'ha trobau un problema en obtener a carpeta de datos + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=S'ha trobau una error en obtener a carpeta de datos d'Arduino. + +#: Base.java:1440 +Settings\ issues=Problemas de configuraci\u00f3n + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino no puede executar porque no ha puesto\ncreyar una carpeta ta alzar a tuya configuraci\u00f3n. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Has ixuplidau o tuyo sketchbook + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino no se puede executar porque no ha puesto\ncreyar una carpeta ta alzar o tuyo sketchbook. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecciona (u creya una nueva) carpeta ta sketches... + +#: Base.java:1647 +Problem\ Opening\ URL=S'ha trobau un problema en ubrir a URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=No s'ha puesto ubrir a URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problema en ubrir a carpeta + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=No s'ha puesto ubrir a carpeta\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=entorno + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Mensache + +#: Base.java:1842 +Warning=Alvertencia + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=No s'ha puesto eliminar a versi\u00f3n anterior de {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=No s'ha puesto reemplazar {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=No s'ha puesto borrar {0} + +#: EditorHeader.java:292 +New\ Tab=Nueva pestanya + +#: EditorHeader.java:300 +Rename=Renombrar + +#: EditorHeader.java:326 +Previous\ Tab=Pestanya anterior + +#: EditorHeader.java:340 +Next\ Tab=Siguient pestanya + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verificar + +#: EditorToolbar.java:41 +Open=Ubrir + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nueva finestra d'editor + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Ubrir en unatra finestra + +#: Platform.java:167 +No\ launcher\ available=No i ha garra lanzador disponible + +#: 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=No s'ha especificau a plataforma, u no i ha garra lanzador disponible.\nTa habilitar a obridura d'URLs u carpetas, adhibe una linia como \n"launcher\=/rota/ta/app" a o fichero preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=No s'ha puesto leyer a configuraci\u00f3n d'esquema de color. \nTe caldr\u00e1 tornar a instalar Processing. + +#: Preferences.java:80 +Browse=Navegar + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Catal\u00e1n + +#: Preferences.java:87 +Chinese\ Simplified=Chin\u00e9s Simplificau + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Dan\u00e9s + +#: Preferences.java:90 +Dutch=Neerland\u00e9s + +#: Preferences.java:91 +English=Angl\u00e9s + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Franc\u00e9s + +#: Preferences.java:94 +Filipino=Filipino + +#: Preferences.java:95 +Galician=Gallego + +#: Preferences.java:96 +German=Alem\u00e1n + +#: Preferences.java:97 +Greek=Griego + +#: Preferences.java:98 +Hungarian=Hongaro + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Itali\u00e1n + +#: Preferences.java:101 +Japanese=Chapon\u00e9s + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Let\u00f3n + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Persa + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Rum\u00e1n + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Espanyol + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No s'ha puesto leyer a configuraci\u00f3n predeterminada.\nTe caldr\u00e1 tornar a instalar Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=No s'ha puesto leyer as preferencias de {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Error en leyer as preferencias + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Error en leyer o fichero de preferencias. Por favor borra (u mueve)\n{0} y reinicia Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Ubicaci\u00f3n d'o sketchbook\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Selecciona a nueva ubicaci\u00f3n d'o sketchbook + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (cal reiniciar Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Grandaria de tipo de letra ta l'editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Amostrar resultau detallau entre\: + +#: Preferences.java:373 +compilation\ =compilaci\u00f3n + +#: Preferences.java:375 +upload=carga + +#: Preferences.java:384 +Verify\ code\ after\ upload=Verificar o codigo dimpu\u00e9s de cargar + +#: Preferences.java:393 +Use\ external\ editor=Fer servir un editor externo + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Verificar actualizacions en empecipiar + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Actualizar fichers de sketch a nueva extensi\u00f3n en alzar \n(.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Asociar automaticament fichers .ino con Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mas preferencias se pueden editar dreitament en o fichero + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(editar noma\u015b quan Arduino no se siga executando) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignorando a grandaria invalida d'o tipo de letra {0} diff --git a/app/src/processing/app/Resources_ar.po b/app/src/processing/app/Resources_ar.po new file mode 100644 index 000000000..e58395d89 --- /dev/null +++ b/app/src/processing/app/Resources_ar.po @@ -0,0 +1,1606 @@ +# Arabic translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Belal M.R. Affouri , 2012. +# Ameen Sarsour <>, 2012. + + +# +msgid "" +msgstr "" +"Project-Id-Version: Arduino 1.01\n" +"Report-Msgid-Bugs-To: belal@eshtre.com \n" +"POT-Creation-Date: 2012-04-8 18:10 +0600\n" +"PO-Revision-Date: 2012-04-09 12:00 +0600\n" +"Last-Translator: Belal Affouri <>\n" +"Language-Team: Arabic\n" +"Language: ar\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "لا يوجد ملفات اضيفت للسكتش." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "ملف واحد اضيف للسكتش" + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} ملفات اضيفت للسكتش." + +#: Editor.java:484 +msgid "File" +msgstr "ملف" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "جديد" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "...افتح" + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "سكتش بوك" + +#: Editor.java:509 +msgid "Examples" +msgstr "أمثلة" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "إغلاق" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "حفظ" + +#: Editor.java:530 +msgid "Save As..." +msgstr "حفظ بإسم..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "رفع" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "رفع بواسطة المبرمجة" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "اعدادات الصفحة" + +#: Editor.java:564 +msgid "Print" +msgstr "اطبع" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "تفضيلات" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "خروج" + +#: Editor.java:600 +msgid "Sketch" +msgstr "سكتش" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "تدقيق \\ ترجم" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "...استيراد مكتبة" + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "اعرض مجلد السكتش" + +#: Editor.java:643 +msgid "Add File..." +msgstr "...اضف ملف" + +#: Editor.java:656 +msgid "Tools" +msgstr "ادوات" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "مراقب السيريال" + +#: Editor.java:682 +msgid "Board" +msgstr "لوحة" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "منفذ السيريال" + +#: Editor.java:695 +msgid "Programmer" +msgstr "المبرمجة" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "احرق البوتلودر" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "قائمة-السيريال فارغة" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "الاسم فارغ" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "خطأ في استرجاع قائمة المنفذ" + +#: Editor.java:1002 +msgid "Help" +msgstr "مساعدة" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "الشروع في العمل" + +#: Editor.java:1049 +msgid "Environment" +msgstr "البيئة" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "استكشاف الاخطاء واصلاحها" + +#: Editor.java:1065 +msgid "Reference" +msgstr "مرجع" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "ابحث في المرجع" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "اسئلة متكررة" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Arduino.cc زر " + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "عن الاردوينو" + +#: Editor.java:1116 +msgid "Edit" +msgstr "عدل" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "تراجع" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "اعادة" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "قص" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "نسخ" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "انسخ للمنتدى" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "انسخ ك HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "لصق" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "اختر الكل" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "ملاحظة \\ الغاء الملاحظة" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "زيادة البادئة" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "تقليل البادئة" + +#: Editor.java:1220 +msgid "Find..." +msgstr "...ابحث" + +#: Editor.java:1235 +msgid "Find Next" +msgstr "ابحث التالي" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "ابحث السابق" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "استخدم المظلل للبحث" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr ".اختر الكلمة الاولى لإيجاد المرجع" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "\"{0}\"لا يوجد مرجع متاح ل " + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "...ترجمة السكتش" + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr ".انتهاء الترجمة" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "\"{0}\" حفظ التغييرات ل " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " هل تريد حفظ الغييرات لهذا السكتش
قبل الاغلاق ؟

اذا لم ترد الحفظ , سوف تفقد جميع التغييرات." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "الغاء" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "لا تحفظ" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "اختيار ملف سيئ" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "المعالجة يمكن فقط ان تفتح السكتشات الخاصة بها\nوالملفات التي تعدل في .pde او .ino" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "موافق" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "الملف \"{0}\" بحاجة لأن يكون بداخل \n\"{1}\" مجلد السكتش المسمى \n أنشاء المجلد ونقل الملفات والمتباعة؟" + +#: Editor.java:2109 +msgid "Moving" +msgstr "نقل" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "خطأ" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "المجلد المسكى \"{0}\" موجود مسبقا. لا يمكن فتح السكتش" + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr ".لا يمكن انشاء مجلد السكتش" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "لا يمكن النسخ لمكان مناسب" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr ".لا يمكن انشاء السكتش" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | أردوينو {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "...حفظ" + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "...انتهاء الحفظ" + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr ".الغاء الحفظ" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr ".منفذ السيريال {0} غير موجود \n" + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "التحميل انتهى" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "التحميل ألغي" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "حفظالتغييرات فبل التصدير ؟" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr ".التصدير الغي , يجب حفظ التغييرات" + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "حرق البوتلودر للوحة ال I/O (يمكن ان يستغرق دقيقة ) ..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "النتهاء حرق البوتلودر" + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "خطأ خلال عملية حرق البوتلودر" + +#: Editor.java:2500 +msgid "Printing..." +msgstr "...طباعة " + +#: Editor.java:2517 +msgid "Done printing." +msgstr "...انتهاء الطباعة" + +#: Editor.java:2520 +msgid "Error while printing." +msgstr ".خطأ خلال الطباعة " + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "الطباعة الغيت" + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "خطأ سيئ السطر : {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "افتح الرابط" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "إصدار جديد من الأردوينو متوفر ,/n هل ترغب بزيارة صفحة تحميل الأردوينو" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "نعم" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "لا" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "تحديث" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "بحث :" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "استبدال ب:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "تجاهل الحالة" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "التف حول" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "استبدال الكل" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "استبدال" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "اسبدال و بحث" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "السابق" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "بحث" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "ارسل" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Autoscroll" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "نهاية السطر غير موجودة" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "سطر جديد" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "اعادة الحمل" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "كلاهما NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "المنفذ التسلسلي ''{0}'' مستخدم حاليا. حاول اغلاق اي برامج تستخدم ذلك المنفذ." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "خطأ في فتح المنفذ التسلسل ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "المنفذ التسلسلي ''{0}'' غير موجود. هل قمت بإختيار المنفذ الصحيح من قائمة الادوات > المنفذ التسلسلي" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Serial.{0}() خطأ داخل " + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "تنسيق تلقائي" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "لا يوجد تغييرات ضرورية للتنسيق التلقائي." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "التنسيق التلقائي الغي: كثير من الاقواس اليمين" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "التنسيق التلقائي الغي: كثير من الاقواس لجهة الشمال" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "التنسيق التلقائي الغي: كثير من الاقواس الملتوية لجهة اليمين" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "التنسيق التلقائي الغي: كثير من الاقواس الملتوية لجهة الشمال" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "التنسيق التلقائي انتهى" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "الترميز و أعد التحميل" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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استخدم فتح للإعادة. فتح السكتس وحاول مرة اخرى" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "ارشفة السكتش" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "لا يمكن ارشفة السكتش" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "ارشفة السكتش الغيت لأنه\nالسكتش لا يمكن حفظه بشكل مناسب" + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "ارشفة السكتش ك:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "ارشفة السكتش الغيت " + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "خطأ اثناء تحميل الكود {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "\"{0}\" يحتوي على احرف غير معرفة . اذا انشئ الكود مع اصدار اقدم من المعالجة , يلزمك ان تستخدم ادوات -> اصلاح الترميز واعد\nالتحميل لتحديث السكتش ليستخدم ترميز UTF-8 . غير ذلك يمكنك ان تحذف الاحرف الغير معرفة للتخلص من هذا التحذير." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "السكتش للقرائة فقط" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "\"read-only\"بعض الملفات معلمة ب\nتحتاج لإعادة حفظ في مكان آخر,\nو حاول مرة اخرى" + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "اسم لملف جديد :" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "السكتش تم تحديثه" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "هل ترغب بحفظ السكتش اولا\nقبل اعادة تسميه" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "مشكلة في اعادة التسمية" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "الاسم لا يمكن ان يبدأ بمسافة." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" امتداد غير صالح" + +#: Sketch.java:378 +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 "الملف الرئيسي لا يستطيع استخدام الامتداد.\n(قد يكون الوقت قد حان لتخريجه ل\nبيئة برمجية حقيقية)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "لا يا صديقي" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "الملف المسمى \"{0}\" موجود مسبقا في \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "لا يمكن ان يكون لديك ملف .cpp مع نفس اسم السكتش " + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "\"{0}\"لا يمكن اعادة تسمية السكتش ل\nلأن السكتش مسبقا لديه ملف .cpp مع نفس الاسم" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "لا يمكن اعاعدة التسمية" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "اسف, السكتش (او المجلد ) مسمى ب \"{0}\" مستخدم مسبقا" + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "لا يمكن إعادة تسمية السكتش .(0 )" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "\"{1}\" الى \"{0}\" لا يمكن اعادة تسمية" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "لا يمكن اعادة تسمية الملف . (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "لا يمكن اعادة تسمية الملف . (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() returned false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "هل انت متأكد انك تريد حذف السكتش ؟" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "هل انت متأكد انك تريد حذف \"{0}\"؟" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "حذف" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "لا يمكن فعل ذلك" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "لا يمكن حذف \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: خطأ داخلي .. لا يمكن ايجاد الكود" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "السكتش للقراءة فقط" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "بعض الملفات معلمة ب \"read-only\" , لذلك سوف تحتاج ان\nتعيد حفظ السكتش في مكان آخر." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "في Arduino 1.0 الامتداد التلقائي قد تغير\nمن .pde الى .ino. السكتشات الجديدة سوف تستخدم الامتداد الجديد -\nايضا الملفات الملفات المنشأة بواسطة حفظ بإسم - الامتداد للملفات الموجودة\nسوف يحدث عند الحفظ. لكن يمكنك ان تتحكم بذلك من قائمة الخصائص\nحفظ السكتش وتحديث الامتداد ؟" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "حفظ مجلد السكتش الى ..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "\"{0}\"لا يمكنك حبظ السكتش بـ\nلان سكتش موجود فعلا." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "ما هذه السخافة" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "لا يمكن حفظ السكتش الى نفسه\nربما يسير الى الابد." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "اختيار الصورة او ملف لنسخه الى السكتش" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "استبدال الاصدار الموجود {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "مشكلة في اضافة الملف" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "''{0}''لا يمكن حذف الملف" + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "لا يمكنك خداعي" + +#: Sketch.java:1079 +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 "هذا الملف تم بالفعل نسخه الى\nالموقع الذي تحاول اضافته اليه." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "لا يمكن اضافة ''{0}'' الى السكتش." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "مجلد البناء غير موجود او انه لايمكن الكتابة عليه" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "لا يوجد الكلاس الاساسي" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "نوع المشكلة غير محدد: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "مشكلة في نقل {0} الى الفولدر البناء" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "رفع" + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "حجم السكتش المترجم: {0} بايت ( {1} كحد أقصى" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "لا يمكن تحديد حجم البرنامج {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "http://www.arduino.cc/en/Guide/Troubleshooting#size السكتش كبير جدا; راجع\nملاحظات لاختصاره." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "نهاية التعليق /* غير موجود /* تعليق*/" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "السكتش غير موجود" + +#: Sketch.java:1797 +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 "" +"مجلد السكتش اختفى.\n" +" حاول اعادة حفظه في نفس المكان,\n" +"ولكن سيتم فقدان الكود." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "لا يمكن اعادة نسخ السكتش" + +#: Sketch.java:1811 +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" +"ويجب عليك نسخ النص ولصقه في محرر نصوص اخر." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"اسم السكتش تم تغيره. اسم التكتش يجب ان يكون\n" +"عنصرامن ASCII او رقم (لكن لا يجوز ان يبدأ رقم).\n" +"يجب ان يكون اقل من 64 حرف ورقم." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "خطأ في الترجمة, رجاءا ارسل الكود الى {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"رقم المنفذ port {0} المختار غير موجود او ان البورد غير موصول" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"الجهاز لا يستجيب, تأكد من المنفذ port او قم باعدات التشغيل RESET " +"للبورد قبل الرفع" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"مشكلة في الرفع الى البورد. راجع http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload fعلى سبيل الاقتراح ." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"وجد خطأ في المايكرو كونترولر. هل انت متاكد من نوع البورد المختار في قائمة الأدوات" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "لم تختار البورد; رجاءا اختار البورد من قائمة أدوات > بورد." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} أرجع {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "خطأ في الترجمة" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "الرجاء استورد مكتبة الـSPI من القائمة سكتش > قائمة استيراد مكتبة" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"كما في الاردوينو 0019, مكتبة الـ Ethernet معتمدة على مكتبة SPI.\n" +"ربما عليك استخدام مكتبة اخرى معتمدة على SPI " +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "الـ 'BYTE' لم تعد مدعومة." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"كما في الاردوينو 1.0, الـ 'BYTE' لم تعد مدعومة.\n" +"رجاءا استخدم الــ Serial.write().\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "الـ Server class أعيد تسميته الى EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"كما في الأدرونو 1.0, Server class في Ethernet أعيد تسميته الى " +"EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "الـ Client class أعيد تسميته الى EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"كم هو في الأردوينو 1.0, Client class في مكتبة Ethernet أعيد تسميته الى" +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "The Udp class أعيد تسميته الى EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"كما هو في الأردوينو 1.0 , الـ Udp class في مكتبة Ethernet تم اعادة تسميته الى" +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() أعيدت تسميته الى Wire.write().""" + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"كما هو في الاردوينو 1.0, الـ Wire.send() تم اعادة تسميته الى Wire.write() " +"من اجل التناسق مع المكتبات الأخرى.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() تم اعادة تسميتها الىWire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"كما هو في اردوينو 1.0, الـ Wire.receive() تم اعادة تسميته الى Wire.read() " +"من اجل التناسق مع المكتبات الأخرى.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "خطأ في وحدة التحكم Console" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"حدثت مشكلة اثناء فتح\n" +"ملفات تستخدم لتخزين المخرجات." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "خطأ غير ضار اثناى اعداد الواجهة والشعور" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "اتباع راسالة الخطأ، على كل حال ستعمل الاردوينو بشكل جيد" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "اعدادات المنصة خاطئة" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"مشكلة غير معروفة اثناء تحميل\n" +"المنصة المخصصة على جهازك." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "الرجاء تنصيب JDK 1.5 أو احدث" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"الاردوينو بحاجة الى JDK وليس فقط JRE لكي يشتغل\n" +"الرجاء تنصيب JDK 1.5 أو أحدث.\n" +"مزيد من التفاصيل تجدها في المراجع." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "مجلد السكتش بوك مختفي" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"مجلد السكتش بوك لم يعد موجودا.\n" +"سينتقل الاردوينو الى مكان السكتش بوك\n" +"الافتراضي, او انشاء واحد جديد اذا تطلب الأمرif\n" +". الاردوينو سيوقف الحديث \n" +"عن نفسه." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "وقت الاستراحة" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"لقد وصلت الى الحد الاقصى للتسمية التلقائية" +"لليوم. ماذا عن الخروج في نزهة بدل الليوم?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "أشعة الشمس" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "لا يا صديقي , حان الوقت لتأخذ فترة راحة قصيرة " + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "فتح الاردوينو سكتش" + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr " هل انت متأكد من الخروج ؟

اغلاق اخر سكتش سوف يغلق الارديونو." + +#: Base.java:970 +msgid "Contributed" +msgstr "مساهمة" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "السكتش غير موجود" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"السكتش المحدد لم يعد موجودا.\n" +"يجب اعادة تشغيل الاردوينو للتحديث\n" +"قائمة السكتش بوك." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"السكتش \"{0}\" لا يمكن استخدامه.\n" +"اسم السكتش يجب ان يحتوي حروف وارقام فقط\n" +"(حروف من دون فراغات,ولا يمكن ان يبدأ في رقم).\n" +"لتخلص من هذه الرسالة, احذف السكتش من \n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "تجاهل السكتش ذات الاسم الخاطئ" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"المكتبة \"{0}\" لا يمكن استخدامها.\n" +"اسم المكتبة يجب ان يكون حروف وارقام فقط.\n" +"(لا فراغات ولا يمكن البدء في رقم)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "تجاهل اسم المكتبة الخاطئ" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "مشكلة في الحصول على مجلد البيانات" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "مشكلة في الحصول على مجلد بيانات الاردوينو" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "ضبط القضايا" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"الاردوينو لا تعمل لعدم\n" +"تمكنها من انشاء مجلد لحفظ الاعدادات." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "لقد نسيت السكتشبوك (sketchbook)" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"الارديوينو لم تتمكن من التشغيل بسبب انها \n" +"لا تستطيع انشاء مجلد لحفظ السكتشبوك (sketchbook)." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "اختيار(او انشاء جديد) لمجلد السكتش" + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "مشكلة في فتح عنوان URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"لا يمكن فتح عنوان URL \n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "مشكلة في فتح المجلد" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"لا يمكن فتح المجلد\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "البيئة" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "رسالة" + +#: Base.java:1842 +msgid "Warning" +msgstr "تحذير" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "لا يمكن حذف الاصدار السابق {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "لا يمكن استبدال {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "لا يمكن حذف {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "تبويب جديد" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "اعادة تسمية " + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "التبويب السابق" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "تبويب جديد" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "فحص" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "فتح" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "نافذة تحرير جديدة" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "فتح نافذة اخرى" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "لا يوجد منصة متاحة" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" +"المنصة غير محددة، المشغل غير متاح.\n" +"اضف سطر \"launcher=/path/to/app\" الى preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"لا يمكن قرائة اعتدادات الالوان.\n" +"يجب عليك اعادة تنصيب العملية" + +#: Preferences.java:80 +msgid "Browse" +msgstr "استعراض" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"لا يمكن قرائة الاعدادات الافتراضية" +"يجب عليك اعادت تنصيب الاردوينو" + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "لا يمكن قرائة الخصائص من {0} " + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "خطا في قراءة الخصائص" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"خطافي قرائة ملف الخصائص . رجاءا احذف (او انقل )\n" +"{0} ثم اعد تشغيل الارديونو" + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "مكان السكتش" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "اختيار مكان السكتش الجديد" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr "(يتطلب اعادت تشغيل للأردوينو)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "حجم خط المحرر :" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "عرض المخرجات خلال" + +#: Preferences.java:373 +msgid "compilation " +msgstr "ترجمة" + +#: Preferences.java:375 +msgid "upload" +msgstr "رفع" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "استعمال محرر خارجي" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "افحص التحديثات عند التشغيل" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "تحديث ملفات السكتش ملف الى الامتداد الجديد عند الحفظ (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "دمج .ino بشكل تلقائي مع الاردوينو" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "يمكن تعديل خصائص اكثر بتعديل الملف بشكل مباشر" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(لا يمكن التحرير والأردوينو تعمل)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "تجاهل الخطأ في حجم الخط {0}" diff --git a/app/src/processing/app/Resources_ar.properties b/app/src/processing/app/Resources_ar.properties new file mode 100644 index 000000000..0846a4af6 --- /dev/null +++ b/app/src/processing/app/Resources_ar.properties @@ -0,0 +1,1035 @@ +# Arabic translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Belal M.R. Affouri , 2012. +# Ameen Sarsour <>, 2012. +# +!=Project-Id-Version\: Arduino 1.01\nReport-Msgid-Bugs-To\: belal@eshtre.com \nPOT-Creation-Date\: 2012-04-8 18\:10 +0600\nPO-Revision-Date\: 2012-04-09 12\:00 +0600\nLast-Translator\: Belal Affouri <>\nLanguage-Team\: Arabic\nLanguage\: ar\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u0644\u0627 \u064a\u0648\u062c\u062f \u0645\u0644\u0641\u0627\u062a \u0627\u0636\u064a\u0641\u062a \u0644\u0644\u0633\u0643\u062a\u0634. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u0645\u0644\u0641 \u0648\u0627\u062d\u062f \u0627\u0636\u064a\u0641 \u0644\u0644\u0633\u0643\u062a\u0634 + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} \u0645\u0644\u0641\u0627\u062a \u0627\u0636\u064a\u0641\u062a \u0644\u0644\u0633\u0643\u062a\u0634. + +#: Editor.java:484 +File=\u0645\u0644\u0641 + +#: Editor.java:486 EditorToolbar.java:41 +New=\u062c\u062f\u064a\u062f + +#: Editor.java:494 Base.java:903 +Open...=...\u0627\u0641\u062a\u062d + +#: Editor.java:503 +Sketchbook=\u0633\u0643\u062a\u0634 \u0628\u0648\u0643 + +#: Editor.java:509 +Examples=\u0623\u0645\u062b\u0644\u0629 + +#: Editor.java:514 Editor.java:1977 +Close=\u0625\u063a\u0644\u0627\u0642 + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u062d\u0641\u0638 + +#: Editor.java:530 +Save\ As...=\u062d\u0641\u0638 \u0628\u0625\u0633\u0645... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u0631\u0641\u0639 + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u0631\u0641\u0639 \u0628\u0648\u0627\u0633\u0637\u0629 \u0627\u0644\u0645\u0628\u0631\u0645\u062c\u0629 + +#: Editor.java:556 +Page\ Setup=\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0635\u0641\u062d\u0629 + +#: Editor.java:564 +Print=\u0627\u0637\u0628\u0639 + +#: Editor.java:576 Preferences.java:279 +Preferences=\u062a\u0641\u0636\u064a\u0644\u0627\u062a + +#: Editor.java:586 Base.java:782 +Quit=\u062e\u0631\u0648\u062c + +#: Editor.java:600 +Sketch=\u0633\u0643\u062a\u0634 + +#: Editor.java:602 +Verify\ /\ Compile=\u062a\u062f\u0642\u064a\u0642 \\ \u062a\u0631\u062c\u0645 + +#: Editor.java:629 +Import\ Library...=...\u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0645\u0643\u062a\u0628\u0629 + +#: Editor.java:634 +Show\ Sketch\ Folder=\u0627\u0639\u0631\u0636 \u0645\u062c\u0644\u062f \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Editor.java:643 +Add\ File...=...\u0627\u0636\u0641 \u0645\u0644\u0641 + +#: Editor.java:656 +Tools=\u0627\u062f\u0648\u0627\u062a + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u0645\u0631\u0627\u0642\u0628 \u0627\u0644\u0633\u064a\u0631\u064a\u0627\u0644 + +#: Editor.java:682 +Board=\u0644\u0648\u062d\u0629 + +#: Editor.java:690 +Serial\ Port=\u0645\u0646\u0641\u0630 \u0627\u0644\u0633\u064a\u0631\u064a\u0627\u0644 + +#: Editor.java:695 +Programmer=\u0627\u0644\u0645\u0628\u0631\u0645\u062c\u0629 + +#: Editor.java:699 +Burn\ Bootloader=\u0627\u062d\u0631\u0642 \u0627\u0644\u0628\u0648\u062a\u0644\u0648\u062f\u0631 + +#: Editor.java:923 +serialMenu\ is\ null=\u0642\u0627\u0626\u0645\u0629-\u0627\u0644\u0633\u064a\u0631\u064a\u0627\u0644 \u0641\u0627\u0631\u063a\u0629 + +#: Editor.java:927 Editor.java:934 +name\ is\ null=\u0627\u0644\u0627\u0633\u0645 \u0641\u0627\u0631\u063a + +#: Editor.java:986 +error\ retrieving\ port\ list=\u062e\u0637\u0623 \u0641\u064a \u0627\u0633\u062a\u0631\u062c\u0627\u0639 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0645\u0646\u0641\u0630 + +#: Editor.java:1002 +Help=\u0645\u0633\u0627\u0639\u062f\u0629 + +#: Editor.java:1041 +Getting\ Started=\u0627\u0644\u0634\u0631\u0648\u0639 \u0641\u064a \u0627\u0644\u0639\u0645\u0644 + +#: Editor.java:1049 +Environment=\u0627\u0644\u0628\u064a\u0626\u0629 + +#: Editor.java:1057 +Troubleshooting=\u0627\u0633\u062a\u0643\u0634\u0627\u0641 \u0627\u0644\u0627\u062e\u0637\u0627\u0621 \u0648\u0627\u0635\u0644\u0627\u062d\u0647\u0627 + +#: Editor.java:1065 +Reference=\u0645\u0631\u062c\u0639 + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u0627\u0628\u062d\u062b \u0641\u064a \u0627\u0644\u0645\u0631\u062c\u0639 + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u0627\u0633\u0626\u0644\u0629 \u0645\u062a\u0643\u0631\u0631\u0629 + +#: Editor.java:1091 +Visit\ Arduino.cc=Arduino.cc \u0632\u0631 + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u0639\u0646 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 + +#: Editor.java:1116 +Edit=\u0639\u062f\u0644 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u062a\u0631\u0627\u062c\u0639 + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u0627\u0639\u0627\u062f\u0629 + +#: Editor.java:1135 Editor.java:2652 +Cut=\u0642\u0635 + +#: Editor.java:1143 Editor.java:2660 +Copy=\u0646\u0633\u062e + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u0627\u0646\u0633\u062e \u0644\u0644\u0645\u0646\u062a\u062f\u0649 + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=\u0627\u0646\u0633\u062e \u0643 HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=\u0644\u0635\u0642 + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u0627\u062e\u062a\u0631 \u0627\u0644\u0643\u0644 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u0645\u0644\u0627\u062d\u0638\u0629 \\ \u0627\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0644\u0627\u062d\u0638\u0629 + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u0632\u064a\u0627\u062f\u0629 \u0627\u0644\u0628\u0627\u062f\u0626\u0629 + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u062a\u0642\u0644\u064a\u0644 \u0627\u0644\u0628\u0627\u062f\u0626\u0629 + +#: Editor.java:1220 +Find...=...\u0627\u0628\u062d\u062b + +#: Editor.java:1235 +Find\ Next=\u0627\u0628\u062d\u062b \u0627\u0644\u062a\u0627\u0644\u064a + +#: Editor.java:1245 +Find\ Previous=\u0627\u0628\u062d\u062b \u0627\u0644\u0633\u0627\u0628\u0642 + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u0627\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0645\u0638\u0644\u0644 \u0644\u0644\u0628\u062d\u062b + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=.\u0627\u062e\u062a\u0631 \u0627\u0644\u0643\u0644\u0645\u0629 \u0627\u0644\u0627\u0648\u0644\u0649 \u0644\u0625\u064a\u062c\u0627\u062f \u0627\u0644\u0645\u0631\u062c\u0639 + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"="{0}"\u0644\u0627 \u064a\u0648\u062c\u062f \u0645\u0631\u062c\u0639 \u0645\u062a\u0627\u062d \u0644 + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=...\u062a\u0631\u062c\u0645\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=.\u0627\u0646\u062a\u0647\u0627\u0621 \u0627\u0644\u062a\u0631\u062c\u0645\u0629 + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ ="{0}" \u062d\u0641\u0638 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0644 + +#: Editor.java:2006 +\ \ 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.= \u0647\u0644 \u062a\u0631\u064a\u062f \u062d\u0641\u0638 \u0627\u0644\u063a\u064a\u064a\u0631\u0627\u062a \u0644\u0647\u0630\u0627 \u0627\u0644\u0633\u0643\u062a\u0634
\u0642\u0628\u0644 \u0627\u0644\u0627\u063a\u0644\u0627\u0642 \u061f

\u0627\u0630\u0627 \u0644\u0645 \u062a\u0631\u062f \u0627\u0644\u062d\u0641\u0638 , \u0633\u0648\u0641 \u062a\u0641\u0642\u062f \u062c\u0645\u064a\u0639 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u0627\u0644\u063a\u0627\u0621 + +#: Editor.java:2017 +Don't\ Save=\u0644\u0627 \u062a\u062d\u0641\u0638 + +#: Editor.java:2089 +Bad\ file\ selected=\u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0644\u0641 \u0633\u064a\u0626 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629 \u064a\u0645\u0643\u0646 \u0641\u0642\u0637 \u0627\u0646 \u062a\u0641\u062a\u062d \u0627\u0644\u0633\u0643\u062a\u0634\u0627\u062a \u0627\u0644\u062e\u0627\u0635\u0629 \u0628\u0647\u0627\n\u0648\u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u062a\u064a \u062a\u0639\u062f\u0644 \u0641\u064a .pde \u0627\u0648 .ino + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=\u0645\u0648\u0627\u0641\u0642 + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u0627\u0644\u0645\u0644\u0641 "{0}" \u0628\u062d\u0627\u062c\u0629 \u0644\u0623\u0646 \u064a\u0643\u0648\u0646 \u0628\u062f\u0627\u062e\u0644 \n"{1}" \u0645\u062c\u0644\u062f \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0644\u0645\u0633\u0645\u0649 \n \u0623\u0646\u0634\u0627\u0621 \u0627\u0644\u0645\u062c\u0644\u062f \u0648\u0646\u0642\u0644 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0648\u0627\u0644\u0645\u062a\u0628\u0627\u0639\u0629\u061f + +#: Editor.java:2109 +Moving=\u0646\u0642\u0644 + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u062e\u0637\u0623 + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u0627\u0644\u0645\u062c\u0644\u062f \u0627\u0644\u0645\u0633\u0643\u0649 "{0}" \u0645\u0648\u062c\u0648\u062f \u0645\u0633\u0628\u0642\u0627. \u0644\u0627 \u064a\u0645\u0643\u0646 \u0641\u062a\u062d \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=.\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0646\u0634\u0627\u0621 \u0645\u062c\u0644\u062f \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u0646\u0633\u062e \u0644\u0645\u0643\u0627\u0646 \u0645\u0646\u0627\u0633\u0628 + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=.\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0646\u0634\u0627\u0621 \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | \u0623\u0631\u062f\u0648\u064a\u0646\u0648 {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=...\u062d\u0641\u0638 + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=...\u0627\u0646\u062a\u0647\u0627\u0621 \u0627\u0644\u062d\u0641\u0638 + +#: Editor.java:2270 +Save\ Canceled.=.\u0627\u0644\u063a\u0627\u0621 \u0627\u0644\u062d\u0641\u0638 + +#: Editor.java:2296 +#, java-format +!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=.\u0645\u0646\u0641\u0630 \u0627\u0644\u0633\u064a\u0631\u064a\u0627\u0644 {0} \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f \n + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u0627\u0644\u062a\u062d\u0645\u064a\u0644 \u0627\u0646\u062a\u0647\u0649 + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u0627\u0644\u062a\u062d\u0645\u064a\u0644 \u0623\u0644\u063a\u064a + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u062d\u0641\u0638\u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0641\u0628\u0644 \u0627\u0644\u062a\u0635\u062f\u064a\u0631 \u061f + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=.\u0627\u0644\u062a\u0635\u062f\u064a\u0631 \u0627\u0644\u063a\u064a , \u064a\u062c\u0628 \u062d\u0641\u0638 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u062d\u0631\u0642 \u0627\u0644\u0628\u0648\u062a\u0644\u0648\u062f\u0631 \u0644\u0644\u0648\u062d\u0629 \u0627\u0644 I/O (\u064a\u0645\u0643\u0646 \u0627\u0646 \u064a\u0633\u062a\u063a\u0631\u0642 \u062f\u0642\u064a\u0642\u0629 ) ... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u0627\u0644\u0646\u062a\u0647\u0627\u0621 \u062d\u0631\u0642 \u0627\u0644\u0628\u0648\u062a\u0644\u0648\u062f\u0631 + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u062e\u0637\u0623 \u062e\u0644\u0627\u0644 \u0639\u0645\u0644\u064a\u0629 \u062d\u0631\u0642 \u0627\u0644\u0628\u0648\u062a\u0644\u0648\u062f\u0631 + +#: Editor.java:2500 +Printing...=...\u0637\u0628\u0627\u0639\u0629 + +#: Editor.java:2517 +Done\ printing.=...\u0627\u0646\u062a\u0647\u0627\u0621 \u0627\u0644\u0637\u0628\u0627\u0639\u0629 + +#: Editor.java:2520 +Error\ while\ printing.=.\u062e\u0637\u0623 \u062e\u0644\u0627\u0644 \u0627\u0644\u0637\u0628\u0627\u0639\u0629 + +#: Editor.java:2524 +Printing\ canceled.=\u0627\u0644\u0637\u0628\u0627\u0639\u0629 \u0627\u0644\u063a\u064a\u062a + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\u062e\u0637\u0623 \u0633\u064a\u0626 \u0627\u0644\u0633\u0637\u0631 \: {0} + +#: Editor.java:2641 +Open\ URL=\u0627\u0641\u062a\u062d \u0627\u0644\u0631\u0627\u0628\u0637 + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0625\u0635\u062f\u0627\u0631 \u062c\u062f\u064a\u062f \u0645\u0646 \u0627\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648 \u0645\u062a\u0648\u0641\u0631 ,/n \u0647\u0644 \u062a\u0631\u063a\u0628 \u0628\u0632\u064a\u0627\u0631\u0629 \u0635\u0641\u062d\u0629 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648 + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u0646\u0639\u0645 + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u0644\u0627 + +#: UpdateCheck.java:111 +Update=\u062a\u062d\u062f\u064a\u062b + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\u0628\u062d\u062b \: + +#: FindReplace.java:81 +Replace\ with\:=\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0628\: + +#: FindReplace.java:96 +Ignore\ Case=\u062a\u062c\u0627\u0647\u0644 \u0627\u0644\u062d\u0627\u0644\u0629 + +#: FindReplace.java:105 +Wrap\ Around=\u0627\u0644\u062a\u0641 \u062d\u0648\u0644 + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0627\u0644\u0643\u0644 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u0627\u0633\u062a\u0628\u062f\u0627\u0644 + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u0627\u0633\u0628\u062f\u0627\u0644 \u0648 \u0628\u062d\u062b + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u0627\u0644\u0633\u0627\u0628\u0642 + +#: FindReplace.java:124 FindReplace.java:127 +Find=\u0628\u062d\u062b + +#: SerialMonitor.java:93 +Send=\u0627\u0631\u0633\u0644 + +#: SerialMonitor.java:110 +Autoscroll=Autoscroll + +#: SerialMonitor.java:112 +No\ line\ ending=\u0646\u0647\u0627\u064a\u0629 \u0627\u0644\u0633\u0637\u0631 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f\u0629 + +#: SerialMonitor.java:112 +Newline=\u0633\u0637\u0631 \u062c\u062f\u064a\u062f + +#: SerialMonitor.java:112 +Carriage\ return=\u0627\u0639\u0627\u062f\u0629 \u0627\u0644\u062d\u0645\u0644 + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=\u0643\u0644\u0627\u0647\u0645\u0627 NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a ''{0}'' \u0645\u0633\u062a\u062e\u062f\u0645 \u062d\u0627\u0644\u064a\u0627. \u062d\u0627\u0648\u0644 \u0627\u063a\u0644\u0627\u0642 \u0627\u064a \u0628\u0631\u0627\u0645\u062c \u062a\u0633\u062a\u062e\u062f\u0645 \u0630\u0644\u0643 \u0627\u0644\u0645\u0646\u0641\u0630. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=\u062e\u0637\u0623 \u0641\u064a \u0641\u062a\u062d \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644 ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a ''{0}'' \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f. \u0647\u0644 \u0642\u0645\u062a \u0628\u0625\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u0635\u062d\u064a\u062d \u0645\u0646 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0627\u062f\u0648\u0627\u062a > \u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer is too small for the {0} bytes up to and including char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Serial.{0}() \u062e\u0637\u0623 \u062f\u0627\u062e\u0644 + +#: tools/AutoFormat.java:91 +Auto\ Format=\u062a\u0646\u0633\u064a\u0642 \u062a\u0644\u0642\u0627\u0626\u064a + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u0644\u0627 \u064a\u0648\u062c\u062f \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0636\u0631\u0648\u0631\u064a\u0629 \u0644\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0627\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a \u0627\u0644\u063a\u064a\: \u0643\u062b\u064a\u0631 \u0645\u0646 \u0627\u0644\u0627\u0642\u0648\u0627\u0633 \u0627\u0644\u064a\u0645\u064a\u0646 + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0627\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a \u0627\u0644\u063a\u064a\: \u0643\u062b\u064a\u0631 \u0645\u0646 \u0627\u0644\u0627\u0642\u0648\u0627\u0633 \u0644\u062c\u0647\u0629 \u0627\u0644\u0634\u0645\u0627\u0644 + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0627\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a \u0627\u0644\u063a\u064a\: \u0643\u062b\u064a\u0631 \u0645\u0646 \u0627\u0644\u0627\u0642\u0648\u0627\u0633 \u0627\u0644\u0645\u0644\u062a\u0648\u064a\u0629 \u0644\u062c\u0647\u0629 \u0627\u0644\u064a\u0645\u064a\u0646 + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0627\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a \u0627\u0644\u063a\u064a\: \u0643\u062b\u064a\u0631 \u0645\u0646 \u0627\u0644\u0627\u0642\u0648\u0627\u0633 \u0627\u0644\u0645\u0644\u062a\u0648\u064a\u0629 \u0644\u062c\u0647\u0629 \u0627\u0644\u0634\u0645\u0627\u0644 + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u0627\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a \u0627\u0646\u062a\u0647\u0649 + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u0627\u0644\u062a\u0631\u0645\u064a\u0632 \u0648 \u0623\u0639\u062f \u0627\u0644\u062a\u062d\u0645\u064a\u0644 + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u062a\u062c\u0627\u0647\u0644 \u0643\u0644 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0648\u0627\u0639\u062f \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0633\u0643\u062a\u0634 + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u062e\u0637\u0623 \u0627\u062b\u0646\u0627\u0621 \u0645\u062d\u0627\u0648\u0644\u0629 \u062a\u0635\u062d\u064a\u062d \u062a\u0631\u0645\u064a\u0632 \u0627\u0644\u0645\u0644\u0641.\n\u0644\u0627 \u062a\u0642\u0645 \u0628\u062d\u0641\u0638 \u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u062d\u064a\u062b \u064a\u0645\u0643\u0646 \u0627\u0646 \u064a\u0643\u062a\u0628 \u0641\u0648\u0642\u0647 \u0627\u0644\u0627\u0635\u062f\u0627\u0631 \u0627\u0644\u0642\u062f\u064a\u0645\n\u0627\u0633\u062a\u062e\u062f\u0645 \u0641\u062a\u062d \u0644\u0644\u0625\u0639\u0627\u062f\u0629. \u0641\u062a\u062d \u0627\u0644\u0633\u0643\u062a\u0633 \u0648\u062d\u0627\u0648\u0644 \u0645\u0631\u0629 \u0627\u062e\u0631\u0649 + +#: tools/Archiver.java:48 +Archive\ Sketch=\u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0644\u063a\u064a\u062a \u0644\u0623\u0646\u0647\n\u0627\u0644\u0633\u0643\u062a\u0634 \u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0641\u0638\u0647 \u0628\u0634\u0643\u0644 \u0645\u0646\u0627\u0633\u0628 + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 \u0643\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0644\u063a\u064a\u062a + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\u062e\u0637\u0623 \u0627\u062b\u0646\u0627\u0621 \u062a\u062d\u0645\u064a\u0644 \u0627\u0644\u0643\u0648\u062f {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0627\u062d\u0631\u0641 \u063a\u064a\u0631 \u0645\u0639\u0631\u0641\u0629 . \u0627\u0630\u0627 \u0627\u0646\u0634\u0626 \u0627\u0644\u0643\u0648\u062f \u0645\u0639 \u0627\u0635\u062f\u0627\u0631 \u0627\u0642\u062f\u0645 \u0645\u0646 \u0627\u0644\u0645\u0639\u0627\u0644\u062c\u0629 , \u064a\u0644\u0632\u0645\u0643 \u0627\u0646 \u062a\u0633\u062a\u062e\u062f\u0645 \u0627\u062f\u0648\u0627\u062a -> \u0627\u0635\u0644\u0627\u062d \u0627\u0644\u062a\u0631\u0645\u064a\u0632 \u0648\u0627\u0639\u062f\n\u0627\u0644\u062a\u062d\u0645\u064a\u0644 \u0644\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0633\u0643\u062a\u0634 \u0644\u064a\u0633\u062a\u062e\u062f\u0645 \u062a\u0631\u0645\u064a\u0632 UTF-8 . \u063a\u064a\u0631 \u0630\u0644\u0643 \u064a\u0645\u0643\u0646\u0643 \u0627\u0646 \u062a\u062d\u0630\u0641 \u0627\u0644\u0627\u062d\u0631\u0641 \u0627\u0644\u063a\u064a\u0631 \u0645\u0639\u0631\u0641\u0629 \u0644\u0644\u062a\u062e\u0644\u0635 \u0645\u0646 \u0647\u0630\u0627 \u0627\u0644\u062a\u062d\u0630\u064a\u0631. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\u0627\u0644\u0633\u0643\u062a\u0634 \u0644\u0644\u0642\u0631\u0627\u0626\u0629 \u0641\u0642\u0637 + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.="read-only"\u0628\u0639\u0636 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0645\u0639\u0644\u0645\u0629 \u0628\n\u062a\u062d\u062a\u0627\u062c \u0644\u0625\u0639\u0627\u062f\u0629 \u062d\u0641\u0638 \u0641\u064a \u0645\u0643\u0627\u0646 \u0622\u062e\u0631,\n\u0648 \u062d\u0627\u0648\u0644 \u0645\u0631\u0629 \u0627\u062e\u0631\u0649 + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u0627\u0633\u0645 \u0644\u0645\u0644\u0641 \u062c\u062f\u064a\u062f \: + +#: Sketch.java:298 +Sketch\ is\ Untitled=\u0627\u0644\u0633\u0643\u062a\u0634 \u062a\u0645 \u062a\u062d\u062f\u064a\u062b\u0647 + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u0647\u0644 \u062a\u0631\u063a\u0628 \u0628\u062d\u0641\u0638 \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0648\u0644\u0627\n\u0642\u0628\u0644 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0647 + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0639\u0627\u062f\u0629 \u0627\u0644\u062a\u0633\u0645\u064a\u0629 + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=\u0627\u0644\u0627\u0633\u0645 \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0646 \u064a\u0628\u062f\u0623 \u0628\u0645\u0633\u0627\u0641\u0629. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \u0627\u0645\u062a\u062f\u0627\u062f \u063a\u064a\u0631 \u0635\u0627\u0644\u062d + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0631\u0626\u064a\u0633\u064a \u0644\u0627 \u064a\u0633\u062a\u0637\u064a\u0639 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f.\n(\u0642\u062f \u064a\u0643\u0648\u0646 \u0627\u0644\u0648\u0642\u062a \u0642\u062f \u062d\u0627\u0646 \u0644\u062a\u062e\u0631\u064a\u062c\u0647 \u0644\n\u0628\u064a\u0626\u0629 \u0628\u0631\u0645\u062c\u064a\u0629 \u062d\u0642\u064a\u0642\u064a\u0629) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\u0644\u0627 \u064a\u0627 \u0635\u062f\u064a\u0642\u064a + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0645\u0633\u0645\u0649 "{0}" \u0645\u0648\u062c\u0648\u062f \u0645\u0633\u0628\u0642\u0627 \u0641\u064a "{1}" + +#: Sketch.java:415 +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\u0633\u0643\u062a\u0634 + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.="{0}"\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 \u0644\n\u0644\u0623\u0646 \u0627\u0644\u0633\u0643\u062a\u0634 \u0645\u0633\u0628\u0642\u0627 \u0644\u062f\u064a\u0647 \u0645\u0644\u0641 .cpp \u0645\u0639 \u0646\u0641\u0633 \u0627\u0644\u0627\u0633\u0645 + +#: Sketch.java:459 +Cannot\ Rename=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u0639\u062f\u0629 \u0627\u0644\u062a\u0633\u0645\u064a\u0629 + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0627\u0633\u0641, \u0627\u0644\u0633\u0643\u062a\u0634 (\u0627\u0648 \u0627\u0644\u0645\u062c\u0644\u062f ) \u0645\u0633\u0645\u0649 \u0628 "{0}" \u0645\u0633\u062a\u062e\u062f\u0645 \u0645\u0633\u0628\u0642\u0627 + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0625\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 .(0 ) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"="{1}" \u0627\u0644\u0649 "{0}" \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0645\u0644\u0641 . (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0645\u0644\u0641 . (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() returned false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0627\u0644\u0633\u0643\u062a\u0634 \u061f + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 "{0}"\u061f + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u062d\u0630\u0641 + +#: Sketch.java:620 +Couldn't\ do\ it=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0641\u0639\u0644 \u0630\u0644\u0643 + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=\u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0630\u0641 "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u062e\u0637\u0623 \u062f\u0627\u062e\u0644\u064a .. \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u064a\u062c\u0627\u062f \u0627\u0644\u0643\u0648\u062f + +#: Sketch.java:724 +Sketch\ is\ read-only=\u0627\u0644\u0633\u0643\u062a\u0634 \u0644\u0644\u0642\u0631\u0627\u0621\u0629 \u0641\u0642\u0637 + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u0628\u0639\u0636 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0645\u0639\u0644\u0645\u0629 \u0628 "read-only" , \u0644\u0630\u0644\u0643 \u0633\u0648\u0641 \u062a\u062d\u062a\u0627\u062c \u0627\u0646\n\u062a\u0639\u064a\u062f \u062d\u0641\u0638 \u0627\u0644\u0633\u0643\u062a\u0634 \u0641\u064a \u0645\u0643\u0627\u0646 \u0622\u062e\u0631. + +#: Sketch.java:743 +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?=\u0641\u064a Arduino 1.0 \u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a \u0642\u062f \u062a\u063a\u064a\u0631\n\u0645\u0646 .pde \u0627\u0644\u0649 .ino. \u0627\u0644\u0633\u0643\u062a\u0634\u0627\u062a \u0627\u0644\u062c\u062f\u064a\u062f\u0629 \u0633\u0648\u0641 \u062a\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f \u0627\u0644\u062c\u062f\u064a\u062f -\n\u0627\u064a\u0636\u0627 \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0646\u0634\u0623\u0629 \u0628\u0648\u0627\u0633\u0637\u0629 \u062d\u0641\u0638 \u0628\u0625\u0633\u0645 - \u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f \u0644\u0644\u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0645\u0648\u062c\u0648\u062f\u0629\n\u0633\u0648\u0641 \u064a\u062d\u062f\u062b \u0639\u0646\u062f \u0627\u0644\u062d\u0641\u0638. \u0644\u0643\u0646 \u064a\u0645\u0643\u0646\u0643 \u0627\u0646 \u062a\u062a\u062d\u0643\u0645 \u0628\u0630\u0644\u0643 \u0645\u0646 \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u062e\u0635\u0627\u0626\u0635\n\u062d\u0641\u0638 \u0627\u0644\u0633\u0643\u062a\u0634 \u0648\u062a\u062d\u062f\u064a\u062b \u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f \u061f + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=\u062d\u0641\u0638 \u0645\u062c\u0644\u062f \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0644\u0649 ... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.="{0}"\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0628\u0638 \u0627\u0644\u0633\u0643\u062a\u0634 \u0628\u0640\n\u0644\u0627\u0646 \u0633\u0643\u062a\u0634 \u0645\u0648\u062c\u0648\u062f \u0641\u0639\u0644\u0627. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=\u0645\u0627 \u0647\u0630\u0647 \u0627\u0644\u0633\u062e\u0627\u0641\u0629 + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0641\u0638 \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0644\u0649 \u0646\u0641\u0633\u0647\n\u0631\u0628\u0645\u0627 \u064a\u0633\u064a\u0631 \u0627\u0644\u0649 \u0627\u0644\u0627\u0628\u062f. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0627\u062e\u062a\u064a\u0627\u0631 \u0627\u0644\u0635\u0648\u0631\u0629 \u0627\u0648 \u0645\u0644\u0641 \u0644\u0646\u0633\u062e\u0647 \u0627\u0644\u0649 \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=\u0627\u0633\u062a\u0628\u062f\u0627\u0644 \u0627\u0644\u0627\u0635\u062f\u0627\u0631 \u0627\u0644\u0645\u0648\u062c\u0648\u062f {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0636\u0627\u0641\u0629 \u0627\u0644\u0645\u0644\u0641 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=''{0}''\u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0630\u0641 \u0627\u0644\u0645\u0644\u0641 + +#: Sketch.java:1078 +You\ can't\ fool\ me=\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062e\u062f\u0627\u0639\u064a + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u062a\u0645 \u0628\u0627\u0644\u0641\u0639\u0644 \u0646\u0633\u062e\u0647 \u0627\u0644\u0649\n\u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0630\u064a \u062a\u062d\u0627\u0648\u0644 \u0627\u0636\u0627\u0641\u062a\u0647 \u0627\u0644\u064a\u0647. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0636\u0627\u0641\u0629 ''{0}'' \u0627\u0644\u0649 \u0627\u0644\u0633\u0643\u062a\u0634. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0645\u062c\u0644\u062f \u0627\u0644\u0628\u0646\u0627\u0621 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0648 \u0627\u0646\u0647 \u0644\u0627\u064a\u0645\u0643\u0646 \u0627\u0644\u0643\u062a\u0627\u0628\u0629 \u0639\u0644\u064a\u0647 + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\u0644\u0627 \u064a\u0648\u062c\u062f \u0627\u0644\u0643\u0644\u0627\u0633 \u0627\u0644\u0627\u0633\u0627\u0633\u064a + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=\u0646\u0648\u0639 \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u063a\u064a\u0631 \u0645\u062d\u062f\u062f\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0646\u0642\u0644 {0} \u0627\u0644\u0649 \u0627\u0644\u0641\u0648\u0644\u062f\u0631 \u0627\u0644\u0628\u0646\u0627\u0621 + +#: Sketch.java:1661 +Uploading...=\u0631\u0641\u0639 + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u062d\u062c\u0645 \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0644\u0645\u062a\u0631\u062c\u0645\: {0} \u0628\u0627\u064a\u062a ( {1} \u0643\u062d\u062f \u0623\u0642\u0635\u0649 + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u062a\u062d\u062f\u064a\u062f \u062d\u062c\u0645 \u0627\u0644\u0628\u0631\u0646\u0627\u0645\u062c {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0627\u0644\u0633\u0643\u062a\u0634 \u0643\u0628\u064a\u0631 \u062c\u062f\u0627; \u0631\u0627\u062c\u0639\n\u0645\u0644\u0627\u062d\u0638\u0627\u062a \u0644\u0627\u062e\u062a\u0635\u0627\u0631\u0647. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u0646\u0647\u0627\u064a\u0629 \u0627\u0644\u062a\u0639\u0644\u064a\u0642 /* \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f /* \u062a\u0639\u0644\u064a\u0642*/ + +#: Sketch.java:1796 +Sketch\ Disappeared=\u0627\u0644\u0633\u0643\u062a\u0634 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u0645\u062c\u0644\u062f \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u062e\u062a\u0641\u0649.\n \u062d\u0627\u0648\u0644 \u0627\u0639\u0627\u062f\u0629 \u062d\u0641\u0638\u0647 \u0641\u064a \u0646\u0641\u0633 \u0627\u0644\u0645\u0643\u0627\u0646,\n\u0648\u0644\u0643\u0646 \u0633\u064a\u062a\u0645 \u0641\u0642\u062f\u0627\u0646 \u0627\u0644\u0643\u0648\u062f. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u0646\u0633\u062e \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Sketch.java:1811 +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.=\u0644\u0627 \u064a\u0645\u0643\u0646\u0647 \u0627\u0639\u0627\u062f\u0629 \u062d\u0641\u0638. \u0627\u0644\u0627\u0645\u0631 \u062e\u0637\u064a\u0631,\n\u0648\u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0646\u0633\u062e \u0627\u0644\u0646\u0635 \u0648\u0644\u0635\u0642\u0647 \u0641\u064a \u0645\u062d\u0631\u0631 \u0646\u0635\u0648\u0635 \u0627\u062e\u0631. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0627\u0633\u0645 \u0627\u0644\u0633\u0643\u062a\u0634 \u062a\u0645 \u062a\u063a\u064a\u0631\u0647. \u0627\u0633\u0645 \u0627\u0644\u062a\u0643\u062a\u0634 \u064a\u062c\u0628 \u0627\u0646 \u064a\u0643\u0648\u0646\n\u0639\u0646\u0635\u0631\u0627\u0645\u0646 ASCII \u0627\u0648 \u0631\u0642\u0645 (\u0644\u0643\u0646 \u0644\u0627 \u064a\u062c\u0648\u0632 \u0627\u0646 \u064a\u0628\u062f\u0623 \u0631\u0642\u0645).\n\u064a\u062c\u0628 \u0627\u0646 \u064a\u0643\u0648\u0646 \u0627\u0642\u0644 \u0645\u0646 64 \u062d\u0631\u0641 \u0648\u0631\u0642\u0645. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u062a\u0631\u062c\u0645\u0629, \u0631\u062c\u0627\u0621\u0627 \u0627\u0631\u0633\u0644 \u0627\u0644\u0643\u0648\u062f \u0627\u0644\u0649 {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u0631\u0642\u0645 \u0627\u0644\u0645\u0646\u0641\u0630 port {0} \u0627\u0644\u0645\u062e\u062a\u0627\u0631 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0648 \u0627\u0646 \u0627\u0644\u0628\u0648\u0631\u062f \u063a\u064a\u0631 \u0645\u0648\u0635\u0648\u0644 + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u0627\u0644\u062c\u0647\u0627\u0632 \u0644\u0627 \u064a\u0633\u062a\u062c\u064a\u0628, \u062a\u0623\u0643\u062f \u0645\u0646 \u0627\u0644\u0645\u0646\u0641\u0630 port \u0627\u0648 \u0642\u0645 \u0628\u0627\u0639\u062f\u0627\u062a \u0627\u0644\u062a\u0634\u063a\u064a\u0644 RESET \u0644\u0644\u0628\u0648\u0631\u062f \u0642\u0628\u0644 \u0627\u0644\u0631\u0641\u0639 + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0644\u0631\u0641\u0639 \u0627\u0644\u0649 \u0627\u0644\u0628\u0648\u0631\u062f. \u0631\u0627\u062c\u0639 http\://www.arduino.cc/en/Guide/Troubleshooting\#upload f\u0639\u0644\u0649 \u0633\u0628\u064a\u0644 \u0627\u0644\u0627\u0642\u062a\u0631\u0627\u062d . + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0648\u062c\u062f \u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u0645\u0627\u064a\u0643\u0631\u0648 \u0643\u0648\u0646\u062a\u0631\u0648\u0644\u0631. \u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0645\u0646 \u0646\u0648\u0639 \u0627\u0644\u0628\u0648\u0631\u062f \u0627\u0644\u0645\u062e\u062a\u0627\u0631 \u0641\u064a \u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0623\u062f\u0648\u0627\u062a + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0644\u0645 \u062a\u062e\u062a\u0627\u0631 \u0627\u0644\u0628\u0648\u0631\u062f; \u0631\u062c\u0627\u0621\u0627 \u0627\u062e\u062a\u0627\u0631 \u0627\u0644\u0628\u0648\u0631\u062f \u0645\u0646 \u0642\u0627\u0626\u0645\u0629 \u0623\u062f\u0648\u0627\u062a > \u0628\u0648\u0631\u062f. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} \u0623\u0631\u062c\u0639 {1} + +#: debug/Compiler.java:426 +Error\ compiling.=\u062e\u0637\u0623 \u0641\u064a \u0627\u0644\u062a\u0631\u062c\u0645\u0629 + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u0633\u062a\u0648\u0631\u062f \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0640SPI \u0645\u0646 \u0627\u0644\u0642\u0627\u0626\u0645\u0629 \u0633\u0643\u062a\u0634 > \u0642\u0627\u0626\u0645\u0629 \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0645\u0643\u062a\u0628\u0629 + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0643\u0645\u0627 \u0641\u064a \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 0019, \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0640 Ethernet \u0645\u0639\u062a\u0645\u062f\u0629 \u0639\u0644\u0649 \u0645\u0643\u062a\u0628\u0629 SPI.\n\u0631\u0628\u0645\u0627 \u0639\u0644\u064a\u0643 \u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u0643\u062a\u0628\u0629 \u0627\u062e\u0631\u0649 \u0645\u0639\u062a\u0645\u062f\u0629 \u0639\u0644\u0649 SPI \n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0627\u0644\u0640 'BYTE' \u0644\u0645 \u062a\u0639\u062f \u0645\u062f\u0639\u0648\u0645\u0629. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u0643\u0645\u0627 \u0641\u064a \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 1.0, \u0627\u0644\u0640 'BYTE' \u0644\u0645 \u062a\u0639\u062f \u0645\u062f\u0639\u0648\u0645\u0629.\n\u0631\u062c\u0627\u0621\u0627 \u0627\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0640\u0640 Serial.write().\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0627\u0644\u0640 Server class \u0623\u0639\u064a\u062f \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u0643\u0645\u0627 \u0641\u064a \u0627\u0644\u0623\u062f\u0631\u0648\u0646\u0648 1.0, Server class \u0641\u064a Ethernet \u0623\u0639\u064a\u062f \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u0627\u0644\u0640 Client class \u0623\u0639\u064a\u062f \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0643\u0645 \u0647\u0648 \u0641\u064a \u0627\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648 1.0, Client class \u0641\u064a \u0645\u0643\u062a\u0628\u0629 Ethernet \u0623\u0639\u064a\u062f \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=The Udp class \u0623\u0639\u064a\u062f \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0643\u0645\u0627 \u0647\u0648 \u0641\u064a \u0627\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648 1.0 , \u0627\u0644\u0640 Udp class \u0641\u064a \u0645\u0643\u062a\u0628\u0629 Ethernet \u062a\u0645 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0623\u0639\u064a\u062f\u062a \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0643\u0645\u0627 \u0647\u0648 \u0641\u064a \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 1.0, \u0627\u0644\u0640 Wire.send() \u062a\u0645 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 Wire.write() \u0645\u0646 \u0627\u062c\u0644 \u0627\u0644\u062a\u0646\u0627\u0633\u0642 \u0645\u0639 \u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a \u0627\u0644\u0623\u062e\u0631\u0649.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u062a\u0645 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u062a\u0647\u0627 \u0627\u0644\u0649Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0643\u0645\u0627 \u0647\u0648 \u0641\u064a \u0627\u0631\u062f\u0648\u064a\u0646\u0648 1.0, \u0627\u0644\u0640 Wire.receive() \u062a\u0645 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u062a\u0647 \u0627\u0644\u0649 Wire.read() \u0645\u0646 \u0627\u062c\u0644 \u0627\u0644\u062a\u0646\u0627\u0633\u0642 \u0645\u0639 \u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a \u0627\u0644\u0623\u062e\u0631\u0649.\n\n + +#: EditorConsole.java:152 +Console\ Error=\u062e\u0637\u0623 \u0641\u064a \u0648\u062d\u062f\u0629 \u0627\u0644\u062a\u062d\u0643\u0645 Console + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u062d\u062f\u062b\u062a \u0645\u0634\u0643\u0644\u0629 \u0627\u062b\u0646\u0627\u0621 \u0641\u062a\u062d\n\u0645\u0644\u0641\u0627\u062a \u062a\u0633\u062a\u062e\u062f\u0645 \u0644\u062a\u062e\u0632\u064a\u0646 \u0627\u0644\u0645\u062e\u0631\u062c\u0627\u062a. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u062e\u0637\u0623 \u063a\u064a\u0631 \u0636\u0627\u0631 \u0627\u062b\u0646\u0627\u0649 \u0627\u0639\u062f\u0627\u062f \u0627\u0644\u0648\u0627\u062c\u0647\u0629 \u0648\u0627\u0644\u0634\u0639\u0648\u0631 + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u0627\u062a\u0628\u0627\u0639 \u0631\u0627\u0633\u0627\u0644\u0629 \u0627\u0644\u062e\u0637\u0623\u060c \u0639\u0644\u0649 \u0643\u0644 \u062d\u0627\u0644 \u0633\u062a\u0639\u0645\u0644 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0628\u0634\u0643\u0644 \u062c\u064a\u062f + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0645\u0646\u0635\u0629 \u062e\u0627\u0637\u0626\u0629 + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0645\u0634\u0643\u0644\u0629 \u063a\u064a\u0631 \u0645\u0639\u0631\u0648\u0641\u0629 \u0627\u062b\u0646\u0627\u0621 \u062a\u062d\u0645\u064a\u0644\n\u0627\u0644\u0645\u0646\u0635\u0629 \u0627\u0644\u0645\u062e\u0635\u0635\u0629 \u0639\u0644\u0649 \u062c\u0647\u0627\u0632\u0643. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0646\u0635\u064a\u0628 JDK 1.5 \u0623\u0648 \u0627\u062d\u062f\u062b + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0628\u062d\u0627\u062c\u0629 \u0627\u0644\u0649 JDK \u0648\u0644\u064a\u0633 \u0641\u0642\u0637 JRE \u0644\u0643\u064a \u064a\u0634\u062a\u063a\u0644\n\u0627\u0644\u0631\u062c\u0627\u0621 \u062a\u0646\u0635\u064a\u0628 JDK 1.5 \u0623\u0648 \u0623\u062d\u062f\u062b.\n\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u062a\u0641\u0627\u0635\u064a\u0644 \u062a\u062c\u062f\u0647\u0627 \u0641\u064a \u0627\u0644\u0645\u0631\u0627\u062c\u0639. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u0645\u062c\u0644\u062f \u0627\u0644\u0633\u0643\u062a\u0634 \u0628\u0648\u0643 \u0645\u062e\u062a\u0641\u064a + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0645\u062c\u0644\u062f \u0627\u0644\u0633\u0643\u062a\u0634 \u0628\u0648\u0643 \u0644\u0645 \u064a\u0639\u062f \u0645\u0648\u062c\u0648\u062f\u0627.\n\u0633\u064a\u0646\u062a\u0642\u0644 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0627\u0644\u0649 \u0645\u0643\u0627\u0646 \u0627\u0644\u0633\u0643\u062a\u0634 \u0628\u0648\u0643\n\u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a, \u0627\u0648 \u0627\u0646\u0634\u0627\u0621 \u0648\u0627\u062d\u062f \u062c\u062f\u064a\u062f \u0627\u0630\u0627 \u062a\u0637\u0644\u0628 \u0627\u0644\u0623\u0645\u0631if\n. \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0633\u064a\u0648\u0642\u0641 \u0627\u0644\u062d\u062f\u064a\u062b \n\u0639\u0646 \u0646\u0641\u0633\u0647. + +#: Base.java:532 +Time\ for\ a\ Break=\u0648\u0642\u062a \u0627\u0644\u0627\u0633\u062a\u0631\u0627\u062d\u0629 + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0644\u0642\u062f \u0648\u0635\u0644\u062a \u0627\u0644\u0649 \u0627\u0644\u062d\u062f \u0627\u0644\u0627\u0642\u0635\u0649 \u0644\u0644\u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a\u0629\u0644\u0644\u064a\u0648\u0645. \u0645\u0627\u0630\u0627 \u0639\u0646 \u0627\u0644\u062e\u0631\u0648\u062c \u0641\u064a \u0646\u0632\u0647\u0629 \u0628\u062f\u0644 \u0627\u0644\u0644\u064a\u0648\u0645? + +#: Base.java:537 +Sunshine=\u0623\u0634\u0639\u0629 \u0627\u0644\u0634\u0645\u0633 + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0644\u0627 \u064a\u0627 \u0635\u062f\u064a\u0642\u064a , \u062d\u0627\u0646 \u0627\u0644\u0648\u0642\u062a \u0644\u062a\u0623\u062e\u0630 \u0641\u062a\u0631\u0629 \u0631\u0627\u062d\u0629 \u0642\u0635\u064a\u0631\u0629 + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u0641\u062a\u062d \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0633\u0643\u062a\u0634 + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0623\u0643\u062f \u0645\u0646 \u0627\u0644\u062e\u0631\u0648\u062c \u061f

\u0627\u063a\u0644\u0627\u0642 \u0627\u062e\u0631 \u0633\u0643\u062a\u0634 \u0633\u0648\u0641 \u064a\u063a\u0644\u0642 \u0627\u0644\u0627\u0631\u062f\u064a\u0648\u0646\u0648. + +#: Base.java:970 +Contributed=\u0645\u0633\u0627\u0647\u0645\u0629 + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u0627\u0644\u0633\u0643\u062a\u0634 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0644\u0645\u062d\u062f\u062f \u0644\u0645 \u064a\u0639\u062f \u0645\u0648\u062c\u0648\u062f\u0627.\n\u064a\u062c\u0628 \u0627\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0644\u0644\u062a\u062d\u062f\u064a\u062b\n\u0642\u0627\u0626\u0645\u0629 \u0627\u0644\u0633\u0643\u062a\u0634 \u0628\u0648\u0643. + +#: Base.java:1125 +#, 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}=\u0627\u0644\u0633\u0643\u062a\u0634 "{0}" \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647.\n\u0627\u0633\u0645 \u0627\u0644\u0633\u0643\u062a\u0634 \u064a\u062c\u0628 \u0627\u0646 \u064a\u062d\u062a\u0648\u064a \u062d\u0631\u0648\u0641 \u0648\u0627\u0631\u0642\u0627\u0645 \u0641\u0642\u0637\n(\u062d\u0631\u0648\u0641 \u0645\u0646 \u062f\u0648\u0646 \u0641\u0631\u0627\u063a\u0627\u062a,\u0648\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0646 \u064a\u0628\u062f\u0623 \u0641\u064a \u0631\u0642\u0645).\n\u0644\u062a\u062e\u0644\u0635 \u0645\u0646 \u0647\u0630\u0647 \u0627\u0644\u0631\u0633\u0627\u0644\u0629, \u0627\u062d\u0630\u0641 \u0627\u0644\u0633\u0643\u062a\u0634 \u0645\u0646 \n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\u062a\u062c\u0627\u0647\u0644 \u0627\u0644\u0633\u0643\u062a\u0634 \u0630\u0627\u062a \u0627\u0644\u0627\u0633\u0645 \u0627\u0644\u062e\u0627\u0637\u0626 + +#: Base.java:1202 +#, 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)=\u0627\u0644\u0645\u0643\u062a\u0628\u0629 "{0}" \u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0633\u062a\u062e\u062f\u0627\u0645\u0647\u0627.\n\u0627\u0633\u0645 \u0627\u0644\u0645\u0643\u062a\u0628\u0629 \u064a\u062c\u0628 \u0627\u0646 \u064a\u0643\u0648\u0646 \u062d\u0631\u0648\u0641 \u0648\u0627\u0631\u0642\u0627\u0645 \u0641\u0642\u0637.\n(\u0644\u0627 \u0641\u0631\u0627\u063a\u0627\u062a \u0648\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u0628\u062f\u0621 \u0641\u064a \u0631\u0642\u0645) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u062a\u062c\u0627\u0647\u0644 \u0627\u0633\u0645 \u0627\u0644\u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u062e\u0627\u0637\u0626 + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u062c\u0644\u062f \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u062c\u0644\u062f \u0628\u064a\u0627\u0646\u0627\u062a \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 + +#: Base.java:1440 +Settings\ issues=\u0636\u0628\u0637 \u0627\u0644\u0642\u0636\u0627\u064a\u0627 + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0644\u0627 \u062a\u0639\u0645\u0644 \u0644\u0639\u062f\u0645\n\u062a\u0645\u0643\u0646\u0647\u0627 \u0645\u0646 \u0627\u0646\u0634\u0627\u0621 \u0645\u062c\u0644\u062f \u0644\u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u0644\u0642\u062f \u0646\u0633\u064a\u062a \u0627\u0644\u0633\u0643\u062a\u0634\u0628\u0648\u0643 (sketchbook) + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u0627\u0644\u0627\u0631\u062f\u064a\u0648\u064a\u0646\u0648 \u0644\u0645 \u062a\u062a\u0645\u0643\u0646 \u0645\u0646 \u0627\u0644\u062a\u0634\u063a\u064a\u0644 \u0628\u0633\u0628\u0628 \u0627\u0646\u0647\u0627 \n\u0644\u0627 \u062a\u0633\u062a\u0637\u064a\u0639 \u0627\u0646\u0634\u0627\u0621 \u0645\u062c\u0644\u062f \u0644\u062d\u0641\u0638 \u0627\u0644\u0633\u0643\u062a\u0634\u0628\u0648\u0643 (sketchbook). + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0627\u062e\u062a\u064a\u0627\u0631(\u0627\u0648 \u0627\u0646\u0634\u0627\u0621 \u062c\u062f\u064a\u062f) \u0644\u0645\u062c\u0644\u062f \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Base.java:1647 +Problem\ Opening\ URL=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0641\u062a\u062d \u0639\u0646\u0648\u0627\u0646 URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0641\u062a\u062d \u0639\u0646\u0648\u0627\u0646 URL \n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0641\u062a\u062d \u0627\u0644\u0645\u062c\u0644\u062f + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0641\u062a\u062d \u0627\u0644\u0645\u062c\u0644\u062f\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u0627\u0644\u0628\u064a\u0626\u0629 + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u0631\u0633\u0627\u0644\u0629 + +#: Base.java:1842 +Warning=\u062a\u062d\u0630\u064a\u0631 + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0630\u0641 \u0627\u0644\u0627\u0635\u062f\u0627\u0631 \u0627\u0644\u0633\u0627\u0628\u0642 {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0633\u062a\u0628\u062f\u0627\u0644 {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u062d\u0630\u0641 {0} + +#: EditorHeader.java:292 +New\ Tab=\u062a\u0628\u0648\u064a\u0628 \u062c\u062f\u064a\u062f + +#: EditorHeader.java:300 +Rename=\u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 + +#: EditorHeader.java:326 +Previous\ Tab=\u0627\u0644\u062a\u0628\u0648\u064a\u0628 \u0627\u0644\u0633\u0627\u0628\u0642 + +#: EditorHeader.java:340 +Next\ Tab=\u062a\u0628\u0648\u064a\u0628 \u062c\u062f\u064a\u062f + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u0641\u062d\u0635 + +#: EditorToolbar.java:41 +Open=\u0641\u062a\u062d + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u0646\u0627\u0641\u0630\u0629 \u062a\u062d\u0631\u064a\u0631 \u062c\u062f\u064a\u062f\u0629 + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u0641\u062a\u062d \u0646\u0627\u0641\u0630\u0629 \u0627\u062e\u0631\u0649 + +#: Platform.java:167 +No\ launcher\ available=\u0644\u0627 \u064a\u0648\u062c\u062f \u0645\u0646\u0635\u0629 \u0645\u062a\u0627\u062d\u0629 + +#: 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=\u0627\u0644\u0645\u0646\u0635\u0629 \u063a\u064a\u0631 \u0645\u062d\u062f\u062f\u0629\u060c \u0627\u0644\u0645\u0634\u063a\u0644 \u063a\u064a\u0631 \u0645\u062a\u0627\u062d.\n\u0627\u0636\u0641 \u0633\u0637\u0631 "launcher\=/path/to/app" \u0627\u0644\u0649 preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0642\u0631\u0627\u0626\u0629 \u0627\u0639\u062a\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0627\u0644\u0648\u0627\u0646.\n\u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0627\u0639\u0627\u062f\u0629 \u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u0639\u0645\u0644\u064a\u0629 + +#: Preferences.java:80 +Browse=\u0627\u0633\u062a\u0639\u0631\u0627\u0636 + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0642\u0631\u0627\u0626\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629\u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0627\u0639\u0627\u062f\u062a \u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0642\u0631\u0627\u0626\u0629 \u0627\u0644\u062e\u0635\u0627\u0626\u0635 \u0645\u0646 {0} + +#: Preferences.java:261 +Error\ reading\ preferences=\u062e\u0637\u0627 \u0641\u064a \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u062e\u0635\u0627\u0626\u0635 + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u062e\u0637\u0627\u0641\u064a \u0642\u0631\u0627\u0626\u0629 \u0645\u0644\u0641 \u0627\u0644\u062e\u0635\u0627\u0626\u0635 . \u0631\u062c\u0627\u0621\u0627 \u0627\u062d\u0630\u0641 (\u0627\u0648 \u0627\u0646\u0642\u0644 )\n{0} \u062b\u0645 \u0627\u0639\u062f \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0627\u0631\u062f\u064a\u0648\u0646\u0648 + +#: Preferences.java:299 +Sketchbook\ location\:=\u0645\u0643\u0627\u0646 \u0627\u0644\u0633\u0643\u062a\u0634 + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u0627\u062e\u062a\u064a\u0627\u0631 \u0645\u0643\u0627\u0646 \u0627\u0644\u0633\u0643\u062a\u0634 \u0627\u0644\u062c\u062f\u064a\u062f + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=(\u064a\u062a\u0637\u0644\u0628 \u0627\u0639\u0627\u062f\u062a \u062a\u0634\u063a\u064a\u0644 \u0644\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648) + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u062d\u062c\u0645 \u062e\u0637 \u0627\u0644\u0645\u062d\u0631\u0631 \: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u0639\u0631\u0636 \u0627\u0644\u0645\u062e\u0631\u062c\u0627\u062a \u062e\u0644\u0627\u0644 + +#: Preferences.java:373 +compilation\ =\u062a\u0631\u062c\u0645\u0629 + +#: Preferences.java:375 +upload=\u0631\u0641\u0639 + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +Use\ external\ editor=\u0627\u0633\u062a\u0639\u0645\u0627\u0644 \u0645\u062d\u0631\u0631 \u062e\u0627\u0631\u062c\u064a + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u0627\u0641\u062d\u0635 \u0627\u0644\u062a\u062d\u062f\u064a\u062b\u0627\u062a \u0639\u0646\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u062a\u062d\u062f\u064a\u062b \u0645\u0644\u0641\u0627\u062a \u0627\u0644\u0633\u0643\u062a\u0634 \u0645\u0644\u0641 \u0627\u0644\u0649 \u0627\u0644\u0627\u0645\u062a\u062f\u0627\u062f \u0627\u0644\u062c\u062f\u064a\u062f \u0639\u0646\u062f \u0627\u0644\u062d\u0641\u0638 (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=\u062f\u0645\u062c .ino \u0628\u0634\u0643\u0644 \u062a\u0644\u0642\u0627\u0626\u064a \u0645\u0639 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u064a\u0645\u0643\u0646 \u062a\u0639\u062f\u064a\u0644 \u062e\u0635\u0627\u0626\u0635 \u0627\u0643\u062b\u0631 \u0628\u062a\u0639\u062f\u064a\u0644 \u0627\u0644\u0645\u0644\u0641 \u0628\u0634\u0643\u0644 \u0645\u0628\u0627\u0634\u0631 + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u062a\u062d\u0631\u064a\u0631 \u0648\u0627\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648 \u062a\u0639\u0645\u0644) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u062a\u062c\u0627\u0647\u0644 \u0627\u0644\u062e\u0637\u0623 \u0641\u064a \u062d\u062c\u0645 \u0627\u0644\u062e\u0637 {0} diff --git a/app/src/processing/app/Resources_ca.po b/app/src/processing/app/Resources_ca.po new file mode 100644 index 000000000..b614726be --- /dev/null +++ b/app/src/processing/app/Resources_ca.po @@ -0,0 +1,1633 @@ +# Catalan translations for Arduino IDE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# David A. Mellis <>, 2012. +# Translation to Catalan by Albert Segura +# +msgid "" +msgstr "" +"Project-Id-Version: Versió 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-04-05 14:18+0100\n" +"Last-Translator: Albert Segura \n" +"Language-Team: Català \n" +"Language: ca\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Poedit-Language: Catalan\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "No s'ha afegit cap fitxer al sketch." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "S'ha afegit un fitxer al sketch." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} fitxers afegits al sketch." + +#: Editor.java:484 +msgid "File" +msgstr "Fitxer" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nou" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Obrir..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Sketchbook" + +#: Editor.java:509 +msgid "Examples" +msgstr "Exemples" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Tanca" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Desa" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Anomena i desa..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Puja" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Puja utilitzant un Programador" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Configuració de la pàgina" + +#: Editor.java:564 +msgid "Print" +msgstr "Imprimeix" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferències" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Sortir" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verifica / Compila" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importa biblioteca..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Mostra la carpeta del Sketch" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Afegeix fitxer..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Eines" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitor sèrie" + +#: Editor.java:682 +msgid "Board" +msgstr "Placa" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Port sèrie" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programador" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Enregistra Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu es null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "El nom es null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "S'ha produït un error en obtenir la llista de ports" + +#: Editor.java:1002 +msgid "Help" +msgstr "Ajuda" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Primers passos" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Entorn" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Solució de problemes" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referència" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Cerca a Referència" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Preguntes Més Freqüents" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Visita Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Quant a Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Edita" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Desfés" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Refés" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Retalla" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Copia" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copia pel Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Desa com a HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Enganxa" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Selecciona-ho Tot" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Comenta/Descomenta" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Augmenta el sagnat" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Disminueix el sagnat" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Cerca..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Cerca el següent" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Cerca l'anterior" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Utilitza la selecció per cercar" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Primer seleccioni una paraula per cercar en la referència." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "No hi ha referencia disponible per a \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Compilant el sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compilació enllestida." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Desar els canvis a \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " Vol desar els canvis a aquest sketch
abans de tancar?

Si no ho desa, els canvis es perdran." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Cancel·la" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "No deseu" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Fitxer seleccionat incorrecte" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"El Processament només pot obrir els seus propis sketches\n" +"i altres fitxers acabats en .ino o .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "D'acord" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"El fitxer \"{0}\" ha d'estar a dins de\n" +"la carpeta del cketch anomenada \"{1}\".\n" +"Vol crear aquesta carpeta, moure el fitxer, i continuar?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "S'està movent" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Error" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "La carpeta anomenada \"{0}\" ja existeix. No es pot obrir el sketch." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "No s'ha pogut crear la carpeta del sketch." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "No s'ha pogut copiar a una localització correcte" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "No s'ha pogut crear el sketch." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "S'està desant..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Guardat enllestit." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Guardat cancel·lat." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Port sèrie {0} no trobat.\n" +"Re-intentar la pujada amb un altre port sèrie?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Pujant a la I/O de la Placa ..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Pujada enllestida." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Pujada cancel·lada." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Voleu desar els canvis abans d'exportar?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exportació cancel·lada, s'han de desar els canvis abans." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Enregistrant el bootloader a la I/O placa (pot durar uns minuts)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Enregistrament del bootloader llesta." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Error al enregistrar el bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "S'està imprimint..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Impressió finalitzada." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "S'ha produït un error mentre s'imprimia" + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Impressió cancel·lada." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Línia d'error incorrecta: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Obre l'URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Una nova versió de l'Arduino està disponible,\n" +"voldria visitar la pàgina de descarrega d'Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Sí" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "No" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Actualitza" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Cerca:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Substitueix amb:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignora diferències entre majúscules i minúscules" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Envolta" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Reemplaça-ho tot" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Reemplaça" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Cerca i reemplaça" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Anterior" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Cerca" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Envia" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Desplaçament automàtic" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Sense salts de línia" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Línia nova" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Retorn de carro" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Ambdós NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "Port sèrie \"{0}\" ja en ús. Provi de finalitzar programes que puguin estar utilitzant-lo." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Error al obrir el port sèrie \"{0}\"." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "Port sèrie \"{0}\" no trobat. Ha seleccionat el port corresponent al menú Eines > Port sèrie?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "El buffer de bytes readBytesUntil() és massa petit pels {0} bytes fins i incloent el char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Error a dins del Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Format automàtic" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Cap canvi necessari pel format automàtic." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Format automàtic cancel·lat: Massa parèntesis d'obertura." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Format automàtic cancel·lat: Massa parèntesis de tancament." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Format automàtic cancel·lat: Massa claus d'obertura." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Format automàtic cancel·lat: Massa claus de tancament." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Format automàtic finalitzat." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Arregla la codificació i recarrega" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Desfer tots els canvis i recarregar el sketch?" + +#: 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 "" +"Un error ha succeït provant de arreglar la codificació del fitxer.\n" +"No provi de desar aquest sketch, podria sobreescriure\n" +"la versió antiga. Utilitzi Obrir per re-obrir el sketch i tornar-ho a provar.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arxiva Sketch" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "No s'ha pogut arxivar el sketch" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"L'arxivament del sketch ha estat cancel·lat per què\n" +"el sketch no s'ha desat adequadament." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arxiva sketch com:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Arxivat del sketch cancel·lat." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Error durant la carrega de codi {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "\"{0}\" conté caràcters desconeguts. Si aquest codi va ser creat amb una versió antiga de Processament, podria utilitzar el menú Eines > Arregla la codificació i recarrega per actualitzar el sketch per tal d'usar una codificació UTF-8. Si no, haurà de suprimir els caràcters incorrectes per desfer-se del avis." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "El Sketch és només de lectura" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Alguns fitxers estan marcats com a \"read-only\", per tant haurà\n" +"de desar de nou el sketch en una altre localització,\n" +"i tornar-ho a provar." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Escolliu nom per un nou fitxer:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "El Sketch no té nom." + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Per què no prova de desar el sketch primer \n" +"abans de provar de renombrar-lo?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Hi ha un problema amb el motor de reproducció" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "El nom no pot començar amb un punt." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" no és una extensió vàlida." + +#: Sketch.java:378 +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 "" +"El fitxer principal no pot utilitzar una extensió.\n" +"(Potser es moment de que es graduï en un\n" +"entorn de programació \"real\")" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Nop" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Ja existeix un fitxer amb el nom \"{0}\" a \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "No pot tenir un fitxer .cpp amb el mateix nom que el sketch." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"No pot reanomenar el sketch a \"{0}\"\n" +"per què el sketch ja té un fitxer .cpp amb el mateix nom." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "No es pot reanomenar" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Ho sentim, un sketch (o carpeta) anomenat \"{0}\" ja existeix." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "No es pot reanomenar el sketch. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "No es pot reanomenar \"{0}\" per \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "No es pot reanomenar el sketch. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "No es pot reanomenar el sketch. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() ha retornat false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Segur que voleu suprimir aquest sketch?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Esteu segur que voleu suprimir \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Suprimeix" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "No s'ha pogut fer" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "No s'ha pogut suprimir \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: error intern... no s'ha pogut trobar codi" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "El Sketch és només de lectura" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Alguns arxius estan marcats \"reald-only\", haurà de\n" +"desar el sketch a una altre localització." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"En l'Arduino 1.0, la extensió per defecte dels fitxers han canviat\n" +"de .pde a .ino. Els nous sketch (incloent aquells creats\n" +"per \"Anomena i desa\" usaran la nova extensió. La extensió\n" +"dels sketches existents s'actualitzarà al desar, però pot\n" +"deshabilitar-ho en el diàleg de Preferències.\n" +"\n" +"Desar el sketch i actualitzar la seva extensió?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde ->.ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Anomena i desa la carpeta de sketch..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"No pot desar el sketch com \"{0}\"\n" +"per què el sketch ja conté un fitxer .cpp amb aquest nom." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Que tant Borges de part teva" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"No pot desar el sketch en una carpeta\n" +"dins del mateix. Això seria un procés infinit." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Seleccioni una imatge o un altre fitxer da dades per copiar el seu sketch" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Reemplaça la versió existent de {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Error al afegir un fitxer" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "No s'ha pogut suprimir el fitxer existent \"{0}\"." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "A mi no em pots enganyar" + +#: Sketch.java:1079 +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 "" +"Aquest fitxer ja ha estat copiat a la\n" +"localització de la qual està provant d'afegir-lo.\n" +"'I ain't not doin nuthin'.'" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "No s'ha pogut afegir \"{0}\" al sketch." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Carpeta de construcció del projecte desapareguda o no s'ha pogut escriure" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "No s'ha pogut trobar la classe principal" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Excepció escapada de tipus: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problemes movent {0} a la carpeta de treball" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Actualitzant..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Mida en binari del sketch: {0} bytes (d'un total de {1} bytes màxims)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "No s'ha pogut determinar la mida del programa: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "Sketch massa gran; visita http://www.arduino.cc/en/Guide/Troubleshooting#size per consells per reduir-ne la mida." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Manca el */ al final de /* comentari */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Sketch desaparegut" + +#: Sketch.java:1797 +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 "" +"La carpeta del sketch ha desaparegut.\n" +" Es provarà de tornar a desar en la mateixa localització,\n" +"però tot excepte el codi serà perdut." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "No s'ha pogut desar de nou el sketch" + +#: Sketch.java:1811 +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 "" +"No s'ha pogut desar el sketch adequadament. Potser té un problema ara mateix,\n" +"i potser es el moment de copiar i enganxar el teu codi en un altre editor de text." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"El nom del sketch ha de ser modificat. Els noms dels Sketch només poden constar\n" +"de caràcters ASCII i nombres (però no començar amb nombres).\n" +"També haurien de ser menys de 64 caràcters." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Error del compilador, si us plau pengeu aquest codi a {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "el port sèrie seleccionat {0} no existeix o la teva placa no està connectada" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "El dispositiu no respon, comprova que el port sèrie corresponent esta seleccionat o fes-li un RESET a la placa just abans d'exportar " + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "Problema pujant a la placa. Visita per http://www.arduino.cc/en/Guide/Troubleshooting#upload suggeriments." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "Microcontrolador trobat incorrecte. Ha seleccionat la placa adequada del menú Eines > Placa?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Cap placa seleccionada; si us plau esculli una placa del menú Eines > Placa." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} ha retornat {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Error compilant." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Si us plau importeu la llibreria SPI del menú Sketch > Importa biblioteca." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"A partir de Arduino 0019, la llibreria Ethernet depèn de la llibreria SPI.\n" +"Sembla que l'esta utilitzant o ho fa una altre llibreria que depèn de la llibreria SPI.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "La paraula clau 'BYTE' ja no esta suportada." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"A partir de Arduino 1.0, la paraula clau 'BYTE' ja no esta suportada.\n" +"Si us plau usa en comptes Seria.write()\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "La classe Server ha estat reanomenada EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"A partir de Arduino 1.0, la classe Server de la llibreria Ethernet ha estat reanomenada a EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "La classe Client ha estat reanomenat a EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"A partir de Arduino 1.0, la classe Client de la llibreria Ethernet ha estat reanomenada a EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "La classe Udp ha estat reanomenada a EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"A partir de Arduino 1.0, la classe Udp de la llibreria Ethernet ha estat reanomenada a EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() ha estat reanomenada a Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"A partir de Arduino 1.0, la funció Wire.send() s'ha reanomenat a Wire.write() per consistència amb altres llibreries..\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() ha estat reanomenada a Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"A partir de Arduino 1.0, la funció Wire.receive() s'ha reanomenat a Wire.read() per consistència amb altres llibreries..\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Consola d'errors" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Un problema ha succeït al provar d'obrir els\n" +"fitxers utilitzats per desar la sortida de la consola." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Error no fatal mentre s'establien les preferències de l'aparença." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "El missatge d'error continua, de totes formes Arduino hauria de funcionar bé." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problemes per establir les preferències de Plataforma" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"Un error desconegut ha succeït mentre es provava de carregar\n" +"codi especific de la plataforma per la seva maquina." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Si us plau, instal·leu JDK 1.5 o posterior" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino requereix JDK per complet (no només el JRE)\n" +"per funcionar. Si us plau, instal·leu JDK 1.5 o posterior.\n" +"Podeu trobar més informació a les referències." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Carpeta Sketchbook desapareguda" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"La carpeta sketchbook no existeix.\n" +"Arduino canviarà  a la localització per defecte\n" +"de sketchbook, i crearà  una nova carpeta sketchbook\n" +"si fos necessari. Arduino pararà  de parlar\n" +"d'ell mateix en tercera persona." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Temps per un descans" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Has sobrepassat el limit d'auto-anomenament de nous sketches\n" +"pel dia d'avui. Perquè no fas una passejada?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Brillantor" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "No, de debò, moment per anar a prendre aire fresc." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Obre un sketch d'Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr " Està segur que vol sortir?

Tancar l'ultim sketch obert tancarà l'Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribució" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "El Sketch no existeix" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"El sketch seleccionat ja no existeix.\n" +"Hauries de reiniciar Arduino per actualitzar\n" +"el menú de sketchbook." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"El sketch \"{0}\" no pot ser utilitzat.\n" +"Els noms dels sketch han de contenir només caràcters bàsics i nombres\n" +"(Només ASCII sense espais, i no pot començar amb un nombre).\n" +"Per desfer-se d'aquest missatge, elimina el sketch de\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignorant el sketch amb un nom incorrecte" + +#: Base.java:1202 +#, java-format +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 "" +"La llibreria \"{0}\" no pot ser utilitzada.\n" +"Els noms de llibreries ha de contenir només caràcters bàsics i nombres.\n" +"(Només ASCII sense espais, i no pot començar amb un nombre)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignorant la llibreria amb un nom incorrecte" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problema obtenint la carpeta de data" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Error obtenint la carpeta data d'Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Errors en les preferències" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino no pot funcionar perquè no pot\n" +"crear una carpeta per desar les preferències." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Ha oblidat el seu sketchbook" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino no pot funcionar perquè no pot\n" +"creï una carpeta per desar el seu sketchbook." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Seleccioni (o creï) una carpeta pels sketches..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problema obrint la URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"No s'ha pogut obrir la URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problema obrint la carpeta" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"No s'ha pogut obrir la carpeta\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "entorn" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Missatge" + +#: Base.java:1842 +msgid "Warning" +msgstr "Advertència" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "No s'ha pogut eliminar una versió anterior de {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "No s'ha pogut reemplaçar {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "No s'ha pogut eliminar {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Pestanya nova" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Canvia el nom" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Pestanya anterior" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Pestanya següent" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verifiqueu " + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Obre" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Obre una finestra nova del editor" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Obrir en una altra finestra" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "No hi ha llançador disponible" + +#: 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 "" +"Plataforma no especificada, no hi ha un llançador disponible.\n" +"Per permetre obrir URLs o carpetes, afegeix \n" +"\"launcher=/path/yo/app\" a preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"No s'han pogut llegir les preferències de tema de color.\n" +"Haurà de reinstal·lar Processament." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Navega" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"No s'han pogut llegir les preferències per defecte.\n" +"Hauràs de reinstal·lar l'Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "No s'ha pogut llegir les preferències de {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Error en llegir les preferències" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Error al llegir el fitxer de preferències. Si us plau elimini (o mogui)\n" +"{0} i reiniciï Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Ubicació del Sketchbook:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Seleccioneu una ubicació pel nou sketchbook" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (requereix reiniciar l'Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Mides del fonts del editor:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Mostra la sortida detallada durant: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "Compliació " + +#: Preferences.java:375 +msgid "upload" +msgstr "Pujada" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Verificar el codi després d'actualitzar" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Utilitza un editor extern" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Comprova actualitzacions al iniciar" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Actualitza fitxer dels sketch a la nova extensió al desar (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Associa automàticament fitxers .ino amb l'Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Es poden editar més preferències directament en el fitxer" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(modifica només quan l'Arduino no estigui en funcionament)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "Ignorant mida de font invàlida {0}" diff --git a/app/src/processing/app/Resources_ca.properties b/app/src/processing/app/Resources_ca.properties new file mode 100644 index 000000000..1164a19e4 --- /dev/null +++ b/app/src/processing/app/Resources_ca.properties @@ -0,0 +1,1035 @@ +# Catalan translations for Arduino IDE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# David A. Mellis <>, 2012. +# Translation to Catalan by Albert Segura +# +!=Project-Id-Version\: Versi\u00f3 1.0\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-04-05 14\:18+0100\nLast-Translator\: Albert Segura \nLanguage-Team\: Catal\u00e0 \nLanguage\: ca\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\nX-Poedit-Language\: Catalan\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=No s'ha afegit cap fitxer al sketch. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=S'ha afegit un fitxer al sketch. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} fitxers afegits al sketch. + +#: Editor.java:484 +File=Fitxer + +#: Editor.java:486 EditorToolbar.java:41 +New=Nou + +#: Editor.java:494 Base.java:903 +Open...=Obrir... + +#: Editor.java:503 +Sketchbook=Sketchbook + +#: Editor.java:509 +Examples=Exemples + +#: Editor.java:514 Editor.java:1977 +Close=Tanca + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Desa + +#: Editor.java:530 +Save\ As...=Anomena i desa... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Puja + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Puja utilitzant un Programador + +#: Editor.java:556 +Page\ Setup=Configuraci\u00f3 de la p\u00e0gina + +#: Editor.java:564 +Print=Imprimeix + +#: Editor.java:576 Preferences.java:279 +Preferences=Prefer\u00e8ncies + +#: Editor.java:586 Base.java:782 +Quit=Sortir + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=Verifica / Compila + +#: Editor.java:629 +Import\ Library...=Importa biblioteca... + +#: Editor.java:634 +Show\ Sketch\ Folder=Mostra la carpeta del Sketch + +#: Editor.java:643 +Add\ File...=Afegeix fitxer... + +#: Editor.java:656 +Tools=Eines + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitor s\u00e8rie + +#: Editor.java:682 +Board=Placa + +#: Editor.java:690 +Serial\ Port=Port s\u00e8rie + +#: Editor.java:695 +Programmer=Programador + +#: Editor.java:699 +Burn\ Bootloader=Enregistra Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu es null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=El nom es null + +#: Editor.java:986 +error\ retrieving\ port\ list=S'ha produ\u00eft un error en obtenir la llista de ports + +#: Editor.java:1002 +Help=Ajuda + +#: Editor.java:1041 +Getting\ Started=Primers passos + +#: Editor.java:1049 +Environment=Entorn + +#: Editor.java:1057 +Troubleshooting=Soluci\u00f3 de problemes + +#: Editor.java:1065 +Reference=Refer\u00e8ncia + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Cerca a Refer\u00e8ncia + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Preguntes M\u00e9s Freq\u00fcents + +#: Editor.java:1091 +Visit\ Arduino.cc=Visita Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Quant a Arduino + +#: Editor.java:1116 +Edit=Edita + +#: Editor.java:1119 Editor.java:1341 +Undo=Desf\u00e9s + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Ref\u00e9s + +#: Editor.java:1135 Editor.java:2652 +Cut=Retalla + +#: Editor.java:1143 Editor.java:2660 +Copy=Copia + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copia pel Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Desa com a HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Enganxa + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Selecciona-ho Tot + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Comenta/Descomenta + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Augmenta el sagnat + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Disminueix el sagnat + +#: Editor.java:1220 +Find...=Cerca... + +#: Editor.java:1235 +Find\ Next=Cerca el seg\u00fcent + +#: Editor.java:1245 +Find\ Previous=Cerca l'anterior + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Utilitza la selecci\u00f3 per cercar + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Primer seleccioni una paraula per cercar en la refer\u00e8ncia. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=No hi ha referencia disponible per a "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Compilant el sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compilaci\u00f3 enllestida. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Desar els canvis a "{0}"? + +#: Editor.java:2006 +\ \ 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.= Vol desar els canvis a aquest sketch
abans de tancar?

Si no ho desa, els canvis es perdran. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Cancel\u00b7la + +#: Editor.java:2017 +Don't\ Save=No deseu + +#: Editor.java:2089 +Bad\ file\ selected=Fitxer seleccionat incorrecte + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=El Processament nom\u00e9s pot obrir els seus propis sketches\ni altres fitxers acabats en .ino o .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=D'acord + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=El fitxer "{0}" ha d'estar a dins de\nla carpeta del cketch anomenada "{1}".\nVol crear aquesta carpeta, moure el fitxer, i continuar? + +#: Editor.java:2109 +Moving=S'est\u00e0 movent + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Error + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=La carpeta anomenada "{0}" ja existeix. No es pot obrir el sketch. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=No s'ha pogut crear la carpeta del sketch. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=No s'ha pogut copiar a una localitzaci\u00f3 correcte + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=No s'ha pogut crear el sketch. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=S'est\u00e0 desant... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Guardat enllestit. + +#: Editor.java:2270 +Save\ Canceled.=Guardat cancel\u00b7lat. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port s\u00e8rie {0} no trobat.\nRe-intentar la pujada amb un altre port s\u00e8rie? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Pujant a la I/O de la Placa ... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Pujada enllestida. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Pujada cancel\u00b7lada. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Voleu desar els canvis abans d'exportar? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3 cancel\u00b7lada, s'han de desar els canvis abans. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Enregistrant el bootloader a la I/O placa (pot durar uns minuts)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Enregistrament del bootloader llesta. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Error al enregistrar el bootloader. + +#: Editor.java:2500 +Printing...=S'est\u00e0 imprimint... + +#: Editor.java:2517 +Done\ printing.=Impressi\u00f3 finalitzada. + +#: Editor.java:2520 +Error\ while\ printing.=S'ha produ\u00eft un error mentre s'imprimia + +#: Editor.java:2524 +Printing\ canceled.=Impressi\u00f3 cancel\u00b7lada. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=L\u00ednia d'error incorrecta\: {0} + +#: Editor.java:2641 +Open\ URL=Obre l'URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nova versi\u00f3 de l'Arduino est\u00e0 disponible,\nvoldria visitar la p\u00e0gina de descarrega d'Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=S\u00ed + +#: UpdateCheck.java:108 Preferences.java:77 +No=No + +#: UpdateCheck.java:111 +Update=Actualitza + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Cerca\: + +#: FindReplace.java:81 +Replace\ with\:=Substitueix amb\: + +#: FindReplace.java:96 +Ignore\ Case=Ignora difer\u00e8ncies entre maj\u00fascules i min\u00fascules + +#: FindReplace.java:105 +Wrap\ Around=Envolta + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Reempla\u00e7a-ho tot + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Reempla\u00e7a + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Cerca i reempla\u00e7a + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Anterior + +#: FindReplace.java:124 FindReplace.java:127 +Find=Cerca + +#: SerialMonitor.java:93 +Send=Envia + +#: SerialMonitor.java:110 +Autoscroll=Despla\u00e7ament autom\u00e0tic + +#: SerialMonitor.java:112 +No\ line\ ending=Sense salts de l\u00ednia + +#: SerialMonitor.java:112 +Newline=L\u00ednia nova + +#: SerialMonitor.java:112 +Carriage\ return=Retorn de carro + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Ambd\u00f3s NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e8rie "{0}" ja en \u00fas. Provi de finalitzar programes que puguin estar utilitzant-lo. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Error al obrir el port s\u00e8rie "{0}". + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port s\u00e8rie "{0}" no trobat. Ha seleccionat el port corresponent al men\u00fa Eines > Port s\u00e8rie? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=El buffer de bytes readBytesUntil() \u00e9s massa petit pels {0} bytes fins i incloent el char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Error a dins del Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Format autom\u00e0tic + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Cap canvi necessari pel format autom\u00e0tic. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Format autom\u00e0tic cancel\u00b7lat\: Massa par\u00e8ntesis d'obertura. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Format autom\u00e0tic cancel\u00b7lat\: Massa par\u00e8ntesis de tancament. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Format autom\u00e0tic cancel\u00b7lat\: Massa claus d'obertura. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Format autom\u00e0tic cancel\u00b7lat\: Massa claus de tancament. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Format autom\u00e0tic finalitzat. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Arregla la codificaci\u00f3 i recarrega + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Desfer tots els canvis i recarregar el sketch? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Un error ha succe\u00eft provant de arreglar la codificaci\u00f3 del fitxer.\nNo provi de desar aquest sketch, podria sobreescriure\nla versi\u00f3 antiga. Utilitzi Obrir per re-obrir el sketch i tornar-ho a provar.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Arxiva Sketch + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=No s'ha pogut arxivar el sketch + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=L'arxivament del sketch ha estat cancel\u00b7lat per qu\u00e8\nel sketch no s'ha desat adequadament. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arxiva sketch com\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Arxivat del sketch cancel\u00b7lat. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Error durant la carrega de codi {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" cont\u00e9 car\u00e0cters desconeguts. Si aquest codi va ser creat amb una versi\u00f3 antiga de Processament, podria utilitzar el men\u00fa Eines > Arregla la codificaci\u00f3 i recarrega per actualitzar el sketch per tal d'usar una codificaci\u00f3 UTF-8. Si no, haur\u00e0 de suprimir els car\u00e0cters incorrectes per desfer-se del avis. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=El Sketch \u00e9s nom\u00e9s de lectura + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alguns fitxers estan marcats com a "read-only", per tant haur\u00e0\nde desar de nou el sketch en una altre localitzaci\u00f3,\ni tornar-ho a provar. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Escolliu nom per un nou fitxer\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=El Sketch no t\u00e9 nom. + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Per qu\u00e8 no prova de desar el sketch primer \nabans de provar de renombrar-lo? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Hi ha un problema amb el motor de reproducci\u00f3 + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=El nom no pot comen\u00e7ar amb un punt. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" no \u00e9s una extensi\u00f3 v\u00e0lida. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=El fitxer principal no pot utilitzar una extensi\u00f3.\n(Potser es moment de que es gradu\u00ef en un\nentorn de programaci\u00f3 "real") + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Nop + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Ja existeix un fitxer amb el nom "{0}" a "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No pot tenir un fitxer .cpp amb el mateix nom que el sketch. + +#: Sketch.java:425 +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:459 +Cannot\ Rename=No es pot reanomenar + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Ho sentim, un sketch (o carpeta) anomenat "{0}" ja existeix. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=No es pot reanomenar el sketch. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=No es pot reanomenar "{0}" per "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=No es pot reanomenar el sketch. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=No es pot reanomenar el sketch. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() ha retornat false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Segur que voleu suprimir aquest sketch? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Esteu segur que voleu suprimir "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Suprimeix + +#: Sketch.java:620 +Couldn't\ do\ it=No s'ha pogut fer + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=No s'ha pogut suprimir "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error intern... no s'ha pogut trobar codi + +#: Sketch.java:724 +Sketch\ is\ read-only=El Sketch \u00e9s nom\u00e9s de lectura + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alguns arxius estan marcats "reald-only", haur\u00e0 de\ndesar el sketch a una altre localitzaci\u00f3. + +#: Sketch.java:743 +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En l'Arduino 1.0, la extensi\u00f3 per defecte dels fitxers han canviat\nde .pde a .ino. Els nous sketch (incloent aquells creats\nper "Anomena i desa" usaran la nova extensi\u00f3. La extensi\u00f3\ndels sketches existents s'actualitzar\u00e0 al desar, per\u00f2 pot\ndeshabilitar-ho en el di\u00e0leg de Prefer\u00e8ncies.\n\nDesar el sketch i actualitzar la seva extensi\u00f3? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde ->.ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Anomena i desa la carpeta de sketch... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No pot desar el sketch com "{0}"\nper qu\u00e8 el sketch ja cont\u00e9 un fitxer .cpp amb aquest nom. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Que tant Borges de part teva + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Seleccioni una imatge o un altre fitxer da dades per copiar el seu sketch + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Reempla\u00e7a la versi\u00f3 existent de {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Error al afegir un fitxer + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=No s'ha pogut suprimir el fitxer existent "{0}". + +#: Sketch.java:1078 +You\ can't\ fool\ me=A mi no em pots enganyar + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Aquest fitxer ja ha estat copiat a la\nlocalitzaci\u00f3 de la qual est\u00e0 provant d'afegir-lo.\n'I ain't not doin nuthin'.' + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=No s'ha pogut afegir "{0}" al sketch. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Carpeta de construcci\u00f3 del projecte desapareguda o no s'ha pogut escriure + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=No s'ha pogut trobar la classe principal + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Excepci\u00f3 escapada de tipus\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problemes movent {0} a la carpeta de treball + +#: Sketch.java:1661 +Uploading...=Actualitzant... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Mida en binari del sketch\: {0} bytes (d'un total de {1} bytes m\u00e0xims) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=No s'ha pogut determinar la mida del programa\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch massa gran; visita http\://www.arduino.cc/en/Guide/Troubleshooting\#size per consells per reduir-ne la mida. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca el */ al final de /* comentari */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Sketch desaparegut + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=La carpeta del sketch ha desaparegut.\n Es provar\u00e0 de tornar a desar en la mateixa localitzaci\u00f3,\nper\u00f2 tot excepte el codi ser\u00e0 perdut. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=No s'ha pogut desar de nou el sketch + +#: Sketch.java:1811 +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=No s'ha pogut desar el sketch adequadament. Potser t\u00e9 un problema ara mateix,\ni potser es el moment de copiar i enganxar el teu codi en un altre editor de text. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=El nom del sketch ha de ser modificat. Els noms dels Sketch nom\u00e9s poden constar\nde car\u00e0cters ASCII i nombres (per\u00f2 no comen\u00e7ar amb nombres).\nTamb\u00e9 haurien de ser menys de 64 car\u00e0cters. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error del compilador, si us plau pengeu aquest codi a {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=el port s\u00e8rie seleccionat {0} no existeix o la teva placa no est\u00e0 connectada + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=El dispositiu no respon, comprova que el port s\u00e8rie corresponent esta seleccionat o fes-li un RESET a la placa just abans d'exportar + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema pujant a la placa. Visita per http\://www.arduino.cc/en/Guide/Troubleshooting\#upload suggeriments. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Microcontrolador trobat incorrecte. Ha seleccionat la placa adequada del men\u00fa Eines > Placa? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Cap placa seleccionada; si us plau esculli una placa del men\u00fa Eines > Placa. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} ha retornat {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Error compilant. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Si us plau importeu la llibreria SPI del men\u00fa Sketch > Importa biblioteca. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nA partir de Arduino 0019, la llibreria Ethernet dep\u00e8n de la llibreria SPI.\nSembla que l'esta utilitzant o ho fa una altre llibreria que dep\u00e8n de la llibreria SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=La paraula clau 'BYTE' ja no esta suportada. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nA partir de Arduino 1.0, la paraula clau 'BYTE' ja no esta suportada.\nSi us plau usa en comptes Seria.write()\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=La classe Server ha estat reanomenada EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nA partir de Arduino 1.0, la classe Server de la llibreria Ethernet ha estat reanomenada a EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client ha estat reanomenat a EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nA partir de Arduino 1.0, la classe Client de la llibreria Ethernet ha estat reanomenada a EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=La classe Udp ha estat reanomenada a EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nA partir de Arduino 1.0, la classe Udp de la llibreria Ethernet ha estat reanomenada a EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() ha estat reanomenada a Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir de Arduino 1.0, la funci\u00f3 Wire.send() s'ha reanomenat a Wire.write() per consist\u00e8ncia amb altres llibreries..\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ha estat reanomenada a Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir de Arduino 1.0, la funci\u00f3 Wire.receive() s'ha reanomenat a Wire.read() per consist\u00e8ncia amb altres llibreries..\n\n + +#: EditorConsole.java:152 +Console\ Error=Consola d'errors + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Un problema ha succe\u00eft al provar d'obrir els\nfitxers utilitzats per desar la sortida de la consola. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mentre s'establien les prefer\u00e8ncies de l'aparen\u00e7a. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=El missatge d'error continua, de totes formes Arduino hauria de funcionar b\u00e9. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problemes per establir les prefer\u00e8ncies de Plataforma + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Un error desconegut ha succe\u00eft mentre es provava de carregar\ncodi especific de la plataforma per la seva maquina. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Si us plau, instal\u00b7leu JDK 1.5 o posterior + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requereix JDK per complet (no nom\u00e9s el JRE)\nper funcionar. Si us plau, instal\u00b7leu JDK 1.5 o posterior.\nPodeu trobar m\u00e9s informaci\u00f3 a les refer\u00e8ncies. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Carpeta Sketchbook desapareguda + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La carpeta sketchbook no existeix.\nArduino canviar\u00e0\u00a0 a la localitzaci\u00f3 per defecte\nde sketchbook, i crear\u00e0\u00a0 una nova carpeta sketchbook\nsi fos necessari. Arduino parar\u00e0\u00a0 de parlar\nd'ell mateix en tercera persona. + +#: Base.java:532 +Time\ for\ a\ Break=Temps per un descans + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Has sobrepassat el limit d'auto-anomenament de nous sketches\npel dia d'avui. Perqu\u00e8 no fas una passejada? + +#: Base.java:537 +Sunshine=Brillantor + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, de deb\u00f2, moment per anar a prendre aire fresc. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Obre un sketch d'Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Est\u00e0 segur que vol sortir?

Tancar l'ultim sketch obert tancar\u00e0 l'Arduino. + +#: Base.java:970 +Contributed=Contribuci\u00f3 + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=El Sketch no existeix + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=El sketch seleccionat ja no existeix.\nHauries de reiniciar Arduino per actualitzar\nel men\u00fa de sketchbook. + +#: Base.java:1125 +#, 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}=El sketch "{0}" no pot ser utilitzat.\nEls noms dels sketch han de contenir nom\u00e9s car\u00e0cters b\u00e0sics i nombres\n(Nom\u00e9s ASCII sense espais, i no pot comen\u00e7ar amb un nombre).\nPer desfer-se d'aquest missatge, elimina el sketch de\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignorant el sketch amb un nom incorrecte + +#: Base.java:1202 +#, 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)=La llibreria "{0}" no pot ser utilitzada.\nEls noms de llibreries ha de contenir nom\u00e9s car\u00e0cters b\u00e0sics i nombres.\n(Nom\u00e9s ASCII sense espais, i no pot comen\u00e7ar amb un nombre) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignorant la llibreria amb un nom incorrecte + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problema obtenint la carpeta de data + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Error obtenint la carpeta data d'Arduino. + +#: Base.java:1440 +Settings\ issues=Errors en les prefer\u00e8ncies + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino no pot funcionar perqu\u00e8 no pot\ncrear una carpeta per desar les prefer\u00e8ncies. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Ha oblidat el seu sketchbook + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino no pot funcionar perqu\u00e8 no pot\ncre\u00ef una carpeta per desar el seu sketchbook. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleccioni (o cre\u00ef) una carpeta pels sketches... + +#: Base.java:1647 +Problem\ Opening\ URL=Problema obrint la URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=No s'ha pogut obrir la URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problema obrint la carpeta + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=No s'ha pogut obrir la carpeta\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=entorn + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Missatge + +#: Base.java:1842 +Warning=Advert\u00e8ncia + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=No s'ha pogut eliminar una versi\u00f3 anterior de {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=No s'ha pogut reempla\u00e7ar {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=No s'ha pogut eliminar {0} + +#: EditorHeader.java:292 +New\ Tab=Pestanya nova + +#: EditorHeader.java:300 +Rename=Canvia el nom + +#: EditorHeader.java:326 +Previous\ Tab=Pestanya anterior + +#: EditorHeader.java:340 +Next\ Tab=Pestanya seg\u00fcent + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verifiqueu + +#: EditorToolbar.java:41 +Open=Obre + +#: EditorToolbar.java:46 +New\ Editor\ Window=Obre una finestra nova del editor + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Obrir en una altra finestra + +#: Platform.java:167 +No\ launcher\ available=No hi ha llan\u00e7ador disponible + +#: 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 no especificada, no hi ha un llan\u00e7ador disponible.\nPer permetre obrir URLs o carpetes, afegeix \n"launcher\=/path/yo/app" a preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=No s'han pogut llegir les prefer\u00e8ncies de tema de color.\nHaur\u00e0 de reinstal\u00b7lar Processament. + +#: Preferences.java:80 +Browse=Navega + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No s'han pogut llegir les prefer\u00e8ncies per defecte.\nHaur\u00e0s de reinstal\u00b7lar l'Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=No s'ha pogut llegir les prefer\u00e8ncies de {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Error en llegir les prefer\u00e8ncies + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Error al llegir el fitxer de prefer\u00e8ncies. Si us plau elimini (o mogui)\n{0} i reinici\u00ef Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Ubicaci\u00f3 del Sketchbook\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Seleccioneu una ubicaci\u00f3 pel nou sketchbook + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (requereix reiniciar l'Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Mides del fonts del editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Mostra la sortida detallada durant\: + +#: Preferences.java:373 +compilation\ =Compliaci\u00f3 + +#: Preferences.java:375 +upload=Pujada + +#: Preferences.java:384 +Verify\ code\ after\ upload=Verificar el codi despr\u00e9s d'actualitzar + +#: Preferences.java:393 +Use\ external\ editor=Utilitza un editor extern + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Comprova actualitzacions al iniciar + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Actualitza fitxer dels sketch a la nova extensi\u00f3 al desar (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Associa autom\u00e0ticament fitxers .ino amb l'Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Es poden editar m\u00e9s prefer\u00e8ncies directament en el fitxer + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(modifica nom\u00e9s quan l'Arduino no estigui en funcionament) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=Ignorant mida de font inv\u00e0lida {0} diff --git a/app/src/processing/app/Resources_da.po b/app/src/processing/app/Resources_da.po new file mode 100644 index 000000000..50b7b97d0 --- /dev/null +++ b/app/src/processing/app/Resources_da.po @@ -0,0 +1,1657 @@ +# Danish translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Anders Bech Mellson <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-30 11:00+0100\n" +"PO-Revision-Date: 2012-04-01 09:25+0100\n" +"Last-Translator: Anders Bech Mellson <>\n" +"Language-Team: Danish\n" +"Language: da\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Ingen filer blev tilføjet til sketchen." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "En fil tilføjet til sketchen." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} filer tilføjet til sketchen." + +#: Editor.java:484 +msgid "File" +msgstr "Fil" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Ny" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Åben..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Sketchbook" + +#: Editor.java:509 +msgid "Examples" +msgstr "Eksempler" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Luk" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Gem" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Gem Som..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Upload" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Upload Med Programmer" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Sideopsætning" + +#: Editor.java:564 +msgid "Print" +msgstr "Print" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Indstillinger" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Afslut" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verificer / Kompiler" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importer Bibliotek..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Vis Sketch Mappen" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Tilføj Fil..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Værktøjer" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Seriel Overvågning" + +#: Editor.java:682 +msgid "Board" +msgstr "Kort" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Seriel Port" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmer" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Brænd Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu er null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "navn er null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "kunne ikke hente port liste" + +#: Editor.java:1002 +msgid "Help" +msgstr "Hjælp" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Kom Godt I Gang" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Miljø" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Fejlfinding" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Reference" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Find i Reference" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Ofte Stillede Spørgsmål" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Besøg Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Om Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Rediger" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Fortryd" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Omgør" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Klip" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopier" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopier for Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopier som HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Indsæt" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Vælg Alt" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Kommenter/Udkommenter" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Forhøj Indryk" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Formindsk Indryk" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Find..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Find Næste" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Find Forrige" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Brug Det Valgte For At Finde" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Vælg først et ord for at finde dets reference." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Ingen reference tilgængelig for \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Kompilerer sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Færdig med at kompilere." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Gem ændringer til \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Vil du " +"gemme ændringer i denne sketch
før nedlukning?

Hvis du ikke " +"gemmer, går dine ændringer tabt." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Afbryd" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Gem Ikke" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Forkert fil valgt" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing kan kun åbne sine egne sketches\n" +"og andre filer der slutter med .ino eller .pde." + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Denne fil \"{0}\" skal være i en\n" +"sketch mappe med navnet \"{1}\".\n" +"Opret mappe, flyt filen, og gå videre?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Flytter" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Fejl" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "En mappe med navn \"{0}\" eksisterer allerede. Kan ikke åbne sketch." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Kunne ikke oprette sketch mappen." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Kunne ikke kopiere til en ordentlig sti." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Kunne ikke lave sketchen." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Gemmer..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Færdig med at gemme." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Gem Afbrudt." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Seriel port {0} ikke fundet.\n" +"Prøv uploaden igen med en anden seriel port?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Uploader til I/O Kort..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Upload færdig." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Upload afbrudt." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Gem ændringer før eksport?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Eksport afbrudt, ændringer skal gemmes først." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Brænder bootloader til I/O Kort (dette kan godt tage et minuts tid)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Færdig med at brænde til bootloader." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Fejl under brænding til bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Udskriver..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Udskrift færdig." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Fejl under udskrift." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Udskrift annulleret" + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Grim fejl linje: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Åben URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Der er en ny version af Arduino,\n" +"vil du gerne besøge Arduino's download side?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Ja" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Nej" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Opdater" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Find:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Erstat med:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignorer store/små bogstaver" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Omkreds" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Erstat Alle" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Erstat" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Erstat & Find" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Forrige" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Find" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Send" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Autoscroll" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Ingen slutning på linjen" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Ny linje" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Transport retur" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Både NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Seriel port ''{0}'' er allerede i brug. Prøv at slutte andre programmer " +"der måske bruger den." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Fejl ved åbning af seriel port ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Serial port ''{0}'' ikke fundet. Valgte du den rigtige i Tools > " +"Serial Port menuen?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() byte buffer er for lille til at {0} bytes op til og med " +"char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Fejl i Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Autoformatering" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Ingen ændring nødvendig for autoformatering." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Autoformatering afbrudt: For mange højre parenteser." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Autoformatering afbrudt: For mange venstre parenteser." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Autoformatering afbrudt: For mange højre krøllede parenteser." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Autoformatering afbrudt: For mange venstre krøllede parenteser." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Autoformatering færdig." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Fiks kodning & genindlæs?" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Ignorer alle ændringer og genindlæs sketch?" + +#: 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 "" +"Der opstod en fejl mens filens kodning blev forsøgt fikset.\n" +"Gem ikke denne sketch da den måske vil overskrive\n" +"den gamle version. Genåbn i stedet sketchen og prøv igen.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arkiver Sketch" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "ddMMyyyy" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Kunne ikke arkivere sketch" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Arkiveringen af sketchen er blevet afbrudt fordi\n" +"sketchen ikke kunne blive gemt korrekt." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arkiver sketch som:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Arkivering af sketch afbrudt." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Fejl ved læsning af kode {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" indeholder uigenkendelige karakterer. Hvis koden er lavet med en " +"ældre version af Processing, skal du måske bruge Tools -> Fix Encoding & " +"Reload for at opdatere sketchen til at bruge UTF-8 kodning. Hvis det ikke er tilfældet " +"skal du fjerne den forkerte karakter for at fjerne denne advarsel." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Sketch er Read-Only" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Nogen filer er markeret \"read-only\", så du skal\n" +"gemme sketchen på en anden sti,\n" +"og prøve igen." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Navn til ny fil:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Sketch har intet navn" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Hvad med at gemme sketchen først \n" +"inden du forsøger at omdøbe den?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problem med at omdøbe" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Navnet kan ikke starte med et punktum." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" er ikke en gyldig udvidelse." + +#: Sketch.java:378 +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 "" +"Main filen kan ikke bruge en udvidelse.\n" +"(Måske det er på tide for dig at gå til et\n" +"\"real\" programmerings miljø)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Niks" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "En fil med navn \"{0}\" eksisterer allerede i \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Du kan ikke have en .cpp fil med det samme navn som sketchen" + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Du kan ikke omdøbe sketchen til \"{0}\"\n" +"fordi sketchen allerede har en .cpp fil med det navn." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Kan ikke omdøbe" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Desværre, der findes allerede en sketch (eller en mappe) med navnet \"{0}\"." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Kunne ikke omdøbe sketchen. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Kunne ikke omdøbe \"{0}\" til \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Kunne ikke omdøbe sketchen. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Kunne ikke omdøbe sketchen. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() returnerede falskt" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Er du sikker på du vil slette denne sketch?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Er du sikker på du vil slette \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Slet" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Kunne ikke gøre det" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Kunne ikke slette \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: intern fejl... kunne ikke finde koden" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Sketch er read-only" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Nogle filer er \"read-only\", så du skal\n" +"gemme denne sketch til en anden sti." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"I Arduino 1.0, har standard filudvidelsen ændret sig\n" +"fra .pde til .ino. Nye sketches (inklusiv dem du gemmer\n" +"via \"Save-As\" vil bruge den nye udvidelse. Udvidelsen\n" +"på eksisterende sketches vil blive opdateret når de gemmes igen, men du kan\n" +"slå denne feature fra i Indstillinger." + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Gem sketch mappe som..." + +#: Sketch.java:865 +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 gemme sketchen som \"{0}\"\n" +"fordi der er allerede en .cpp fil med det navn." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Er du Jorge Luis Borges?" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Du kan ikke gemme sketchen i en mappe\n" +"inde i sig selv. Dette ville skabe et uendeligt loop." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Vælg et billede eller en anden data fil til at kopiere ind i din sketch" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Erstat den eksisterende version af {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Fejl ved tilføjelse af fil" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Kunne ikke slette den allerede eksisterende ''{0}'' fil." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Du kan ikke snyde mig" + +#: Sketch.java:1079 +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 "" +"Denne fil er allerede kopieret til den\n" +"sti hvor du prøver at tilføje den.\n" +"Jeg gør ikke mere ved den sag." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Kunne ikke tilføje ''{0}'' til sketchen." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Build mappen forsvandt eller kunne ikke skrives til" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Kunne ikke finde main klassen" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Ikke håndteret fejl: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problem med at flytte {0} til build mappen" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Uploader..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Binær sketch størrelse: {0} bytes (af en {1} byte maksimum)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Kunne ikke afgøre programmet størrelse: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"sketchen er for stor; se http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips til at reducere størrelsen." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Mangler */ fra afslutningen af en /* kommentar */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Sketch Forsvandt" + +#: Sketch.java:1797 +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 "" +"Sketchmappen er forsvundet.\n" +"Prøver at gemme igen på samme sti,\n" +"men alt andet end koden vil gå tabt." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Kunne ikke gemme sketch igen" + +#: Sketch.java:1811 +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 "" +"Kunne ikke gemme sketchen igen. Du er måske i problemer nu,\n" +"og det er nok på tide at kopiere din kode over i en anden tekst editor." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Sketch navnet blev ændret fordi navnet på en sketch kun kan indeholde\n" +"ASCII karakterer og tal (men ikke starte med et tal).\n" +"Derudover må det også kun være 64 karakterer langt." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Kompileringsfejl, vær venlig at sende koden til {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"den valgte seriel port {0} eksisterer ikke eller også er kortet ikke tilsluttet" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Enhed svarer ikke, tjek at den rigtige seriel port er valgt eller RESET " +"kortet lige før du eksporterer" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Problem under upload til kort. Se http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for forslag." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Forkert microcontroller fundet. Valgte du det rigtige kort i Tools " +"< Board menu?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Der er ikke valgt noget kort, vælg et i menuen Tools > Board menu." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} returnerede {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Fejl ved kompilering." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Importer venligst SPI biblioteket fra Sketch > Import Library menuen" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Efter Arduino 0019, er Ethernet biblioteket afhængig af SPI biblioteket.\n" +"Du lader til at bruge det eller noget andet der er afhængigt af SPI " +"biblioteket.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "'BYTE' er ikke længere et understøttet nøgleord." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Efter Arduino 1.0, er 'BYTE' nøgleordet ikke længere understøttet.\n" +"Brug venligst Serial.write() i stedet.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Server klassen er omdøbt EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Efter Arduino 1.0, er Server klassen i Ethernet biblioteket blevet omdøbt til " +"EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Client klassen er omdøbt EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Efter Arduino 1.0, er Client klassen i Ethernet biblioteket blevet omdøbt til " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Udp klassen er blevet omdøbt EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Efter Arduino 1.0, er Udp klassen i Ethernet biblioteket blevet omdøbt til " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() er blevet omdøbt Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Efter Arduino 1.0, er Wire.send() funktionen blevet omdøbt til Wire.write() " +"for bedre konsistens med andre biblioteker.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() er blevet omdøbt Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Efter Arduino 1.0, er Wire.receive() funktionen blevet omdøbt til Wire.read() " +"for bedre konsistens med andre biblioteker.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Konsol Fejl" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Der opstod et problem under indlæsning af\n" +"filerne brugt til at gemme konsollens output." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Ikke livstruende fejl under indstilling af udseende og fornemmelse." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Fejlbesked følger, Arduino skulle køre videre uden problemer." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problem med at indstille platformen" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "En ukendt fejl opstod under indlæsning\n" +"platform-specifik kode til din maskine." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Installer venligst JDK 1.5 eller nyere" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "Arduino kræver en fuld installation af JDK (ikke kun JRE)\n" +"for at køre. Installer venligst JDK 1.5 eller nyere.\n" +"Mere information forefindes i reference dokumentationen." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Sketchbook mappen forsvandt" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "Sketchbook mappen eksisterer ikke længere.\n" +"Arduino skifter til standard placeringen\n" +"og laver en ny sketchbook mappe hvis nødvendigt.\n" +"Derefter vil Arduino stoppe med at omtale\n" +"sig selv i tredje person." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Tid til en pause" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "Du har nået grænsen for auto navngivning af nye sketches\n" +"for i dag. Hvad med at gå en tur i stedet?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Solskin" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Seriøst, tid til noget frisk luft til dig." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Åben en Arduino sketch..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Er du " +"sikker på at du vil afslutte?

Hvis du lukker den sidste sketch, så afslutter Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Tilføjede" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Sketch eksisterer ikke" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Den valgte sketch eksisterer ikke længere.\n" +"Prøv at genstarte Arduino for at opdatere\n" +"sketchbook menuen." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Denne sketch \"{0}\" kan ikke bruges.\n" +"En sketchs navn må kun indeholde simple bogstaver og tal\n" +"(ASCII uden mellemrum, det må ikke starte med et tal).\n" +"For at fjerne denne besked, så flyt sketchen fra\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignorerer sketch med illegalt navn" + +#: Base.java:1202 +#, java-format +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 "" +"Biblioteket \"{0}\" kan ikke bruges.\n" +"Et biblioteks navn må kun indeholde simple bogstaver og tal\n" +"(ASCII uden mellemrum, det må ikke starte med et tal).\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignorerer illegalt biblioteksnavn" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problem med at hente data mappe" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Fejl under indlæsning af Arduino data mappen." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Fejl med indstillinger" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino kan ikke køre fordi den ikke kunne\n" +"lave en mappe til at gemme dine indstillinger." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Du glemte din sketchbook." + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino kan ikke køre fordi den ikke kunne\n" +"lave en mappe til at gemme din sketchbook." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Vælg (eller lav ny) mappe til sketches..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problem Med At Åbne URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Kunne ikke åbne URL'en\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problem Med At Åbne Mappe" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Kunne ikke åbne mappen\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "miljø" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Besked" + +#: Base.java:1842 +msgid "Warning" +msgstr "Advarsel" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Kunne ikke fjerne den gamle version af {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Kunne ikke erstatte {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Kunne ikke slette {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Ny Tab" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Omdøb" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Forrige Tab" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Næste Tab" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verificer" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Åben" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nyt Editor Vindue" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Åben i et Andet Vindue" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Ingen åbner tilgængelig" + +#: 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 "" +"Uspecificeret platform, ved ikke hvordan det skal åbnes.\n" +"For at kunne åbne URL'er eller mapper, tilføj en \n" +"\"launcher=/path/to/app\" linje i preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Kunne ikke læse farve tema indstillinger.\n" +"Du skal geninstallere Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Gennemse" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Kunne ikke indlæse standard indstillinger.\n" +"Du skal geninstallere Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Kunne ikke indlæse indstillinger fra {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Fejl ved læsning af indstillinger" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Fejl ved indlæsning af indstillingsfilen. Slet venligst (eller flyt)\n" +"{0} og genstart Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Sketchbook sti:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Vælg ny sketchbook sti" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (kræver genstart af Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Editor font størrelse: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Vis tydeligt output under: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "kompilation" + +#: Preferences.java:375 +msgid "upload" +msgstr "upload" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Brug ekstern editor" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Tjek for opdateringer under start" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Opdater sketch filer til den nye udvidelse når der gemmes (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Tilknyt automatisk .ino filer med Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Flere indstillinger kan redigeres direkte i denne fil" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(rediger kun når Arduino ikke kører)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignorerer ugyldig font størrelse {0}" diff --git a/app/src/processing/app/Resources_da.properties b/app/src/processing/app/Resources_da.properties new file mode 100644 index 000000000..bd349a3d5 --- /dev/null +++ b/app/src/processing/app/Resources_da.properties @@ -0,0 +1,1034 @@ +# Danish translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Anders Bech Mellson <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-30 11\:00+0100\nPO-Revision-Date\: 2012-04-01 09\:25+0100\nLast-Translator\: Anders Bech Mellson <>\nLanguage-Team\: Danish\nLanguage\: da\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Ingen filer blev tilf\u00f8jet til sketchen. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=En fil tilf\u00f8jet til sketchen. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} filer tilf\u00f8jet til sketchen. + +#: Editor.java:484 +File=Fil + +#: Editor.java:486 EditorToolbar.java:41 +New=Ny + +#: Editor.java:494 Base.java:903 +Open...=\u00c5ben... + +#: Editor.java:503 +Sketchbook=Sketchbook + +#: Editor.java:509 +Examples=Eksempler + +#: Editor.java:514 Editor.java:1977 +Close=Luk + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Gem + +#: Editor.java:530 +Save\ As...=Gem Som... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Upload + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Upload Med Programmer + +#: Editor.java:556 +Page\ Setup=Sideops\u00e6tning + +#: Editor.java:564 +Print=Print + +#: Editor.java:576 Preferences.java:279 +Preferences=Indstillinger + +#: Editor.java:586 Base.java:782 +Quit=Afslut + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=Verificer / Kompiler + +#: Editor.java:629 +Import\ Library...=Importer Bibliotek... + +#: Editor.java:634 +Show\ Sketch\ Folder=Vis Sketch Mappen + +#: Editor.java:643 +Add\ File...=Tilf\u00f8j Fil... + +#: Editor.java:656 +Tools=V\u00e6rkt\u00f8jer + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Seriel Overv\u00e5gning + +#: Editor.java:682 +Board=Kort + +#: Editor.java:690 +Serial\ Port=Seriel Port + +#: Editor.java:695 +Programmer=Programmer + +#: Editor.java:699 +Burn\ Bootloader=Br\u00e6nd Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu er null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=navn er null + +#: Editor.java:986 +error\ retrieving\ port\ list=kunne ikke hente port liste + +#: Editor.java:1002 +Help=Hj\u00e6lp + +#: Editor.java:1041 +Getting\ Started=Kom Godt I Gang + +#: Editor.java:1049 +Environment=Milj\u00f8 + +#: Editor.java:1057 +Troubleshooting=Fejlfinding + +#: Editor.java:1065 +Reference=Reference + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Find i Reference + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Ofte Stillede Sp\u00f8rgsm\u00e5l + +#: Editor.java:1091 +Visit\ Arduino.cc=Bes\u00f8g Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Om Arduino + +#: Editor.java:1116 +Edit=Rediger + +#: Editor.java:1119 Editor.java:1341 +Undo=Fortryd + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Omg\u00f8r + +#: Editor.java:1135 Editor.java:2652 +Cut=Klip + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopier + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kopier for Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kopier som HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Inds\u00e6t + +#: Editor.java:1184 Editor.java:2692 +Select\ All=V\u00e6lg Alt + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Kommenter/Udkommenter + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Forh\u00f8j Indryk + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Formindsk Indryk + +#: Editor.java:1220 +Find...=Find... + +#: Editor.java:1235 +Find\ Next=Find N\u00e6ste + +#: Editor.java:1245 +Find\ Previous=Find Forrige + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Brug Det Valgte For At Finde + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=V\u00e6lg f\u00f8rst et ord for at finde dets reference. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Ingen reference tilg\u00e6ngelig for "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Kompilerer sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=F\u00e6rdig med at kompilere. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Gem \u00e6ndringer til "{0}"? + +#: Editor.java:2006 +\ \ 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 gemme \u00e6ndringer i denne sketch
f\u00f8r nedlukning?

Hvis du ikke gemmer, g\u00e5r dine \u00e6ndringer tabt. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Afbryd + +#: Editor.java:2017 +Don't\ Save=Gem Ikke + +#: Editor.java:2089 +Bad\ file\ selected=Forkert fil valgt + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing kan kun \u00e5bne sine egne sketches\nog andre filer der slutter med .ino eller .pde. + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Denne fil "{0}" skal v\u00e6re i en\nsketch mappe med navnet "{1}".\nOpret mappe, flyt filen, og g\u00e5 videre? + +#: Editor.java:2109 +Moving=Flytter + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Fejl + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=En mappe med navn "{0}" eksisterer allerede. Kan ikke \u00e5bne sketch. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Kunne ikke oprette sketch mappen. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Kunne ikke kopiere til en ordentlig sti. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Kunne ikke lave sketchen. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Gemmer... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=F\u00e6rdig med at gemme. + +#: Editor.java:2270 +Save\ Canceled.=Gem Afbrudt. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seriel port {0} ikke fundet.\nPr\u00f8v uploaden igen med en anden seriel port? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Uploader til I/O Kort... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Upload f\u00e6rdig. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Upload afbrudt. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Gem \u00e6ndringer f\u00f8r eksport? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport afbrudt, \u00e6ndringer skal gemmes f\u00f8rst. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Br\u00e6nder bootloader til I/O Kort (dette kan godt tage et minuts tid)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=F\u00e6rdig med at br\u00e6nde til bootloader. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Fejl under br\u00e6nding til bootloader. + +#: Editor.java:2500 +Printing...=Udskriver... + +#: Editor.java:2517 +Done\ printing.=Udskrift f\u00e6rdig. + +#: Editor.java:2520 +Error\ while\ printing.=Fejl under udskrift. + +#: Editor.java:2524 +Printing\ canceled.=Udskrift annulleret + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Grim fejl linje\: {0} + +#: Editor.java:2641 +Open\ URL=\u00c5ben URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Der er en ny version af Arduino,\nvil du gerne bes\u00f8ge Arduino's download side? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Ja + +#: UpdateCheck.java:108 Preferences.java:77 +No=Nej + +#: UpdateCheck.java:111 +Update=Opdater + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Find\: + +#: FindReplace.java:81 +Replace\ with\:=Erstat med\: + +#: FindReplace.java:96 +Ignore\ Case=Ignorer store/sm\u00e5 bogstaver + +#: FindReplace.java:105 +Wrap\ Around=Omkreds + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Erstat Alle + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Erstat + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Erstat & Find + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Forrige + +#: FindReplace.java:124 FindReplace.java:127 +Find=Find + +#: SerialMonitor.java:93 +Send=Send + +#: SerialMonitor.java:110 +Autoscroll=Autoscroll + +#: SerialMonitor.java:112 +No\ line\ ending=Ingen slutning p\u00e5 linjen + +#: SerialMonitor.java:112 +Newline=Ny linje + +#: SerialMonitor.java:112 +Carriage\ return=Transport retur + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=B\u00e5de NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Seriel port ''{0}'' er allerede i brug. Pr\u00f8v at slutte andre programmer der m\u00e5ske bruger den. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Fejl ved \u00e5bning af seriel port ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serial port ''{0}'' ikke fundet. Valgte du den rigtige i Tools > Serial Port menuen? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer er for lille til at {0} bytes op til og med char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Fejl i Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Autoformatering + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Ingen \u00e6ndring n\u00f8dvendig for autoformatering. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Autoformatering afbrudt\: For mange h\u00f8jre parenteser. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Autoformatering afbrudt\: For mange venstre parenteser. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Autoformatering afbrudt\: For mange h\u00f8jre kr\u00f8llede parenteser. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Autoformatering afbrudt\: For mange venstre kr\u00f8llede parenteser. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Autoformatering f\u00e6rdig. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Fiks kodning & genindl\u00e6s? + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Ignorer alle \u00e6ndringer og genindl\u00e6s sketch? + +#: 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=Der opstod en fejl mens filens kodning blev fors\u00f8gt fikset.\nGem ikke denne sketch da den m\u00e5ske vil overskrive\nden gamle version. Gen\u00e5bn i stedet sketchen og pr\u00f8v igen.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Arkiver Sketch + +#: tools/Archiver.java:59 +yyMMdd=ddMMyyyy + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Kunne ikke arkivere sketch + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arkiveringen af sketchen er blevet afbrudt fordi\nsketchen ikke kunne blive gemt korrekt. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arkiver sketch som\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Arkivering af sketch afbrudt. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Fejl ved l\u00e6sning af kode {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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}" indeholder uigenkendelige karakterer. Hvis koden er lavet med en \u00e6ldre version af Processing, skal du m\u00e5ske bruge Tools -> Fix Encoding & Reload for at opdatere sketchen til at bruge UTF-8 kodning. Hvis det ikke er tilf\u00e6ldet skal du fjerne den forkerte karakter for at fjerne denne advarsel. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Sketch er Read-Only + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Nogen filer er markeret "read-only", s\u00e5 du skal\ngemme sketchen p\u00e5 en anden sti,\nog pr\u00f8ve igen. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Navn til ny fil\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Sketch har intet navn + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Hvad med at gemme sketchen f\u00f8rst \ninden du fors\u00f8ger at omd\u00f8be den? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Problem med at omd\u00f8be + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Navnet kan ikke starte med et punktum. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" er ikke en gyldig udvidelse. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Main filen kan ikke bruge en udvidelse.\n(M\u00e5ske det er p\u00e5 tide for dig at g\u00e5 til et\n"real" programmerings milj\u00f8) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Niks + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=En fil med navn "{0}" eksisterer allerede i "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Du kan ikke have en .cpp fil med det samme navn som sketchen + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan ikke omd\u00f8be sketchen til "{0}"\nfordi sketchen allerede har en .cpp fil med det navn. + +#: Sketch.java:459 +Cannot\ Rename=Kan ikke omd\u00f8be + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Desv\u00e6rre, der findes allerede en sketch (eller en mappe) med navnet "{0}". + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Kunne ikke omd\u00f8be sketchen. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Kunne ikke omd\u00f8be "{0}" til "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Kunne ikke omd\u00f8be sketchen. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Kunne ikke omd\u00f8be sketchen. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() returnerede falskt + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Er du sikker p\u00e5 du vil slette denne sketch? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Er du sikker p\u00e5 du vil slette "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Slet + +#: Sketch.java:620 +Couldn't\ do\ it=Kunne ikke g\u00f8re det + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Kunne ikke slette "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: intern fejl... kunne ikke finde koden + +#: Sketch.java:724 +Sketch\ is\ read-only=Sketch er read-only + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Nogle filer er "read-only", s\u00e5 du skal\ngemme denne sketch til en anden sti. + +#: Sketch.java:743 +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?=I Arduino 1.0, har standard filudvidelsen \u00e6ndret sig\nfra .pde til .ino. Nye sketches (inklusiv dem du gemmer\nvia "Save-As" vil bruge den nye udvidelse. Udvidelsen\np\u00e5 eksisterende sketches vil blive opdateret n\u00e5r de gemmes igen, men du kan\nsl\u00e5 denne feature fra i Indstillinger. + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Gem sketch mappe som... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan ikke gemme sketchen som "{0}"\nfordi der er allerede en .cpp fil med det navn. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Er du Jorge Luis Borges? + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Du kan ikke gemme sketchen i en mappe\ninde i sig selv. Dette ville skabe et uendeligt loop. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=V\u00e6lg et billede eller en anden data fil til at kopiere ind i din sketch + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Erstat den eksisterende version af {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Fejl ved tilf\u00f8jelse af fil + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Kunne ikke slette den allerede eksisterende ''{0}'' fil. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Du kan ikke snyde mig + +#: Sketch.java:1079 +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 fil er allerede kopieret til den\nsti hvor du pr\u00f8ver at tilf\u00f8je den.\nJeg g\u00f8r ikke mere ved den sag. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Kunne ikke tilf\u00f8je ''{0}'' til sketchen. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Build mappen forsvandt eller kunne ikke skrives til + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Kunne ikke finde main klassen + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Ikke h\u00e5ndteret fejl\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problem med at flytte {0} til build mappen + +#: Sketch.java:1661 +Uploading...=Uploader... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Bin\u00e6r sketch st\u00f8rrelse\: {0} bytes (af en {1} byte maksimum) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Kunne ikke afg\u00f8re programmet st\u00f8rrelse\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=sketchen er for stor; se http\://www.arduino.cc/en/Guide/Troubleshooting\#size for tips til at reducere st\u00f8rrelsen. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Mangler */ fra afslutningen af en /* kommentar */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Sketch Forsvandt + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Sketchmappen er forsvundet.\nPr\u00f8ver at gemme igen p\u00e5 samme sti,\nmen alt andet end koden vil g\u00e5 tabt. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Kunne ikke gemme sketch igen + +#: Sketch.java:1811 +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.=Kunne ikke gemme sketchen igen. Du er m\u00e5ske i problemer nu,\nog det er nok p\u00e5 tide at kopiere din kode over i en anden tekst editor. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Sketch navnet blev \u00e6ndret fordi navnet p\u00e5 en sketch kun kan indeholde\nASCII karakterer og tal (men ikke starte med et tal).\nDerudover m\u00e5 det ogs\u00e5 kun v\u00e6re 64 karakterer langt. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompileringsfejl, v\u00e6r venlig at sende koden til {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=den valgte seriel port {0} eksisterer ikke eller ogs\u00e5 er kortet ikke tilsluttet + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Enhed svarer ikke, tjek at den rigtige seriel port er valgt eller RESET kortet lige f\u00f8r du eksporterer + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem under upload til kort. Se http\://www.arduino.cc/en/Guide/Troubleshooting\#upload for forslag. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Forkert microcontroller fundet. Valgte du det rigtige kort i Tools < Board menu? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Der er ikke valgt noget kort, v\u00e6lg et i menuen Tools > Board menu. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} returnerede {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Fejl ved kompilering. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Importer venligst SPI biblioteket fra Sketch > Import Library menuen + +#: debug/Compiler.java:466 +\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=\nEfter Arduino 0019, er Ethernet biblioteket afh\u00e6ngig af SPI biblioteket.\nDu lader til at bruge det eller noget andet der er afh\u00e6ngigt af SPI biblioteket.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' er ikke l\u00e6ngere et underst\u00f8ttet n\u00f8gleord. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nEfter Arduino 1.0, er 'BYTE' n\u00f8gleordet ikke l\u00e6ngere underst\u00f8ttet.\nBrug venligst Serial.write() i stedet.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server klassen er omd\u00f8bt EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nEfter Arduino 1.0, er Server klassen i Ethernet biblioteket blevet omd\u00f8bt til EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client klassen er omd\u00f8bt EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nEfter Arduino 1.0, er Client klassen i Ethernet biblioteket blevet omd\u00f8bt til EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp klassen er blevet omd\u00f8bt EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nEfter Arduino 1.0, er Udp klassen i Ethernet biblioteket blevet omd\u00f8bt til EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() er blevet omd\u00f8bt Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nEfter Arduino 1.0, er Wire.send() funktionen blevet omd\u00f8bt til Wire.write() for bedre konsistens med andre biblioteker.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() er blevet omd\u00f8bt Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nEfter Arduino 1.0, er Wire.receive() funktionen blevet omd\u00f8bt til Wire.read() for bedre konsistens med andre biblioteker.\n\n + +#: EditorConsole.java:152 +Console\ Error=Konsol Fejl + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Der opstod et problem under indl\u00e6sning af\nfilerne brugt til at gemme konsollens output. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Ikke livstruende fejl under indstilling af udseende og fornemmelse. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Fejlbesked f\u00f8lger, Arduino skulle k\u00f8re videre uden problemer. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problem med at indstille platformen + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=En ukendt fejl opstod under indl\u00e6sning\nplatform-specifik kode til din maskine. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Installer venligst JDK 1.5 eller nyere + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino kr\u00e6ver en fuld installation af JDK (ikke kun JRE)\nfor at k\u00f8re. Installer venligst JDK 1.5 eller nyere.\nMere information forefindes i reference dokumentationen. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Sketchbook mappen forsvandt + +#: Base.java:258 +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.=Sketchbook mappen eksisterer ikke l\u00e6ngere.\nArduino skifter til standard placeringen\nog laver en ny sketchbook mappe hvis n\u00f8dvendigt.\nDerefter vil Arduino stoppe med at omtale\nsig selv i tredje person. + +#: Base.java:532 +Time\ for\ a\ Break=Tid til en pause + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Du har n\u00e5et gr\u00e6nsen for auto navngivning af nye sketches\nfor i dag. Hvad med at g\u00e5 en tur i stedet? + +#: Base.java:537 +Sunshine=Solskin + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Seri\u00f8st, tid til noget frisk luft til dig. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u00c5ben en Arduino sketch... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Er du sikker p\u00e5 at du vil afslutte?

Hvis du lukker den sidste sketch, s\u00e5 afslutter Arduino. + +#: Base.java:970 +Contributed=Tilf\u00f8jede + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Sketch eksisterer ikke + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Den valgte sketch eksisterer ikke l\u00e6ngere.\nPr\u00f8v at genstarte Arduino for at opdatere\nsketchbook menuen. + +#: Base.java:1125 +#, 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}=Denne sketch "{0}" kan ikke bruges.\nEn sketchs navn m\u00e5 kun indeholde simple bogstaver og tal\n(ASCII uden mellemrum, det m\u00e5 ikke starte med et tal).\nFor at fjerne denne besked, s\u00e5 flyt sketchen fra\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignorerer sketch med illegalt navn + +#: Base.java:1202 +#, 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)=Biblioteket "{0}" kan ikke bruges.\nEt biblioteks navn m\u00e5 kun indeholde simple bogstaver og tal\n(ASCII uden mellemrum, det m\u00e5 ikke starte med et tal).\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignorerer illegalt biblioteksnavn + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problem med at hente data mappe + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Fejl under indl\u00e6sning af Arduino data mappen. + +#: Base.java:1440 +Settings\ issues=Fejl med indstillinger + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan ikke k\u00f8re fordi den ikke kunne\nlave en mappe til at gemme dine indstillinger. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Du glemte din sketchbook. + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino kan ikke k\u00f8re fordi den ikke kunne\nlave en mappe til at gemme din sketchbook. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e6lg (eller lav ny) mappe til sketches... + +#: Base.java:1647 +Problem\ Opening\ URL=Problem Med At \u00c5bne URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Kunne ikke \u00e5bne URL'en\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problem Med At \u00c5bne Mappe + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Kunne ikke \u00e5bne mappen\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=milj\u00f8 + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Besked + +#: Base.java:1842 +Warning=Advarsel + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Kunne ikke fjerne den gamle version af {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Kunne ikke erstatte {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Kunne ikke slette {0} + +#: EditorHeader.java:292 +New\ Tab=Ny Tab + +#: EditorHeader.java:300 +Rename=Omd\u00f8b + +#: EditorHeader.java:326 +Previous\ Tab=Forrige Tab + +#: EditorHeader.java:340 +Next\ Tab=N\u00e6ste Tab + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verificer + +#: EditorToolbar.java:41 +Open=\u00c5ben + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nyt Editor Vindue + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u00c5ben i et Andet Vindue + +#: Platform.java:167 +No\ launcher\ available=Ingen \u00e5bner tilg\u00e6ngelig + +#: 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=Uspecificeret platform, ved ikke hvordan det skal \u00e5bnes.\nFor at kunne \u00e5bne URL'er eller mapper, tilf\u00f8j en \n"launcher\=/path/to/app" linje i preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Kunne ikke l\u00e6se farve tema indstillinger.\nDu skal geninstallere Processing. + +#: Preferences.java:80 +Browse=Gennemse + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunne ikke indl\u00e6se standard indstillinger.\nDu skal geninstallere Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Kunne ikke indl\u00e6se indstillinger fra {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Fejl ved l\u00e6sning af indstillinger + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Fejl ved indl\u00e6sning af indstillingsfilen. Slet venligst (eller flyt)\n{0} og genstart Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Sketchbook sti\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=V\u00e6lg ny sketchbook sti + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (kr\u00e6ver genstart af Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Editor font st\u00f8rrelse\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Vis tydeligt output under\: + +#: Preferences.java:373 +compilation\ =kompilation + +#: Preferences.java:375 +upload=upload + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +Use\ external\ editor=Brug ekstern editor + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Tjek for opdateringer under start + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Opdater sketch filer til den nye udvidelse n\u00e5r der gemmes (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Tilknyt automatisk .ino filer med Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Flere indstillinger kan redigeres direkte i denne fil + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(rediger kun n\u00e5r Arduino ikke k\u00f8rer) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignorerer ugyldig font st\u00f8rrelse {0} diff --git a/app/src/processing/app/Resources_de.po b/app/src/processing/app/Resources_de.po new file mode 100644 index 000000000..bc56262c8 --- /dev/null +++ b/app/src/processing/app/Resources_de.po @@ -0,0 +1,1518 @@ +# German translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Lukas Bestle (http://www.lu-x-it.de), 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: Lukas Bestle (http://www.lu-x-it.de); Benjamin Hogl\n" +"Language-Team: German\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Es wurden keine Dateien zum Sketch hinzugefügt." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Eine Datei wurde zum Sketch hinzugefügt." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} Dateien wurden zum Sketch hinzugefügt." + +#: Editor.java:484 +msgid "File" +msgstr "Datei" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Neu" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Öffnen..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Sketchbook" + +#: Editor.java:509 +msgid "Examples" +msgstr "Beispiele" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Schließen" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Speichern" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Speichern unter..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Upload" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Upload mit Programmer" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Papierformat" + +#: Editor.java:564 +msgid "Print" +msgstr "Drucken" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Einstellungen" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Beenden" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Überprüfen / Kompilieren" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Library importieren..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Sketchordner anzeigen" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Datei hinzufügen..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Tools" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Serial Monitor" + +#: Editor.java:682 +msgid "Board" +msgstr "Board" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Serieller Port" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmer" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Bootloader installieren" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu ist leer" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "name ist leer" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "Fehler beim Holen der Portliste" + +#: Editor.java:1002 +msgid "Help" +msgstr "Hilfe" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Erste Schritte" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Umgebung" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Fehlersuche" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referenz" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "In Referenz suchen" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Häufig gestellte Fragen" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Arduino.cc besuchen" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Über Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Bearbeiten" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Rückgängig" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Wiederholen" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Ausschneiden" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopieren" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Für Forum kopieren" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Als HTML kopieren" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Einfügen" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Alles auswählen" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Kommentieren" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Einrücken" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Ausrücken" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Suchen..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Nächstes finden" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Vorheriges finden" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Auswahl zum Suchen verwenden" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Selektieren Sie erst ein Wort, um es in der Referenz zu finden." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Keine Referenz verfügbar für \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Sketch kompilieren..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Kompilierung abgeschlossen." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Änderungen an \"{0}\" speichern?" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " Möchten Sie Ihre Änderungen an diesem Sketch speichern, bevor Arduino geschlossen wird?

Wenn Sie die Datei nicht speichern, sind alle Änderungen verloren." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Abbruch" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Nicht speichern" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Ungültige Datei ausgewählt" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "Arduino kann nur seine eigenen Sketche\nund andere Dateien mit der Dateiendung .ino oder .pde öffnen" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "Die Datei \"{0}\" muss sich innerhalb\neines Sketchordners mit dem Namen \"{1}\" befinden.\nOrdner erstellen, die Datei verschieben und fortfahren?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Verschieben" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Fehler" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Ein Ordner mit dem Namen \"{0}\" existiert bereits.\nDer Sketch kann nicht geöffnet werden." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Der Sketchordner konnte nicht erstellt werden." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Konnte die Datei nicht an einen geeigneten Ort kopieren." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Der Sketch konnte nicht erstellt werden." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Speichern..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Gespeichert." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Speichern abgebrochen." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "Der serielle Port {0} wurde nicht gefunden.\nMit einem anderen Port erneut versuchen?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Upload zum I/O Board..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Upload abgeschlossen." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Upload abgebrochen." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Änderungen vor dem Export speichern?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Export wurde abgebrochen, die Änderungen müssen erst gespeichert werden." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Bootloader wird auf dem I/O Board installiert (das kann eine Weile dauern)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Bootloader wurde installiert." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Fehler beim Installieren des Bootloaders." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Drucken..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Gedruckt." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Fehler beim Drucken." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Drucken wurde abgebrochen." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Schlechte Fehlerzeile: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "URL öffnen" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "Es ist eine neue Version von Arduino verfügbar,\nmöchten Sie die Arduino Download-Seite besuchen?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Ja" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Nein" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Update" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Suchen:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Ersetzen mit:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Groß- und Kleinschreibung ignorieren" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Umschließen" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Alle ersetzen" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Ersetzen" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Ersetzen & Suchen" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Vorheriges" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Suchen" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Senden" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Automatisch scrollen" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Kein Zeilenende" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Neue Zeile (NL)" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Zeilenumbruch (CR)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Sowohl NL als auch CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "Der serielle Port ''{0}'' wird bereits verwendet. Probieren Sie, andere Programme zu beenden, die ihn benutzen könnten." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Fehler beim Öffnen des seriellen Ports ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "Der serielle Port ''{0}'' wurde nicht gefunden. Haben Sie den richtigen aus dem Menü Tools > Serieller Port ausgewählt?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "Der readBytesUntil() Byte Puffer ist zu klein für die {0} Bytes bis einschließlich char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Fehler in Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Automatisch formatieren" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Es sind keine Änderungen für automatisches Formatieren nötig." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Automatische Formatierung wurde abgebrochen: Zu viele schließende Klammern" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Automatische Formatierung wurde abgebrochen: Zu viele öffnende Klammern" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Automatische Formatierung wurde abgebrochen: Zu viele schließende geschweifte Klammern" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Automatische Formatierung wurde abgebrochen: Zu viele öffnende geschweifte Klammern" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Automatische Formatierung abgeschlossen." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Kodierung reparieren & neu laden" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Alle Änderungen verwerfen und Sketch neu laden?" + +#: 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 "Es ist ein Fehler beim Reparieren der Dateikodierung aufgetreten.\nVersuchen Sie nicht, diesen Sketch zu speichern,\nnweil es die alte Version überschreiben könnte.\nVerwenden Sie \"Öffnen\", um den Sketch neu zu öffnen und versuchen Sie es erneut." + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Sketch archivieren" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Sketch konnte nicht archiviert werden" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "Die Archivierung des Sketches wurde abgebrochen,\nweil der Sketch nicht korrekt gespeichert werden konnte." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Sketch archivieren als:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Archivierung des Sketches wurde abgebrochen." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Fehler beim Laden des Codes {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "\"{0}\" enthält fehlerhafte Zeichen. Wenn dieser Code mit einer älteren\nVersion von Arduino erstellt worden war, könnte es notwendig sein,\nTools > Kodierung reparieren & neu laden zu benutzen, um den Sketch\nin UTF-8 zu konvertieren. Wenn nicht, sollten Sie die\nschlechten Zeichen löschen, um die Meldung loszuwerden." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Sketch ist schreibgeschützt" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "Einige Dateien wurden als schreibgeschützt markiert,\nalso müssen Sie den Sketch woanders\nspeichern und es erneut versuchen." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Name für neue Datei:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Sketch hat keinen Namen" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "Wie wäre es, den Sketch erst zu speichern,\nbevor Sie versuchen, ihn umzubenennen?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problem beim Umbenennen" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Der Name darf nicht mit einem Punkt anfangen." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" ist keine gültige Dateiendung." + +#: Sketch.java:378 +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 "Die Hauptdatei kann keine Dateiendung benutzen.\n(Es wird Zeit, dass Sie einen Abschluss für eine \"richtige\" Programmierumgebung machen)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Nee" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Eine Datei mit dem Namen \"{0}\" existiert bereits in \"{1}\"." + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Sie können keine .cpp-Datei mit dem selben Namen wie der Sketch erstellen." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "Sie können den Sketch nicht zu \"{0}\"\numbenennen, weil der Sketch bereits eine\n.cpp-Datei mit diesem Namen hat." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Kann nicht umbenennen" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Sorry, ein Sketch (oder Ordner) mit dem Namen \"{0}\" existiert bereits." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Der Sketch konnte nicht umbenannt werden. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "\"{0}\" konnte nicht zu \"{1}\" umbenannt werden" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Der Sketch konnte nicht umbenannt werden. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Der Sketch konnte nicht umbenannt werden. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() hat false zurückgegeben" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Sind Sie sicher, dass Sie diesen Sketch löschen möchten?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Sind Sie sicher, dass Sie \"{0}\" löschen möchten?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Löschen" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Konnte nicht gemacht werden" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Konnte \"{0}\" nicht löschen." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: interner Fehler.. Konnte Code nicht finden" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Sketch ist schreibgeschützt" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "Einige Dateien wurden als \"Read-Only\" markiert,\nalso müssen Sie sie den Sketch an einem anderen\nSpeicherort speichern und es erneut versuchen" + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "In Arduino 1.0 hat sich die Standard-Dateiendung von .pde zu .ino geändert.\nNeue Sketche (inklusive diese, die über \"Speichern unter\" erstellt worden sind)\nverwenden diese neue Endung.\nDie Endung von existierenden Sketchen wird beim Speichern geändert,\ndieses Verhalten kann jedoch in den Einstellungen geändert werden.\n\nSketch speichern und Endung anpassen?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Sketchordner speichern als..." + +#: Sketch.java:865 +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 zu \"{0}\"\numbenennen, weil der Sketch bereits eine\n.cpp-Datei mit diesem Namen hat." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Uh oh" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "Sie können den Sketch nicht in einen\nOrdner in sich selbst abspeichern.\nDas würde immer so weiter gehen." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Wählen Sie ein Bild oder eine andere Datei zum Kopieren in ihren Sketch" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Existierende Version von {0} ersetzen?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Fehler beim Hinzufügen der Datei" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Konnte die existierende Datei ''{0}'' nicht löschen." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Du kannst mir nichts vormachen" + +#: Sketch.java:1079 +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 "Diese Datei wurde bereits zu dem Speicherort hinzugefügt,\nvon dem Sie sie versuchen, hinzuzufügen.\nIch tue einfach mal nichts." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "''{0}'' konnte nicht zum Sketch hinzugefügt werden." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Der Build-Ordner ist verschwunden, oder konnte nicht geschrieben werden" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Die Hauptklasse wurde nicht gefunden" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Nicht abgefangener Exception-Typ: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problem beim Verschieben von {0} in den Build-Ordner" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Uploaden..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Binäre Sketchgröße: {0} Bytes (von einem Maximum von {1} Bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Programmgröße konnte nicht festgestellt werden: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "Sketch zu groß; siehe http://www.arduino.cc/en/Guide/Troubleshooting#size für Tipps zum Verkleinern." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "*/ fehlt bei einem Ende eines /* Kommentars */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Sketch ist verschwunden" + +#: Sketch.java:1797 +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 "Der Sketch-Ordner ist verschwunden.\nEs wird versucht, am selben Speicherort zu speichern,\naber alles außer dem Code wird verloren sein." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Sketch konnte nicht gespeichert werden." + +#: Sketch.java:1811 +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 "Der Sketch konnte nicht korrekt gespeichert werden. Das könnte für Sie Probleme bedeuten\nund es wäre nun Zeit, den Code per Copy und Paste in einen anderen Texteditor zu übernehmen." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "Der Sketchname musste geändert werden. Sketchnamen können nur\nASCII-Zeichen und Zahlen enthalten (aber können nicht mit einer Zahl beginnen).\nAußerdem sollten Sie kürzer sein als 64 Zeichen." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Compiler-Fehler, bitte übermitteln Sie diesen Code zu {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "Der ausgewählte serielle Port {0} existiert nicht oder das Board ist nicht verbunden" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "Das Gerät antwortet nicht, überprüfen Sie, ob der richtige serielle Port ausgewählt ist oder führen Sie einen RESET auf dem Board direkt vor dem Export durch." + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "Problem beim Uploaden zum Board. Beachten Sie http://www.arduino.cc/en/Guide/Troubleshooting#upload für Lösungsvorschläge." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "Es wurde ein falscher Microcontroller gefunden. Haben Sie den richtigen aus dem Menü Tools > Board ausgewählt?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Es wurde kein Board ausgewählt; bitte wählen Sie ein Board aus dem Menü Tools > Board." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} hat {1} zurückgegeben" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Fehler beim Kompilieren." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Bitte importieren Sie die SPI Library aus dem Menü Sketch > Library importieren." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"As of Arduino 0019, the Ethernet library depends on the SPI library.\n" +"You appear to be using it or another library that depends on the SPI " +"library.\n" +"\n" +msgstr "\nSeit Arduino 0019 hängt die Ethernet Library von der SPI Library ab.\n Es scheint so, als würden Sie diese\noder eine andere Library verwenden, die die SPI Library benötigt.\n\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Das Keyword 'BYTE' wird nicht mehr unterstützt." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "\nSeit Arduino 1.0 wird das Keyword 'BYTE' nicht mehr unterstützt.\nBitte verwenden Sie stattdessen Serial.write().\n\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Die Klasse Server wurde zu EthernetServer umbenannt." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "\nSeit Arduino 1.0 wurde die Klasse Server zu EthernetServer umbenannt.\n\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Die Klasse Client wurde zu EthernetClient umbenannt." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "\nSeit Arduino 1.0 wurde die Klasse Client zu EthernetClient umbenannt.\n\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Die Klasse Udp wurde zu EthernetUdp umbenannt." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "\nSeit Arduino 1.0 wurde die Klasse Udp in der Ethernet Library zu EthernetClient umbenannt.\n\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() wurde zu Wire.write() umbenannt." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "\nSeit Arduino 1.0 wurde die Funktion Wire.send() wegen der Übereinstimmung mit anderen Librarys zu Wire.write() umbenannt.\n\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() wurde zu Wire.read() umbenannt." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "\nSeit Arduino 1.0 wurde die Funktion Wire.receive() wegen der Übereinstimmung mit anderen Librarys zu Wire.read() umbenannt.\n\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Konsolenfehler" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "Ein Problem ist aufgetreten,\nwährend versucht wurde, die Datei zum Speichern\nder Konsolenausgabe zu öffnen." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Nicht ernsthafter Fehler beim Setzen des Look & Feel" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Die Fehlermeldung folgt, trotzdem sollte der Arduino normal funktionieren." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problem beim Setzen der Plattform" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Es ist ein unbekannter Fehler aufgetreten,\nwährend versucht wurde, plattform-spezifischen\nCode für Ihren Computer auszuführen." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Bitte installieren Sie JDK 1.5 oder neuer" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "Arduino benötigt eine komplette JDK (nicht nur eine JRE),\num zu funktionieren. Bitte installieren Sie JDK 1.5 oder neuer.\nWeitere Informationen finden Sie in der Referenz." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Der Sketchbook-Ordner ist verschwunden" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "Der Sketchbook-Ordner existiert nicht mehr.\nArduino wird nun den Standard Sketchbook-Speicherort verwenden\n und wird einen neuen Sketchbook-Ordner erstellen, wenn notwendig.\nArduino wird dann aufhören, über sich in der dritten Person zu reden." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Zeit für eine Pause" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "Sie haben das heutige Limit für das automatische\nBenennen von Sketchen erreicht.\nWie wäre es mit einem Spaziergang?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Sonnenschein" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Nein wirklich, Zeit für ein bisschen frische Luft für Sie." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Einen Arduino Sketch öffnen..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr " Sind Sie sicher, dass Sie Arduino beenden möchten?

Das Schließen des letzten offenen Sketches beendet Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Beigetragen" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Sketch existiert nicht" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "Der ausgewählte Sketch existiert nicht mehr.\nSie sollten Arduino neu starten, um das Sketchbook-Menü zu aktualisieren." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "Der Sketch \"{0}\" kann nicht verwendet werden.\n Sketchnamen dürfen nur normale Buchstaben und Zahlen\n(ausschließlich ASCII ohne Leerzeichen und ohne Zahl als erstes Zeichen) enthalten.\nBitte löschen Sie diesen Sketch von {1}, um diese Meldung loszuwerden." + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignoriere Sketch mit ungültigem Namen" + +#: Base.java:1202 +#, java-format +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 "Die Library \"{0}\" kann nicht verwendet werden.\nLibrarynamen dürfen nur normale Buchstaben und Zahlen\n(ausschließlich ASCII ohne Leerzeichen und ohne Zahl als erstes Zeichen) enthalten." + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignoriere ungültigen Librarynamen" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problem beim Lesen des Datenordners" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Fehler beim Lesen des Arduino Datenordners." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Fehler bei den Einstellungen" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "Arduino konnte nicht gestartet werden,\nweil kein Ordner zum Speichern der\nEinstellungen erstellt werden konnte." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Sie haben Ihr Sketchbook vergessen" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "Arduino konnte nicht gestartet werden,\nweil kein Ordner zum Speichern des\nSketchbooks erstellt werden konnte." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Einen Ordner für Sketches auswählen (oder neu erstellen)..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problem beim Öffnen der URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "Die URL\n{0}\nkonnte nicht geöffnet werden." + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problem beim Öffnen des Ordners" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "Der Ordner {0} konnte nicht geöffnet werden." + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "environment" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Nachricht" + +#: Base.java:1842 +msgid "Warning" +msgstr "Warnung" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Alte Version von {0} konnte nicht gelöscht werden" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "{0} konnte nicht ersetzt werden" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "{0} konnte nicht gelöscht werden" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Neuer Tab" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Umbenennen" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Vorheriger Tab" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Nächster Tab" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Überprüfen" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Öffnen" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Neues Editorfenster" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "In einem neuen Fenster öffnen" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Kein Starter verfügbar" + +#: 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 "Unspezifizierte Plattform, kein Starter verfügbar.\nUm das Öffnen von URLs oder Ordnern zu aktivieren,\nfügen Sie bitte die Zeile\n\"launcher=/path/to/app\" in der preferences.txt hinzu." + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "Farbschema-Einstellungen konnten nicht gelesen werden.\nSie sollten Arduino neu installieren." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Durchsuchen" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Català" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "大陆简体" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Dansk" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Nederlands" + +#: Preferences.java:91 +msgid "English" +msgstr "English" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Français" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Pilipino" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galego" + +#: Preferences.java:96 +msgid "German" +msgstr "Deutsch" + +#: Preferences.java:97 +msgid "Greek" +msgstr "ελληνικά" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Magyar" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italiano" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "日本語" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Latviešu Valoda" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "فارسی" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Limba Română" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Español" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "Standardeinstellungen konnten nicht gelesen werden.\nSie müssen Arduino neu installieren." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Einstellungen konnten nicht aus {0} gelesen werden." + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Fehler beim Lesen der Einstellungen" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "Fehler beim Lesen der Einstellungs-Datei. Bitte löschen\n(oder verschieben) Sie {0} und starten Sie Arduino neu." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Sketchbook Speicherort:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Neuen Sketchbook Speicherort auswählen" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (benötigt einen Neustart von Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Editor Schriftgröße: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Ausführliche Ausgabe anzeigen während: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "Kompilierung " + +#: Preferences.java:375 +msgid "upload" +msgstr "Upload" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Code nach Upload überprüfen" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Externen Editor benutzen" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Beim Starten nach Updates suchen" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Sketchdateien beim Speichern zu neuer Dateiendung aktualisieren (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr ".ino-Dateien automatisch mit Arduino verknüpfen" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Mehr Einstellungen können direkt in der Datei geändert werden" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(nur bearbeiten, wenn Arduino nicht gestartet ist)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "Ignoriere ungültige Schriftgröße {0}" diff --git a/app/src/processing/app/Resources_de.properties b/app/src/processing/app/Resources_de.properties new file mode 100644 index 000000000..b116c6999 --- /dev/null +++ b/app/src/processing/app/Resources_de.properties @@ -0,0 +1,1034 @@ +# German translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Lukas Bestle (http://www.lu-x-it.de), 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: Lukas Bestle (http\://www.lu-x-it.de); Benjamin Hogl\nLanguage-Team\: German\nLanguage\: de\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Es wurden keine Dateien zum Sketch hinzugef\u00fcgt. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Eine Datei wurde zum Sketch hinzugef\u00fcgt. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} Dateien wurden zum Sketch hinzugef\u00fcgt. + +#: Editor.java:484 +File=Datei + +#: Editor.java:486 EditorToolbar.java:41 +New=Neu + +#: Editor.java:494 Base.java:903 +Open...=\u00d6ffnen... + +#: Editor.java:503 +Sketchbook=Sketchbook + +#: Editor.java:509 +Examples=Beispiele + +#: Editor.java:514 Editor.java:1977 +Close=Schlie\u00dfen + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Speichern + +#: Editor.java:530 +Save\ As...=Speichern unter... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Upload + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Upload mit Programmer + +#: Editor.java:556 +Page\ Setup=Papierformat + +#: Editor.java:564 +Print=Drucken + +#: Editor.java:576 Preferences.java:279 +Preferences=Einstellungen + +#: Editor.java:586 Base.java:782 +Quit=Beenden + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=\u00dcberpr\u00fcfen / Kompilieren + +#: Editor.java:629 +Import\ Library...=Library importieren... + +#: Editor.java:634 +Show\ Sketch\ Folder=Sketchordner anzeigen + +#: Editor.java:643 +Add\ File...=Datei hinzuf\u00fcgen... + +#: Editor.java:656 +Tools=Tools + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Serial Monitor + +#: Editor.java:682 +Board=Board + +#: Editor.java:690 +Serial\ Port=Serieller Port + +#: Editor.java:695 +Programmer=Programmer + +#: Editor.java:699 +Burn\ Bootloader=Bootloader installieren + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu ist leer + +#: Editor.java:927 Editor.java:934 +name\ is\ null=name ist leer + +#: Editor.java:986 +error\ retrieving\ port\ list=Fehler beim Holen der Portliste + +#: Editor.java:1002 +Help=Hilfe + +#: Editor.java:1041 +Getting\ Started=Erste Schritte + +#: Editor.java:1049 +Environment=Umgebung + +#: Editor.java:1057 +Troubleshooting=Fehlersuche + +#: Editor.java:1065 +Reference=Referenz + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=In Referenz suchen + +#: Editor.java:1083 +Frequently\ Asked\ Questions=H\u00e4ufig gestellte Fragen + +#: Editor.java:1091 +Visit\ Arduino.cc=Arduino.cc besuchen + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u00dcber Arduino + +#: Editor.java:1116 +Edit=Bearbeiten + +#: Editor.java:1119 Editor.java:1341 +Undo=R\u00fcckg\u00e4ngig + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Wiederholen + +#: Editor.java:1135 Editor.java:2652 +Cut=Ausschneiden + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopieren + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=F\u00fcr Forum kopieren + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Als HTML kopieren + +#: Editor.java:1175 Editor.java:2684 +Paste=Einf\u00fcgen + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Alles ausw\u00e4hlen + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Kommentieren + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Einr\u00fccken + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Ausr\u00fccken + +#: Editor.java:1220 +Find...=Suchen... + +#: Editor.java:1235 +Find\ Next=N\u00e4chstes finden + +#: Editor.java:1245 +Find\ Previous=Vorheriges finden + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Auswahl zum Suchen verwenden + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Selektieren Sie erst ein Wort, um es in der Referenz zu finden. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Keine Referenz verf\u00fcgbar f\u00fcr "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Sketch kompilieren... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Kompilierung abgeschlossen. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u00c4nderungen an "{0}" speichern? + +#: Editor.java:2006 +\ \ 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.= M\u00f6chten Sie Ihre \u00c4nderungen an diesem Sketch speichern, bevor Arduino geschlossen wird?

Wenn Sie die Datei nicht speichern, sind alle \u00c4nderungen verloren. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Abbruch + +#: Editor.java:2017 +Don't\ Save=Nicht speichern + +#: Editor.java:2089 +Bad\ file\ selected=Ung\u00fcltige Datei ausgew\u00e4hlt + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino kann nur seine eigenen Sketche\nund andere Dateien mit der Dateiendung .ino oder .pde \u00f6ffnen + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Die Datei "{0}" muss sich innerhalb\neines Sketchordners mit dem Namen "{1}" befinden.\nOrdner erstellen, die Datei verschieben und fortfahren? + +#: Editor.java:2109 +Moving=Verschieben + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Fehler + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Ein Ordner mit dem Namen "{0}" existiert bereits.\nDer Sketch kann nicht ge\u00f6ffnet werden. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Der Sketchordner konnte nicht erstellt werden. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Konnte die Datei nicht an einen geeigneten Ort kopieren. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Der Sketch konnte nicht erstellt werden. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Speichern... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Gespeichert. + +#: Editor.java:2270 +Save\ Canceled.=Speichern abgebrochen. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Der serielle Port {0} wurde nicht gefunden.\nMit einem anderen Port erneut versuchen? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Upload zum I/O Board... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Upload abgeschlossen. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Upload abgebrochen. + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u00c4nderungen vor dem Export speichern? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Export wurde abgebrochen, die \u00c4nderungen m\u00fcssen erst gespeichert werden. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader wird auf dem I/O Board installiert (das kann eine Weile dauern)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Bootloader wurde installiert. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Fehler beim Installieren des Bootloaders. + +#: Editor.java:2500 +Printing...=Drucken... + +#: Editor.java:2517 +Done\ printing.=Gedruckt. + +#: Editor.java:2520 +Error\ while\ printing.=Fehler beim Drucken. + +#: Editor.java:2524 +Printing\ canceled.=Drucken wurde abgebrochen. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Schlechte Fehlerzeile\: {0} + +#: Editor.java:2641 +Open\ URL=URL \u00f6ffnen + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Es ist eine neue Version von Arduino verf\u00fcgbar,\nm\u00f6chten Sie die Arduino Download-Seite besuchen? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Ja + +#: UpdateCheck.java:108 Preferences.java:77 +No=Nein + +#: UpdateCheck.java:111 +Update=Update + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Suchen\: + +#: FindReplace.java:81 +Replace\ with\:=Ersetzen mit\: + +#: FindReplace.java:96 +Ignore\ Case=Gro\u00df- und Kleinschreibung ignorieren + +#: FindReplace.java:105 +Wrap\ Around=Umschlie\u00dfen + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Alle ersetzen + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Ersetzen + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Ersetzen & Suchen + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Vorheriges + +#: FindReplace.java:124 FindReplace.java:127 +Find=Suchen + +#: SerialMonitor.java:93 +Send=Senden + +#: SerialMonitor.java:110 +Autoscroll=Automatisch scrollen + +#: SerialMonitor.java:112 +No\ line\ ending=Kein Zeilenende + +#: SerialMonitor.java:112 +Newline=Neue Zeile (NL) + +#: SerialMonitor.java:112 +Carriage\ return=Zeilenumbruch (CR) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Sowohl NL als auch CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Der serielle Port ''{0}'' wird bereits verwendet. Probieren Sie, andere Programme zu beenden, die ihn benutzen k\u00f6nnten. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Fehler beim \u00d6ffnen des seriellen Ports ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Der serielle Port ''{0}'' wurde nicht gefunden. Haben Sie den richtigen aus dem Men\u00fc Tools > Serieller Port ausgew\u00e4hlt? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Der readBytesUntil() Byte Puffer ist zu klein f\u00fcr die {0} Bytes bis einschlie\u00dflich char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Fehler in Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Automatisch formatieren + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Es sind keine \u00c4nderungen f\u00fcr automatisches Formatieren n\u00f6tig. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Automatische Formatierung wurde abgebrochen\: Zu viele schlie\u00dfende Klammern + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Automatische Formatierung wurde abgebrochen\: Zu viele \u00f6ffnende Klammern + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Automatische Formatierung wurde abgebrochen\: Zu viele schlie\u00dfende geschweifte Klammern + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Automatische Formatierung wurde abgebrochen\: Zu viele \u00f6ffnende geschweifte Klammern + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Automatische Formatierung abgeschlossen. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Kodierung reparieren & neu laden + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Alle \u00c4nderungen verwerfen und Sketch neu laden? + +#: 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=Es ist ein Fehler beim Reparieren der Dateikodierung aufgetreten.\nVersuchen Sie nicht, diesen Sketch zu speichern,\nnweil es die alte Version \u00fcberschreiben k\u00f6nnte.\nVerwenden Sie "\u00d6ffnen", um den Sketch neu zu \u00f6ffnen und versuchen Sie es erneut. + +#: tools/Archiver.java:48 +Archive\ Sketch=Sketch archivieren + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Sketch konnte nicht archiviert werden + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Die Archivierung des Sketches wurde abgebrochen,\nweil der Sketch nicht korrekt gespeichert werden konnte. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Sketch archivieren als\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Archivierung des Sketches wurde abgebrochen. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Fehler beim Laden des Codes {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" enth\u00e4lt fehlerhafte Zeichen. Wenn dieser Code mit einer \u00e4lteren\nVersion von Arduino erstellt worden war, k\u00f6nnte es notwendig sein,\nTools > Kodierung reparieren & neu laden zu benutzen, um den Sketch\nin UTF-8 zu konvertieren. Wenn nicht, sollten Sie die\nschlechten Zeichen l\u00f6schen, um die Meldung loszuwerden. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Sketch ist schreibgesch\u00fctzt + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Einige Dateien wurden als schreibgesch\u00fctzt markiert,\nalso m\u00fcssen Sie den Sketch woanders\nspeichern und es erneut versuchen. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Name f\u00fcr neue Datei\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Sketch hat keinen Namen + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Wie w\u00e4re es, den Sketch erst zu speichern,\nbevor Sie versuchen, ihn umzubenennen? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Problem beim Umbenennen + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Der Name darf nicht mit einem Punkt anfangen. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" ist keine g\u00fcltige Dateiendung. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Die Hauptdatei kann keine Dateiendung benutzen.\n(Es wird Zeit, dass Sie einen Abschluss f\u00fcr eine "richtige" Programmierumgebung machen) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Nee + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Eine Datei mit dem Namen "{0}" existiert bereits in "{1}". + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sie k\u00f6nnen keine .cpp-Datei mit dem selben Namen wie der Sketch erstellen. + +#: Sketch.java:425 +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 zu "{0}"\numbenennen, weil der Sketch bereits eine\n.cpp-Datei mit diesem Namen hat. + +#: Sketch.java:459 +Cannot\ Rename=Kann nicht umbenennen + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Sorry, ein Sketch (oder Ordner) mit dem Namen "{0}" existiert bereits. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Der Sketch konnte nicht umbenannt werden. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}" konnte nicht zu "{1}" umbenannt werden + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Der Sketch konnte nicht umbenannt werden. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Der Sketch konnte nicht umbenannt werden. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() hat false zur\u00fcckgegeben + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Sind Sie sicher, dass Sie diesen Sketch l\u00f6schen m\u00f6chten? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Sind Sie sicher, dass Sie "{0}" l\u00f6schen m\u00f6chten? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=L\u00f6schen + +#: Sketch.java:620 +Couldn't\ do\ it=Konnte nicht gemacht werden + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Konnte "{0}" nicht l\u00f6schen. + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: interner Fehler.. Konnte Code nicht finden + +#: Sketch.java:724 +Sketch\ is\ read-only=Sketch ist schreibgesch\u00fctzt + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Einige Dateien wurden als "Read-Only" markiert,\nalso m\u00fcssen Sie sie den Sketch an einem anderen\nSpeicherort speichern und es erneut versuchen + +#: Sketch.java:743 +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 hat sich die Standard-Dateiendung von .pde zu .ino ge\u00e4ndert.\nNeue Sketche (inklusive diese, die \u00fcber "Speichern unter" erstellt worden sind)\nverwenden diese neue Endung.\nDie Endung von existierenden Sketchen wird beim Speichern ge\u00e4ndert,\ndieses Verhalten kann jedoch in den Einstellungen ge\u00e4ndert werden.\n\nSketch speichern und Endung anpassen? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Sketchordner speichern als... + +#: Sketch.java:865 +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 zu "{0}"\numbenennen, weil der Sketch bereits eine\n.cpp-Datei mit diesem Namen hat. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Uh oh + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sie k\u00f6nnen den Sketch nicht in einen\nOrdner in sich selbst abspeichern.\nDas w\u00fcrde immer so weiter gehen. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=W\u00e4hlen Sie ein Bild oder eine andere Datei zum Kopieren in ihren Sketch + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Existierende Version von {0} ersetzen? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Fehler beim Hinzuf\u00fcgen der Datei + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Konnte die existierende Datei ''{0}'' nicht l\u00f6schen. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Du kannst mir nichts vormachen + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Diese Datei wurde bereits zu dem Speicherort hinzugef\u00fcgt,\nvon dem Sie sie versuchen, hinzuzuf\u00fcgen.\nIch tue einfach mal nichts. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}'' konnte nicht zum Sketch hinzugef\u00fcgt werden. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Der Build-Ordner ist verschwunden, oder konnte nicht geschrieben werden + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Die Hauptklasse wurde nicht gefunden + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Nicht abgefangener Exception-Typ\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problem beim Verschieben von {0} in den Build-Ordner + +#: Sketch.java:1661 +Uploading...=Uploaden... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Bin\u00e4re Sketchgr\u00f6\u00dfe\: {0} Bytes (von einem Maximum von {1} Bytes) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Programmgr\u00f6\u00dfe konnte nicht festgestellt werden\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch zu gro\u00df; siehe http\://www.arduino.cc/en/Guide/Troubleshooting\#size f\u00fcr Tipps zum Verkleinern. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=*/ fehlt bei einem Ende eines /* Kommentars */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Sketch ist verschwunden + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Der Sketch-Ordner ist verschwunden.\nEs wird versucht, am selben Speicherort zu speichern,\naber alles au\u00dfer dem Code wird verloren sein. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Sketch konnte nicht gespeichert werden. + +#: Sketch.java:1811 +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.=Der Sketch konnte nicht korrekt gespeichert werden. Das k\u00f6nnte f\u00fcr Sie Probleme bedeuten\nund es w\u00e4re nun Zeit, den Code per Copy und Paste in einen anderen Texteditor zu \u00fcbernehmen. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Der Sketchname musste ge\u00e4ndert werden. Sketchnamen k\u00f6nnen nur\nASCII-Zeichen und Zahlen enthalten (aber k\u00f6nnen nicht mit einer Zahl beginnen).\nAu\u00dferdem sollten Sie k\u00fcrzer sein als 64 Zeichen. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Compiler-Fehler, bitte \u00fcbermitteln Sie diesen Code zu {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=Der ausgew\u00e4hlte serielle Port {0} existiert nicht oder das Board ist nicht verbunden + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Das Ger\u00e4t antwortet nicht, \u00fcberpr\u00fcfen Sie, ob der richtige serielle Port ausgew\u00e4hlt ist oder f\u00fchren Sie einen RESET auf dem Board direkt vor dem Export durch. + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem beim Uploaden zum Board. Beachten Sie http\://www.arduino.cc/en/Guide/Troubleshooting\#upload f\u00fcr L\u00f6sungsvorschl\u00e4ge. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Es wurde ein falscher Microcontroller gefunden. Haben Sie den richtigen aus dem Men\u00fc Tools > Board ausgew\u00e4hlt? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Es wurde kein Board ausgew\u00e4hlt; bitte w\u00e4hlen Sie ein Board aus dem Men\u00fc Tools > Board. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} hat {1} zur\u00fcckgegeben + +#: debug/Compiler.java:426 +Error\ compiling.=Fehler beim Kompilieren. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Bitte importieren Sie die SPI Library aus dem Men\u00fc Sketch > Library importieren. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nSeit Arduino 0019 h\u00e4ngt die Ethernet Library von der SPI Library ab.\n Es scheint so, als w\u00fcrden Sie diese\noder eine andere Library verwenden, die die SPI Library ben\u00f6tigt.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Das Keyword 'BYTE' wird nicht mehr unterst\u00fctzt. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nSeit Arduino 1.0 wird das Keyword 'BYTE' nicht mehr unterst\u00fctzt.\nBitte verwenden Sie stattdessen Serial.write().\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Die Klasse Server wurde zu EthernetServer umbenannt. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nSeit Arduino 1.0 wurde die Klasse Server zu EthernetServer umbenannt.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Die Klasse Client wurde zu EthernetClient umbenannt. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nSeit Arduino 1.0 wurde die Klasse Client zu EthernetClient umbenannt.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Die Klasse Udp wurde zu EthernetUdp umbenannt. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nSeit Arduino 1.0 wurde die Klasse Udp in der Ethernet Library zu EthernetClient umbenannt.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() wurde zu Wire.write() umbenannt. + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nSeit Arduino 1.0 wurde die Funktion Wire.send() wegen der \u00dcbereinstimmung mit anderen Librarys zu Wire.write() umbenannt.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() wurde zu Wire.read() umbenannt. + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nSeit Arduino 1.0 wurde die Funktion Wire.receive() wegen der \u00dcbereinstimmung mit anderen Librarys zu Wire.read() umbenannt.\n\n + +#: EditorConsole.java:152 +Console\ Error=Konsolenfehler + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ein Problem ist aufgetreten,\nw\u00e4hrend versucht wurde, die Datei zum Speichern\nder Konsolenausgabe zu \u00f6ffnen. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Nicht ernsthafter Fehler beim Setzen des Look & Feel + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Die Fehlermeldung folgt, trotzdem sollte der Arduino normal funktionieren. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problem beim Setzen der Plattform + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Es ist ein unbekannter Fehler aufgetreten,\nw\u00e4hrend versucht wurde, plattform-spezifischen\nCode f\u00fcr Ihren Computer auszuf\u00fchren. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Bitte installieren Sie JDK 1.5 oder neuer + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino ben\u00f6tigt eine komplette JDK (nicht nur eine JRE),\num zu funktionieren. Bitte installieren Sie JDK 1.5 oder neuer.\nWeitere Informationen finden Sie in der Referenz. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Der Sketchbook-Ordner ist verschwunden + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Der Sketchbook-Ordner existiert nicht mehr.\nArduino wird nun den Standard Sketchbook-Speicherort verwenden\n und wird einen neuen Sketchbook-Ordner erstellen, wenn notwendig.\nArduino wird dann aufh\u00f6ren, \u00fcber sich in der dritten Person zu reden. + +#: Base.java:532 +Time\ for\ a\ Break=Zeit f\u00fcr eine Pause + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Sie haben das heutige Limit f\u00fcr das automatische\nBenennen von Sketchen erreicht.\nWie w\u00e4re es mit einem Spaziergang? + +#: Base.java:537 +Sunshine=Sonnenschein + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nein wirklich, Zeit f\u00fcr ein bisschen frische Luft f\u00fcr Sie. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Einen Arduino Sketch \u00f6ffnen... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Sind Sie sicher, dass Sie Arduino beenden m\u00f6chten?

Das Schlie\u00dfen des letzten offenen Sketches beendet Arduino. + +#: Base.java:970 +Contributed=Beigetragen + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Sketch existiert nicht + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Der ausgew\u00e4hlte Sketch existiert nicht mehr.\nSie sollten Arduino neu starten, um das Sketchbook-Men\u00fc zu aktualisieren. + +#: Base.java:1125 +#, 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}=Der Sketch "{0}" kann nicht verwendet werden.\n Sketchnamen d\u00fcrfen nur normale Buchstaben und Zahlen\n(ausschlie\u00dflich ASCII ohne Leerzeichen und ohne Zahl als erstes Zeichen) enthalten.\nBitte l\u00f6schen Sie diesen Sketch von {1}, um diese Meldung loszuwerden. + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignoriere Sketch mit ung\u00fcltigem Namen + +#: Base.java:1202 +#, 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)=Die Library "{0}" kann nicht verwendet werden.\nLibrarynamen d\u00fcrfen nur normale Buchstaben und Zahlen\n(ausschlie\u00dflich ASCII ohne Leerzeichen und ohne Zahl als erstes Zeichen) enthalten. + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignoriere ung\u00fcltigen Librarynamen + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problem beim Lesen des Datenordners + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Fehler beim Lesen des Arduino Datenordners. + +#: Base.java:1440 +Settings\ issues=Fehler bei den Einstellungen + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino konnte nicht gestartet werden,\nweil kein Ordner zum Speichern der\nEinstellungen erstellt werden konnte. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Sie haben Ihr Sketchbook vergessen + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino konnte nicht gestartet werden,\nweil kein Ordner zum Speichern des\nSketchbooks erstellt werden konnte. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Einen Ordner f\u00fcr Sketches ausw\u00e4hlen (oder neu erstellen)... + +#: Base.java:1647 +Problem\ Opening\ URL=Problem beim \u00d6ffnen der URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Die URL\n{0}\nkonnte nicht ge\u00f6ffnet werden. + +#: Base.java:1671 +Problem\ Opening\ Folder=Problem beim \u00d6ffnen des Ordners + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Der Ordner {0} konnte nicht ge\u00f6ffnet werden. + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=environment + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Nachricht + +#: Base.java:1842 +Warning=Warnung + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Alte Version von {0} konnte nicht gel\u00f6scht werden + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}={0} konnte nicht ersetzt werden + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}={0} konnte nicht gel\u00f6scht werden + +#: EditorHeader.java:292 +New\ Tab=Neuer Tab + +#: EditorHeader.java:300 +Rename=Umbenennen + +#: EditorHeader.java:326 +Previous\ Tab=Vorheriger Tab + +#: EditorHeader.java:340 +Next\ Tab=N\u00e4chster Tab + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u00dcberpr\u00fcfen + +#: EditorToolbar.java:41 +Open=\u00d6ffnen + +#: EditorToolbar.java:46 +New\ Editor\ Window=Neues Editorfenster + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=In einem neuen Fenster \u00f6ffnen + +#: Platform.java:167 +No\ launcher\ available=Kein Starter verf\u00fcgbar + +#: 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=Unspezifizierte Plattform, kein Starter verf\u00fcgbar.\nUm das \u00d6ffnen von URLs oder Ordnern zu aktivieren,\nf\u00fcgen Sie bitte die Zeile\n"launcher\=/path/to/app" in der preferences.txt hinzu. + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Farbschema-Einstellungen konnten nicht gelesen werden.\nSie sollten Arduino neu installieren. + +#: Preferences.java:80 +Browse=Durchsuchen + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Catal\u00e0 + +#: Preferences.java:87 +Chinese\ Simplified=\u5927\u9646\u7b80\u4f53 + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Dansk + +#: Preferences.java:90 +Dutch=Nederlands + +#: Preferences.java:91 +English=English + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Fran\u00e7ais + +#: Preferences.java:94 +Filipino=Pilipino + +#: Preferences.java:95 +Galician=Galego + +#: Preferences.java:96 +German=Deutsch + +#: Preferences.java:97 +Greek=\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac + +#: Preferences.java:98 +Hungarian=Magyar + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Italiano + +#: Preferences.java:101 +Japanese=\u65e5\u672c\u8a9e + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Latvie\u0161u Valoda + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=\u0641\u0627\u0631\u0633\u06cc + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Limba Rom\u00e2n\u0103 + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Espa\u00f1ol + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Standardeinstellungen konnten nicht gelesen werden.\nSie m\u00fcssen Arduino neu installieren. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Einstellungen konnten nicht aus {0} gelesen werden. + +#: Preferences.java:261 +Error\ reading\ preferences=Fehler beim Lesen der Einstellungen + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Fehler beim Lesen der Einstellungs-Datei. Bitte l\u00f6schen\n(oder verschieben) Sie {0} und starten Sie Arduino neu. + +#: Preferences.java:299 +Sketchbook\ location\:=Sketchbook Speicherort\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Neuen Sketchbook Speicherort ausw\u00e4hlen + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (ben\u00f6tigt einen Neustart von Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Editor Schriftgr\u00f6\u00dfe\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Ausf\u00fchrliche Ausgabe anzeigen w\u00e4hrend\: + +#: Preferences.java:373 +compilation\ =Kompilierung + +#: Preferences.java:375 +upload=Upload + +#: Preferences.java:384 +Verify\ code\ after\ upload=Code nach Upload \u00fcberpr\u00fcfen + +#: Preferences.java:393 +Use\ external\ editor=Externen Editor benutzen + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Beim Starten nach Updates suchen + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Sketchdateien beim Speichern zu neuer Dateiendung aktualisieren (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=.ino-Dateien automatisch mit Arduino verkn\u00fcpfen + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mehr Einstellungen k\u00f6nnen direkt in der Datei ge\u00e4ndert werden + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(nur bearbeiten, wenn Arduino nicht gestartet ist) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=Ignoriere ung\u00fcltige Schriftgr\u00f6\u00dfe {0} diff --git a/app/src/processing/app/Resources_el.po b/app/src/processing/app/Resources_el.po new file mode 100644 index 000000000..9cbedcee2 --- /dev/null +++ b/app/src/processing/app/Resources_el.po @@ -0,0 +1,1519 @@ +# Greek translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Arduino - Greek\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-04-08 20:30+0000\n" +"Last-Translator: tzikis \n" +"Language-Team: Greek (http://www.transifex.net/projects/p/arduino_greek/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Δεν έχουν προστεθεί αρχεία στο σχέδιο." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Ένα αρχείο προστέθηκε στο σχέδιο." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} αρχεία προστέθηκαν στο σχέδιο." + +#: Editor.java:484 +msgid "File" +msgstr "Αρχείο" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Νέο" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Άνοιγμα..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Σχέδια" + +#: Editor.java:509 +msgid "Examples" +msgstr "Παραδείγματα" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Κλείσιμο" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Αποθήκευση" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Αποθήκευση Ως..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Φόρτωση" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Φόρτωση Με Χρήση Προγραμματιστή" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Ρύθμιση Σελίδας" + +#: Editor.java:564 +msgid "Print" +msgstr "Εκτύπωση" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Επιλογές" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Έξοδος" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Σχέδιο" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Επαλήθευση / Μεταγλώττιση" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Εισαγωγή Βιβλιοθήκης..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Εμφάνιση Φακέλου Σχεδίου" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Εισαγωγή Αρχείου..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Εργαλεία" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Σειριακή Οθόνη" + +#: Editor.java:682 +msgid "Board" +msgstr "Πλακέτα" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Σειριακή Θύρα" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Προγραμματιστής" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Γράψιμο Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "Το serialMenu είναι κενό" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "το όνομα είναι κενό" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "σφάλμα ανάκτησης της λίστας θυρών" + +#: Editor.java:1002 +msgid "Help" +msgstr "Βοήθεια" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Ξεκίνημα" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Περιβάλλον" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Αντιμετώπιση Προβλημάτων" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Αναφορά" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Εύρεση στην Αναφορά" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Συχνές Ερωτήσεις" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Επίσκεψη στο Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Σχετικά με το Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Επεξεργασία" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Αναίρεση" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Επαναφορά" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Αποκοπή" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Αντιγραφή" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Αντιγραφή για το Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Αντιγραφή ως HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Επικόλληση" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Επιλογή Όλων" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Σχολιασμός/Αποσχολιασμός" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Αύξηση Επιπέδου Εισαγωγής" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Μείωση Επιπέδου Εισαγωγής" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Εύρεση..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Εύρεση Επομένου" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Εύρεση Προηγουμένου" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Χρήση Επιλογής για Εύρεση" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Επιλέξτε πρώτα μια λέξη για εύρεση στην Αναφορά" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Δεν υπάρχει αναφορά για το \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Μεταγλώτιση σχεδίου..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Μεταγλώτιση επιτυχής." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Αποθήκευση αλλαγών στο \"{0}\";" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " Θέλετε να αποθηκεύσετε αυτό το σχέδιο
πρίν εξέλθετε;

Αν δεν το αποθηκεύσετε, όλες οι αλλαγές σας θα χαθούν." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Ακύρωση" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Όχι Αποθήκευση" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Επιλέχθηκε Χαλασμένο αρχείο" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "Η Processing μπορεί να ανοίξει μόνο τα δικά της σχέδια\nκαι άλλα αρχεία με κατάληξη .ino ή .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "Το αρχείο \"{0}\" πρέπει να είναι μέσα\nσε ένα φάκελο σχεδίου με όνομα \"{1}\".\nΔημιουργία φακέλου, μεταφορά αρχείου, και συνέχεια;" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Μεταφορά" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Σφάλμα" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Υπάρχει ήδη φάκελος με όνομα \"{0}\". Αδύνατο το άνοιγμα του σχεδίου." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Αδύνατη η δημιουργία φακέλου σχεδίων." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Δεν ήταν δυνατή η αντιγραφή σε μια σωστή τοποθεσία." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Δεν ήταν δυνατή η δημιουργία του σχεδίου." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Αποθήκευση..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Αποθήκευση Επιτυχής." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Ακύρωση Αποθήκευσης." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "Η σειριακή θύρα {0} δεν βρέθηκε.\nΕπανάληψη φόρτωσης σε άλλη σειριακή θύρα;" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Φόρτωση στην πλακέτα I/O..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Φόρτωση επιτυχής." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Ακύρωση φόρτωσης." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Αποθήκευση αλλαγών πρίν την εξαγωγή;" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Η εξαγωγή ακυρώθηκε, οι αλλαγές πρέπει πρώτα να αποθηκευτούν." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Εγγραφή bootloader στην πλακέτα I/O (αυτό μπορεί να κάνει ένα λεπτό)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Εγγραφή bootloader επιτυχής." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Σφάλμα κατά την εγγραφή του bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Εκτύπωση..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Εκτύπωση επιτυχής" + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Σφάλμα κατά την εκτύπωση." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Ακύρωση εκτύπωσης." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Λανθασμένη γραμμή σφάλματος: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Άνοιγμα URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "Μια νέα έκδοση του Arduino είναι διαθέσιμη,\nθα θέλατε να επισκεφθείτε την σελίδα κατεβάσματος του Arduino;" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Ναι" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Όχι" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Ενημέρωση" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Εύρεση:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Αντικατάσταση με:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Παράβλεψη Πεζών/Κεφαλαίων" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Αναδίπλωση" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Αντικατάσταση Όλων" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Αντικατάσταση" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Αντικατάσταση & Εύρεση" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Προηγούμενο" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Εύρεση" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Αποστολή" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Αυτόματο scroll" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Χωρίς τέλος γραμμής" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Νέα γραμμή" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Επιστροφή δρομέα" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Νέα γραμμή και Επιστροφή δρομέα, NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "Η σειριακή θύρα \"{0}\" χρησιμοποιείται ήδη. Δοκιμάστε να κλείσετε όλα τα προγράμματα που μπορεί να την χρησιμοποιούν." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Σφάλμα ανοίγματος της σειριακής θύρας \"{0}\"." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "Η σειριακή θύρα \"{0}\" δεν βρέθηκε. Επιλέξατε την σωστή από το μενού Εργαλεία > Σειριακή Θύρα;" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "Ο buffer readBytesUntil() είανι πολύ μικρός για τα {0} bytes μέχρι τον char {1}, συμπεριλαμβανομένου αυτού" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Σφάλμα μέσα στην Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Αυτόματη Μορφοποίηση" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Δεν χρειάζονται αλλαγές για την Αυτόματη Μορφοποίηση" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Ακύρωση Αυτόματης Μορφοποίησης: Πάρα πολλές δεξιές παρενθέσεις." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Ακύρωση Αυτόματης Μορφοποίησης: Πάρα πολλές αριστερές παρενθέσεις." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Ακύρωση Αυτόματης Μορφοποίησης: Πάρα πολλές δεξιές αγκύλες." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Ακύρωση Αυτόματης Μορφοποίησης: Πάρα πολλές αριστερές αγκύλες." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Τέλος Αυτόματης Μορφοποίησης" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Διόρθωση Κωδικοποίησης & Επαναφόρτωση" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Αρχειοθέτηση Σχεδίου" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Αδύνατη η αρχειοθέτηση σχεδίου" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "Η αρχειοθέτηση του σχεδίου ακυρώθηκε γιατί το σχέδιο δεν μπορούσε να αποθηκευθεί σωστά." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Αρχειοθέτηση σχεδίου ως:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Ακύρωση αρχειοθέτησης σχεδίου." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Σφάλμα φόρτωσης κώδικα {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "Το \"{0}\" περιέχει μη αναγνωρίσιμους χαρακτήρες. Αν ο κώδικας είχε δημιουργηθεί με παλαιότερη έκδοση της Processing, μπορεί να χρειαστεί να χρησιμοποιήσετε το Εργαλεία > Διόρθωση Κωδικοποίησης & Επαναφόρτωση για να ανανεώσετε το σχέδιο σας σε κωδικοποίηση UTF-8. Αλλιώς, μπορεί να χρειαστεί να διαγράψετε τους λανθασμένους χαρακτήρες για να απαλαχθείτε από αυτό το μήνυμα." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Το σχέδιο είναι Μόνο-Ανάγνωση" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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χρειαστεί να ξανααποθηκεύσετε το σχέδιο σε άλλη τοποθεσία,\nκαι να ξαναπροσπαθήσετε." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Όνομα νέου αρχείου:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Το σχέδιο δεν έχει Όνομα" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "Τί θα λέγατε να αποθηκεύσετε το σχέδιο πριν προσπαθήσετε\nνα το μετονομάσετε;" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Πρόβλημα μετονομασίας" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Το όνομα δεν μπορεί να ξεκινάει με τελεία." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "Το \".{0}\" δεν είναι έγκυρη κατάληξη." + +#: Sketch.java:378 +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 "Το κυρίως αρχείο δεν μπορεί να χρησιμοποιεί επέκταση.\n(ίσως είναι καιρός για εσάς να μεταβείτε σε ένα πιο\n\"πραγματικό\" περιβάλλον προγραμματισμου)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Τσού!" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Ένα αρχείο με όνομα \"{0}\" υπάρχει ήδη στο \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Δεν μπορείτε να έχετε ένα αρχείο .cpp με όνομα ίδιο με του σχεδίου." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "Δεν μπορείτε να μετονομάσετε το σχέδιο σε \"{0}\"\nεπειδή το σχέδιο έχει ήδη ένα αρχείο .cpp με αυτό το όνομα." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Αδύνατη η Μετονομασία" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Λυπούμαστε, υπάρχει ήδη ένα σχέδιο (ή φάκελος) με όνομα \"{0}\"." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Αδύνατη η μετονομασία του σχεδίου. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Αδύνατη η μετονομασία του \"{0}\" σε \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Αδύνατη η μετονομασία του σχεδίου. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Αδύνατη η μετονομασία του σχεδίου. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "Η createNewFile() επέστρεψε false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε αυτό το σχέδιο;" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Είστε σίγουροι ότι θέλετε να διαγράψετε το \"{0}\";" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Διαγραφή" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Αδύνατον!" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Αδύνατη η διαγραφή του \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: εσωτερικό σφάλμα.. δεν βρέθηκε ο κώδικας" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Το σχέδιο είναι μόνο-ανάγνωσης" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "Κάποια αρχεία είναι \"μόνο-ανάγνωσης\", οπότε θα χρειαστεί\nνα ξανα-αποθηκεύσετε αυτό το σχέδιο σε άλλη τοποθεσία." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "Στε Arduino 1.0, η προεπιλεγμένη επέκταση αρχείων άλλαξε\nαπό .pde to .ino. Τα νέα σχέδια (συμπεριλαμβανομένων αυτών που δημιουργούνται με το \"Αποθήκευση-Ως\" θα χρησιμοποιούν την νέα επέκταση. Η επέκταση υπάρχοντων σχεδίων να αναβαθμίζεται στην αποθήκευση, αλλά μπορείτε να το απενεργοποιήσετε στον διάλογο Επιλογές.\n\nΑποθήκευση σχεδίου και ανανέωση της επέκτασης του;" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Save sketch folder as..." + +#: Sketch.java:865 +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 με αυτό το όνομα." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Πως την είδατε; Borges;" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "Δεν μπορείτε να αποθηκεύσετε το σχέδιο σε έναν φάκελο μέσα στον εαυτό του. Αυτό δε θα είχε τέλος." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Επιλέξτε μια εικόνα ή άλλο αρχείο δεδομένων για να αντιγράψετε στο σχέδιο σας" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Αντικατάσταση της υπάρχουσας έκδοσης του {0};" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Σφάλμα προσθήκης αρχείου" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Αδύνατη η διαγραφή του υπάρχοντος αρχείου \"{0}\"." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Δεν μπορείς να με κοροιδέψεις εμένα!" + +#: Sketch.java:1079 +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 "Το αρχείο έχει ήδη αντιγραφεί στην τοποθεσία από όπου προσπαθείτε να το αντιγράψετε.\nΔεν κάνω τίποτα, που να σκασεις" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Αδύνατη η προσθήκη του \"{0}\" στο σχέδιο." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Ο φάκελος δημιουργίας εξαφανίστηκε ή δεν μπορούσε να γραφτεί" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Αδύνατη η έυρεση της κυρίως κλάσης" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Άπιαστο είδος εξαίρεσης: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Πρόβλημα μετακκίνησης του {0} στο φάκελο δημιουργίας" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Φόρτωση..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Μέγεθος δυαδικού σχεδίου: {0} bytes (από ένα μέγιστο {1} byte)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Αδύνατη η μέτρηση του μεγέθους προγράμματος: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "Πολύ μεγάλο σχέδιο; δείτε το http://www.arduino.cc/en/Guide/Troubleshooting#size για συμβουλές ωστέ να το μειώσετε." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Λείπει το */ από το τέλος ενός /* σχολίου */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Το σχέδιο εξαφανίστηκε" + +#: Sketch.java:1797 +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 "Ο φάκελος του σχεδίου εξαφανίστηκε.\nΘα προσπαθήσουμε να επανα-αποθηκεύσουμε στην ίδια τοποθεσία,\nαλλά τα πάντα εκτός του κώδικα θα χαθούν." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Αδύνατη η επανα-αποθήκευση του σχεδίου" + +#: Sketch.java:1811 +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είναι καιρός να αντιγράψετε τον κώδικα σας σε εναν άλλο επεξεργαστή κειμένου." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "Το όνομα του σχεδίου έχει αλλάκει. Τα ονόματα των σχεδίων μπορούν να\nαποτελούνται από χαρακτήρες ASCII και αριθμούς (αλλά όχι να αρχίζουν με αριθμό).\nΘα πρέπει επίσης να είναι λιγότερο από 64 χαρακτήρες." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Σφάλμα μεταγλωττιστή, παρακαλούμε στείλτε μας τον κώδικα στο {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "η επιλεγμένη σειριακή θύρα {0} δεν υπάρχει ή η πλακέτα σας δεν είναι συνδεδεμένη" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "Η συσκευή δεν ανταποκρίνεται, ελέξτε ότι έχει επιλεχθεί η σωστή σειριακή θύρα, ή ΕΠΑΝΕΚΙΝΗΣΤΕ την πλακέτα σας αμέσως πριν την εξαγωγή" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "Πρόβλημα φόρτωσης στην πλακέτα. Δείτε το http://www.arduino.cc/en/Guide/Troubleshooting#upload για οδηγίες." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "Βρέθηκε λάθος μικροελεγκτής. Επιλέξατε την σωστή πλακέτα από το μενού Εργαλεία > Πλακέτα;" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Δεν έχει επιλεχθεί πλακέτα. Παρακαλούμε επιλέξτε ένα απο το μενού Εργαλεία -> Πλακέτα" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "Το {0} επέστρεψε {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Σφάλμα μεταγλώττισης." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Παρακαλούμε εισάγετε την βιβλιοθήκη SPI από τ μενού Σχέδιο -> Εισαγωγή Βιβλιοθήκης." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "\nΑπό το Arduino 0019, η βιβλιοθήκη Ethernet βασίζεται στην βιβλιοθήκη SPI.\nΦαίνεται πως την χρησιμοποιείτε, ή κάποια άλλη βιβλιοθήκη που βασίζεται στην βιβλιοθήκη SPI.\n\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Η λέξη 'BYTE' δεν υποστηρίζεται πλέον." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "\nΑπό το Arduino 1.0, η λέξη 'BYTE' δεν υποστηρίζεται πλέον.\nΠαρακαλούμε χρησιμοποιήστε την Serial.write() αντί αυτής.\n\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Η κλάση Server έχει μετονομαστεί σε EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "\nΑπό το Arduino 1.0, η κλάση Server στην βιβλιοθήκη Ethernet έχει μετονομαστεί σε EthernetServer.\n\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Η κλάση Client έχει μετονομαστεί σε EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "\nΑπό το Arduino 1.0, η κλάση Client στην βιβλιοθήκη Ethernet έχει μετονομαστεί σε EthernetClient.\n\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Η κλάση Udp έχει μετονομαστεί σε EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "\nΑπό το Arduino 1.0, η κλάση Client στην βιβλιοθήκη Udp έχει μετονομαστεί σε EthernetUdp.\n\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Η Wire.send() έχει μετονομαστεί σε Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "\nΑπό το Arduino 1.0, η συνάρτηση Wire.send() μετονομάστηκε σε Wire.write() για συνοχή με τις υπόλοιπες βιβλιοθήκες.\n\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Η Wire.receive() μετονομάστηκε σε Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "\nΑπό το Arduino 1.0, η συνάρτηση Wire.receive() μετονομάστηκε σε Wire.read() για συνοχή με τις υπόλοιπες βιβλιοθήκες.\n\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Σφάλμα Κονσόλας" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "Προέκυψε κάποιο πρόβλημα κατά το άνοιγμα των αρχείων που\nχρησιμοποιούνται για την αποθήκευση της εξόδου της κονσόλας." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Mή ανεπανόρθωτο σφάλμα κατά τον καθορισμό της εμφάνισης." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Το μήνυμα σφάλματος παρατίθεται, αλλά το Arduino θα πρέπει να είναι εντάξει." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Πρόβλημα κατά τον καθορισμό της Πλατφόρμας" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Ένα άγνωστο σφάλμα συνέβη κατά την φόρτωση\nκώδικα συγκεκριμένης πλατφόρμας στο μηχάνημα σας." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Παρακαλούμε εγκαταστήστε το JDK 1.5 ή μεγαλύτερο." + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "Το Arduino χρειάζεται ολόκληρο το JDK (όχι μόνο ένα JRE)\nγια να τρέξει. Παρακαλούμε εγκαταστήστε το JDK 1.5 ή αργότερο.\nΠερισσότερες πληροφορίες μπορούν να βρεθούν στις πληροφορίες." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Ο φάκελος σχεδίων εξαφανίστηκε" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "Ο φάκελος σχεδίων δεν υπάρχει πλέον.\nΤο Arduino θα γυρίσει στην προεπιλεγμένη τοποθεσία του φακέλου και θα δημιουργήσει έναν νεο φάκελο σχεδίων αν είναι απαραίτητο. Στη συνέχεια, το Arduino θα σταματήσει να μιλάει για τον εαυτό του\nσε τρίτο πρόσωπο." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Ώρα για Διάλειμα" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "Έχετε φτάσει το όριο αυτόματης ονομασίας των νέων σχεδίων ανα\nμέρα. Γιατί δεν κάνετε μια βόλτα καλύτερα;" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Λιακάδα" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Όχι σοβαρά τώρα, καιρός να πάρετε λίγο φρέσκο αέρα." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Άνοιγμα σχεδίου Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr " Είστε σίγουροι πως θέλετε να εξέλθετε;

Το κλείσιμο του τελευταίου σχεδίου θα κλείσει το Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Συνεισέφεραν" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Το Σχέδιο Δεν Υπάρχει" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "Το επιλεγμένο σχέδιο δεν υπάρχει πλέον.\nΜπορεί να χρειαστεί να επανεκκινήσετε το Arduino για να\nανανεώσετε το μενού των σχεδίων σας." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "Το σχέδιο \"{0}\" δεν μπορεί να χρησιμοποιηθεί.\nΤα ονόματα των σχεδίων πρέπει να περιέχουν μόνο βασικά γράμματα και αριθμούς.\n(Μόνο ASCII χωρίς κενά, και δεν μπορούν να ξεκινούν με αριθμό).\nΓια να απαλαχθείτε από αυτό το μήνυμα, αφαιρέστε το σχέδιο από το\n{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Παράβλεψη σχεδίου με λανθασμένο όνομα" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "Η βιβλιοθήκη \"{0}\" δεν μπορεί να χρησιμοποιηθεί.\nΤα ονόματα βιβλιοθηκών μπορούν να περιέχουν μόνο βασικά γράμματα και αρθμούς.\n(μόνο ASCII και χωρίς κενά, και δεν μπορούν να ξεκινούν με αριθμό)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Παράβλεψη βιβλιοθήκης με λανθασμένο όνομα" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Πρόβλημα κατά την λήψη του φακέλου δεδομένων" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Σφάλμα κατά την λήψη του φακέλου δεδομένων του Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Πρόβλημα ρυθμίσεων" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "Το Arduino δεν μπορεί να τρέξει επειδή δεν μπορούσε να\nδημιουργήσει έναν φάκελο για την αποθήκευση των ρυθμίσεων σας." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Ξεχάσατε τα σχέδια σας" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "Το Arduino δεν μπορεί να τρέξει επειδή δεν μπορούσε να\nδημιουργήσει έναν φάκελο για την αποθήκευση των σχεδίων σας." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Επιλέξτε (ή δημιουργήστε) έναν φάκελο για τα σχέδια σας..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Πρόβλημα Ανοίγματος του URI" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "Δεν ήταν δυνατό το άνοιγμα του URL\n{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Πρόβλημα Ανοίγματος Φακέλου" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "Δεν ήταν δυνατό το άνουγμα του φακέλου\n{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "περιβάλλον" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Μήνυμα" + +#: Base.java:1842 +msgid "Warning" +msgstr "Προειδοποίηση" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Αδύνατη η αφαίρεση της παλιάς έκδοσης του {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Αδύνατη η αφαίρεση του {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Αδύνατη η διαγραφή του {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Νέα Καρτέλα" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Μετονομασία" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Προηγούμενη Καρτέλα" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Επόμενη Καρτέλα" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Επαλήθευση" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Άνοιγμα" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Νέο Παράθυρο Επεξεργασίας" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Άνοιγμα σε Νεο Παράθυρο" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Δεν βρέθηκε εκκινητής" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "Άγνωστη πλατφόρμα, δεν βρέθηκε εκκινητής.\nΓια να ενεργοποιήσετε το άνοιγμα URL και φακέλων, προσθέστε μια\nγραμμή \"launcher=/path/to/app\" στο preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "Αδύνατη η ανάγνωση των ρυθμίσεων χρώματος του θέματος.\nΘα χρειαστεί να επανεγκαταστήστετε την Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Περιήγηση" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Καταλανικά" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Απλοποιημένα Κινέζικα" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Δανέζικα" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Ολλανδικά" + +#: Preferences.java:91 +msgid "English" +msgstr "Αγγλικά" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Γαλλικά" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Φιλιπινέζικα" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Γαλικιανά" + +#: Preferences.java:96 +msgid "German" +msgstr "Γερμανικά" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Ελληνικά" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Ουγγρικά" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Ιταλικά" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Ιαπωνικά" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Λετονικά" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Πέρσικα" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Ρουμανικά" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Ισπανικά" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "Αδύνατη η ανάγνωση προεπιλεγμένων ρυθμίσεων.\nΘα χρειαστεί να επανεγκαταστήσετε το Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Αδύνατη η ανάγνωση των επιλογών από το {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Σφάλμα ανάγνωσης επιλογών" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "Σφάλμα ανάγνωσης του αρχείου επιλογών. Παρακαλούμε διαγράψτε\n(ή μεταφέρετε) το {0} και επανεκκινήστε το Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Τοποθεσία Σχεδίων:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Επιλέξτε καινούργια τοποθεσία σχεδίων" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (απαιτεί επανεκκίνηση του Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Μέγεθος γραμματοσειράς επεξεργαστή κειμένου: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Εμφάνιση αναλυτικής εξόδου κατά την: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "μεταγλώττιση " + +#: Preferences.java:375 +msgid "upload" +msgstr "φόρτωση" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Επαλήθευση κώδικα μετά την φόρτωση" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Χρήση εξωτερικού προγράμματος επεξεργασίας" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Έλεγχος ενημερώσεων στην εκκίνηση" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Αναβάθμιση των αρχείων σχεδίων στην νέα κατάληξη κατά την αποθήκευση (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Αυτόματη σύνδεση των αρχείων .ino με το Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Περισσότερες προτιμήσεις μπορούν να επεξεργασθούν απεθείας στο αρχείο" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(επεξεργαστείτε το αρχείο μόνο ενώ το Arduino δεν τρέχει)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "Παράβλεψη λανθασμένου μεγέθος γραμματοσειράς {0}" diff --git a/app/src/processing/app/Resources_el.properties b/app/src/processing/app/Resources_el.properties new file mode 100644 index 000000000..2cd912ed9 --- /dev/null +++ b/app/src/processing/app/Resources_el.properties @@ -0,0 +1,1035 @@ +# Greek translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# , 2012. +!=Project-Id-Version\: Arduino - Greek\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-04-08 20\:30+0000\nLast-Translator\: tzikis \nLanguage-Team\: Greek (http\://www.transifex.net/projects/p/arduino_greek/language/el/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: el\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1)\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u0394\u03b5\u03bd \u03ad\u03c7\u03bf\u03c5\u03bd \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03b5\u03af \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf. + +#: Editor.java:369 Sketch.java:996 +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. + +#: Editor.java:373 +#, java-format +{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. + +#: Editor.java:484 +File=\u0391\u03c1\u03c7\u03b5\u03af\u03bf + +#: Editor.java:486 EditorToolbar.java:41 +New=\u039d\u03ad\u03bf + +#: Editor.java:494 Base.java:903 +Open...=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1... + +#: Editor.java:503 +Sketchbook=\u03a3\u03c7\u03ad\u03b4\u03b9\u03b1 + +#: Editor.java:509 +Examples=\u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1 + +#: Editor.java:514 Editor.java:1977 +Close=\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 + +#: Editor.java:530 +Save\ As...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03a9\u03c2... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u039c\u03b5 \u03a7\u03c1\u03ae\u03c3\u03b7 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae + +#: Editor.java:556 +Page\ Setup=\u03a1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2 + +#: Editor.java:564 +Print=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 + +#: Editor.java:576 Preferences.java:279 +Preferences=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 + +#: Editor.java:586 Base.java:782 +Quit=\u0388\u03be\u03bf\u03b4\u03bf\u03c2 + +#: Editor.java:600 +Sketch=\u03a3\u03c7\u03ad\u03b4\u03b9\u03bf + +#: Editor.java:602 +Verify\ /\ Compile=\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 / \u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7 + +#: Editor.java:629 +Import\ Library...=\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2... + +#: Editor.java:634 +Show\ Sketch\ Folder=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 + +#: Editor.java:643 +Add\ File...=\u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5... + +#: Editor.java:656 +Tools=\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u039f\u03b8\u03cc\u03bd\u03b7 + +#: Editor.java:682 +Board=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 + +#: Editor.java:690 +Serial\ Port=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u0398\u03cd\u03c1\u03b1 + +#: Editor.java:695 +Programmer=\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae\u03c2 + +#: Editor.java:699 +Burn\ Bootloader=\u0393\u03c1\u03ac\u03c8\u03b9\u03bc\u03bf Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=\u03a4\u03bf serialMenu \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc + +#: Editor.java:927 Editor.java:934 +name\ is\ null=\u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc + +#: Editor.java:986 +error\ retrieving\ port\ list=\u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03ac\u03ba\u03c4\u03b7\u03c3\u03b7\u03c2 \u03c4\u03b7\u03c2 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03b8\u03c5\u03c1\u03ce\u03bd + +#: Editor.java:1002 +Help=\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1 + +#: Editor.java:1041 +Getting\ Started=\u039e\u03b5\u03ba\u03af\u03bd\u03b7\u03bc\u03b1 + +#: Editor.java:1049 +Environment=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd + +#: Editor.java:1057 +Troubleshooting=\u0391\u03bd\u03c4\u03b9\u03bc\u03b5\u03c4\u03ce\u03c0\u03b9\u03c3\u03b7 \u03a0\u03c1\u03bf\u03b2\u03bb\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd + +#: Editor.java:1065 +Reference=\u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u03a3\u03c5\u03c7\u03bd\u03ad\u03c2 \u0395\u03c1\u03c9\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2 + +#: Editor.java:1091 +Visit\ Arduino.cc=\u0395\u03c0\u03af\u03c3\u03ba\u03b5\u03c8\u03b7 \u03c3\u03c4\u03bf Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u03a3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03c4\u03bf Arduino + +#: Editor.java:1116 +Edit=\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac + +#: Editor.java:1135 Editor.java:2652 +Cut=\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae + +#: Editor.java:1143 Editor.java:2660 +Copy=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b3\u03b9\u03b1 \u03c4\u03bf Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c9\u03c2 HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7 + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u038c\u03bb\u03c9\u03bd + +#: Editor.java:1194 Editor.java:2702 +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 + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u0391\u03cd\u03be\u03b7\u03c3\u03b7 \u0395\u03c0\u03b9\u03c0\u03ad\u03b4\u03bf\u03c5 \u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u039c\u03b5\u03af\u03c9\u03c3\u03b7 \u0395\u03c0\u03b9\u03c0\u03ad\u03b4\u03bf\u03c5 \u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 + +#: Editor.java:1220 +Find...=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7... + +#: Editor.java:1235 +Find\ Next=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u0395\u03c0\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 + +#: Editor.java:1245 +Find\ Previous=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03ad\u03bd\u03bf\u03c5 + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u03a7\u03c1\u03ae\u03c3\u03b7 \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2 \u03b3\u03b9\u03b1 \u0395\u03cd\u03c1\u03b5\u03c3\u03b7 + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c0\u03c1\u03ce\u03c4\u03b1 \u03bc\u03b9\u03b1 \u03bb\u03ad\u03be\u03b7 \u03b3\u03b9\u03b1 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u0391\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b3\u03b9\u03b1 \u03c4\u03bf "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03b9\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2. + +#: Editor.java:1973 +#, java-format +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}"; + +#: Editor.java:2006 +\ \ 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\u03ad\u03bb\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
\u03c0\u03c1\u03af\u03bd \u03b5\u03be\u03ad\u03bb\u03b8\u03b5\u03c4\u03b5;

\u0391\u03bd \u03b4\u03b5\u03bd \u03c4\u03bf \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5, \u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b1\u03c2 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03bf\u03cd\u03bd. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 + +#: Editor.java:2017 +Don't\ Save=\u038c\u03c7\u03b9 \u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 + +#: Editor.java:2089 +Bad\ file\ selected=\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03b8\u03b7\u03ba\u03b5 \u03a7\u03b1\u03bb\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u0397 Processing \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03c4\u03b1 \u03b4\u03b9\u03ba\u03ac \u03c4\u03b7\u03c2 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1\n\u03ba\u03b1\u03b9 \u03ac\u03bb\u03bb\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 \u03ba\u03b1\u03c4\u03ac\u03bb\u03b7\u03be\u03b7 .ino \u03ae .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +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}" \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03ad\u03c3\u03b1\n\u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{1}".\n\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5, \u03bc\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5, \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1; + +#: Editor.java:2109 +Moving=\u039c\u03b5\u03c4\u03b1\u03c6\u03bf\u03c1\u03ac + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u03a5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{0}". \u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03bf \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c3\u03b5 \u03bc\u03b9\u03b1 \u03c3\u03c9\u03c3\u03c4\u03ae \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u0395\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2. + +#: Editor.java:2270 +Save\ Canceled.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2. + +#: Editor.java:2296 +#, java-format +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 \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1; + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 I/O... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2. + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c0\u03c1\u03af\u03bd \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae; + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0397 \u03b5\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 \u03c0\u03c1\u03ce\u03c4\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae bootloader \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 I/O (\u03b1\u03c5\u03c4\u03cc \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03bb\u03b5\u03c0\u03c4\u03cc)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae bootloader \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 bootloader. + +#: Editor.java:2500 +Printing...=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7... + +#: Editor.java:2517 +Done\ printing.=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 \u03b5\u03c0\u03b9\u03c4\u03c5\u03c7\u03ae\u03c2 + +#: Editor.java:2520 +Error\ while\ printing.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7. + +#: Editor.java:2524 +Printing\ canceled.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7\u03c2. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\u039b\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2\: {0} + +#: Editor.java:2641 +Open\ URL=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u039c\u03b9\u03b1 \u03bd\u03ad\u03b1 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7,\n\u03b8\u03b1 \u03b8\u03ad\u03bb\u03b1\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03c3\u03ba\u03b5\u03c6\u03b8\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c3\u03b5\u03bb\u03af\u03b4\u03b1 \u03ba\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 Arduino; + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u039d\u03b1\u03b9 + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u038c\u03c7\u03b9 + +#: UpdateCheck.java:111 +Update=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7\: + +#: FindReplace.java:81 +Replace\ with\:=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b5\: + +#: FindReplace.java:96 +Ignore\ Case=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03a0\u03b5\u03b6\u03ce\u03bd/\u039a\u03b5\u03c6\u03b1\u03bb\u03b1\u03af\u03c9\u03bd + +#: FindReplace.java:105 +Wrap\ Around=\u0391\u03bd\u03b1\u03b4\u03af\u03c0\u03bb\u03c9\u03c3\u03b7 + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u038c\u03bb\u03c9\u03bd + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 & \u0395\u03cd\u03c1\u03b5\u03c3\u03b7 + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf + +#: FindReplace.java:124 FindReplace.java:127 +Find=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 + +#: SerialMonitor.java:93 +Send=\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae + +#: SerialMonitor.java:110 +Autoscroll=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03bf scroll + +#: SerialMonitor.java:112 +No\ line\ ending=\u03a7\u03c9\u03c1\u03af\u03c2 \u03c4\u03ad\u03bb\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2 + +#: SerialMonitor.java:112 +Newline=\u039d\u03ad\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae + +#: SerialMonitor.java:112 +Carriage\ return=\u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b4\u03c1\u03bf\u03bc\u03ad\u03b1 + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=\u039d\u03ad\u03b1 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03ba\u03b1\u03b9 \u0395\u03c0\u03b9\u03c3\u03c4\u03c1\u03bf\u03c6\u03ae \u03b4\u03c1\u03bf\u03bc\u03ad\u03b1, NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0397 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 "{0}" \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b1\u03b9 \u03ae\u03b4\u03b7. \u0394\u03bf\u03ba\u03b9\u03bc\u03ac\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03c4\u03b5 \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03c0\u03bf\u03c5 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c4\u03b7\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd. + +#: Serial.java:154 +#, java-format +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}". + +#: Serial.java:167 +#, java-format +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; + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u039f buffer readBytesUntil() \u03b5\u03af\u03b1\u03bd\u03b9 \u03c0\u03bf\u03bb\u03cd \u03bc\u03b9\u03ba\u03c1\u03cc\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b1 {0} bytes \u03bc\u03ad\u03c7\u03c1\u03b9 \u03c4\u03bf\u03bd char {1}, \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03bf\u03c5 \u03b1\u03c5\u03c4\u03bf\u03cd + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03b7\u03bd Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u0394\u03b5\u03bd \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \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 + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2\: \u03a0\u03ac\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b4\u03b5\u03be\u03b9\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bd\u03b8\u03ad\u03c3\u03b5\u03b9\u03c2. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2\: \u03a0\u03ac\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ad\u03c2 \u03c0\u03b1\u03c1\u03b5\u03bd\u03b8\u03ad\u03c3\u03b5\u03b9\u03c2. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2\: \u03a0\u03ac\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b4\u03b5\u03be\u03b9\u03ad\u03c2 \u03b1\u03b3\u03ba\u03cd\u03bb\u03b5\u03c2. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2\: \u03a0\u03ac\u03c1\u03b1 \u03c0\u03bf\u03bb\u03bb\u03ad\u03c2 \u03b1\u03c1\u03b9\u03c3\u03c4\u03b5\u03c1\u03ad\u03c2 \u03b1\u03b3\u03ba\u03cd\u03bb\u03b5\u03c2. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u03a4\u03ad\u03bb\u03bf\u03c2 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u0394\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \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 + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \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; + +#: 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=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b4\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2.\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\u03c4\u03b5\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 \u03c4\u03b7\u03bd \u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b1\u03bd\u03b1-\u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03be\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \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.=\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 \u03b3\u03b9\u03b1\u03c4\u03af \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\u03b8\u03b5\u03af \u03c3\u03c9\u03c3\u03c4\u03ac. + +#: tools/Archiver.java:109 +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.=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7\u03c2 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. + +#: 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} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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 \u03bc\u03b7 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03c3\u03b9\u03bc\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2. \u0391\u03bd \u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03b5\u03af\u03c7\u03b5 \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\u03b7\u03c2 Processing, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \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 > \u0394\u03b9\u03cc\u03c1\u03b8\u03c9\u03c3\u03b7 \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 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03bd\u03b5\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b1\u03c2 \u03c3\u03b5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 UTF-8. \u0391\u03bb\u03bb\u03b9\u03ce\u03c2, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03b1\u03bb\u03b1\u03c7\u03b8\u03b5\u03af\u03c4\u03b5 \u03b1\u03c0\u03cc \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u039c\u03cc\u03bd\u03bf-\u0391\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u039a\u03ac\u03c0\u03bf\u03b9\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b7\u03bb\u03c9\u03bc\u03ad\u03bd\u03b1 \u03c9\u03c2 "\u03bc\u03cc\u03bd\u03bf-\u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7", \u03bf\u03c0\u03cc\u03c4\u03b5 \u03b8\u03b1\n\u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03be\u03b1\u03bd\u03b1\u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \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 \u03be\u03b1\u03bd\u03b1\u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5. + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u038c\u03bd\u03bf\u03bc\u03b1 \u03bd\u03ad\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u038c\u03bd\u03bf\u03bc\u03b1 + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u03a4\u03af \u03b8\u03b1 \u03bb\u03ad\u03b3\u03b1\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5\n\u03bd\u03b1 \u03c4\u03bf \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03b5\u03c4\u03b5; + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1\u03c2 + +#: Sketch.java:360 +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\u03b5\u03b9 \u03bc\u03b5 \u03c4\u03b5\u03bb\u03b5\u03af\u03b1. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=\u03a4\u03bf ".{0}" \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03ba\u03b1\u03c4\u03ac\u03bb\u03b7\u03be\u03b7. + +#: Sketch.java:378 +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\u03b5\u03af \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7.\n(\u03af\u03c3\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b2\u03b5\u03af\u03c4\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03b9\u03bf\n"\u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc" \u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03bf\u03c5) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\u03a4\u03c3\u03bf\u03cd\! + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u0388\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{0}" \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03c3\u03c4\u03bf "{1}" + +#: Sketch.java:415 +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 \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 \u03af\u03b4\u03b9\u03bf \u03bc\u03b5 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. + +#: Sketch.java:425 +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 \u03c3\u03b5 "{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 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf .cpp \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1. + +#: Sketch.java:459 +Cannot\ Rename=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u039c\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u039b\u03c5\u03c0\u03bf\u03cd\u03bc\u03b1\u03c3\u03c4\u03b5, \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \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}". + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 "{0}" \u03c3\u03b5 "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=\u0397 createNewFile() \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \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; + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf "{0}"; + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae + +#: Sketch.java:620 +Couldn't\ do\ it=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03bf\u03bd\! + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u03b5\u03c3\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03cc \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1.. \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 + +#: Sketch.java:724 +Sketch\ is\ read-only=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf-\u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u039a\u03ac\u03c0\u03bf\u03b9\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 "\u03bc\u03cc\u03bd\u03bf-\u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2", \u03bf\u03c0\u03cc\u03c4\u03b5 \u03b8\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af\n\u03bd\u03b1 \u03be\u03b1\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 \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1. + +#: Sketch.java:743 +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\u03b5 Arduino 1.0, \u03b7 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03ac\u03bb\u03bb\u03b1\u03be\u03b5\n\u03b1\u03c0\u03cc .pde to .ino. \u03a4\u03b1 \u03bd\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\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \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 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd\u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \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 \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 \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2.\n\n\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b1\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5; + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Save sketch folder as... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{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 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c9\u03c2 "{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 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf .cpp \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=\u03a0\u03c9\u03c2 \u03c4\u03b7\u03bd \u03b5\u03af\u03b4\u03b1\u03c4\u03b5; Borges; + +#: Sketch.java:887 +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\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5. \u0391\u03c5\u03c4\u03cc \u03b4\u03b5 \u03b8\u03b1 \u03b5\u03af\u03c7\u03b5 \u03c4\u03ad\u03bb\u03bf\u03c2. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03b9\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 + +#: Sketch.java:1047 +#, java-format +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 \u03c4\u03bf\u03c5 {0}; + +#: Sketch.java:1069 Sketch.java:1092 +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 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd\u03c4\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 "{0}". + +#: Sketch.java:1078 +You\ can't\ fool\ me=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c2 \u03bd\u03b1 \u03bc\u03b5 \u03ba\u03bf\u03c1\u03bf\u03b9\u03b4\u03ad\u03c8\u03b5\u03b9\u03c2 \u03b5\u03bc\u03ad\u03bd\u03b1\! + +#: Sketch.java:1079 +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 \u03ad\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c3\u03c4\u03b7\u03bd \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03b1\u03c0\u03cc \u03cc\u03c0\u03bf\u03c5 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5.\n\u0394\u03b5\u03bd \u03ba\u03ac\u03bd\u03c9 \u03c4\u03af\u03c0\u03bf\u03c4\u03b1, \u03c0\u03bf\u03c5 \u03bd\u03b1 \u03c3\u03ba\u03b1\u03c3\u03b5\u03b9\u03c2 + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c4\u03bf\u03c5 "{0}" \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2 \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 \u03ae \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03c1\u03b1\u03c6\u03c4\u03b5\u03af + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03ad\u03c5\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03ba\u03c5\u03c1\u03af\u03c9\u03c2 \u03ba\u03bb\u03ac\u03c3\u03b7\u03c2 + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=\u0386\u03c0\u03b9\u03b1\u03c3\u03c4\u03bf \u03b5\u03af\u03b4\u03bf\u03c2 \u03b5\u03be\u03b1\u03af\u03c1\u03b5\u03c3\u03b7\u03c2\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03bc\u03b5\u03c4\u03b1\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 {0} \u03c3\u03c4\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\u03c2 + +#: Sketch.java:1661 +Uploading...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b4\u03c5\u03b1\u03b4\u03b9\u03ba\u03bf\u03cd \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5\: {0} bytes (\u03b1\u03c0\u03cc \u03ad\u03bd\u03b1 \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf {1} byte) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03bc\u03ad\u03c4\u03c1\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2\: {0} + +#: Sketch.java:1694 +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 \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf; \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ad\u03c2 \u03c9\u03c3\u03c4\u03ad \u03bd\u03b1 \u03c4\u03bf \u03bc\u03b5\u03b9\u03ce\u03c3\u03b5\u03c4\u03b5. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u039b\u03b5\u03af\u03c0\u03b5\u03b9 \u03c4\u03bf */ \u03b1\u03c0\u03cc \u03c4\u03bf \u03c4\u03ad\u03bb\u03bf\u03c2 \u03b5\u03bd\u03cc\u03c2 /* \u03c3\u03c7\u03bf\u03bb\u03af\u03bf\u03c5 */ + +#: Sketch.java:1796 +Sketch\ Disappeared=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 + +#: Sketch.java:1797 +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 \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5.\n\u0398\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03bf\u03c5\u03bc\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1-\u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03bf\u03c5\u03bc\u03b5 \u03c3\u03c4\u03b7\u03bd \u03af\u03b4\u03b9\u03b1 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1,\n\u03b1\u03bb\u03bb\u03ac \u03c4\u03b1 \u03c0\u03ac\u03bd\u03c4\u03b1 \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03bf\u03cd\u03bd. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b5\u03c0\u03b1\u03bd\u03b1-\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 + +#: Sketch.java:1811 +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.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1-\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, \u03ba\u03b1\u03b9 \u03af\u03c3\u03c9\u03c2\n\u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c3\u03b1\u03c2 \u03c3\u03b5 \u03b5\u03bd\u03b1\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:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bb\u03bb\u03ac\u03ba\u03b5\u03b9. \u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1\n\u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 ASCII \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2 (\u03b1\u03bb\u03bb\u03ac \u03cc\u03c7\u03b9 \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc).\n\u0398\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03b5\u03c0\u03af\u03c3\u03b7\u03c2 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bb\u03b9\u03b3\u03cc\u03c4\u03b5\u03c1\u03bf \u03b1\u03c0\u03cc 64 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03c4\u03ae, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c3\u03c4\u03b5\u03af\u03bb\u03c4\u03b5 \u03bc\u03b1\u03c2 \u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c3\u03c4\u03bf {0} + +#: debug/Uploader.java:199 +#, java-format +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 + +#: debug/Uploader.java:203 +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\u03bd\u03c4\u03b1\u03c0\u03bf\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9, \u03b5\u03bb\u03ad\u03be\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03c7\u03b8\u03b5\u03af \u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1, \u03ae \u0395\u03a0\u0391\u039d\u0395\u039a\u0399\u039d\u0397\u03a3\u03a4\u0395 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03b1\u03c2 \u03b1\u03bc\u03ad\u03c3\u03c9\u03c2 \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae + +#: debug/Uploader.java:209 +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 \u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u03b3\u03b9\u03b1 \u03bf\u03b4\u03b7\u03b3\u03af\u03b5\u03c2. + +#: debug/Uploader.java:213 +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; + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0394\u03b5\u03bd \u03ad\u03c7\u03b5\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03c7\u03b8\u03b5\u03af \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03bf \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -> \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}=\u03a4\u03bf {0} \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 {1} + +#: debug/Compiler.java:426 +Error\ compiling.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\u03c2. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI \u03b1\u03c0\u03cc \u03c4 \u03bc\u03b5\u03bd\u03bf\u03cd \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf -> \u0395\u03b9\u03c3\u03b1\u03b3\u03c9\u03b3\u03ae \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2. + +#: debug/Compiler.java:466 +\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 \u03b2\u03b1\u03c3\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI.\n\u03a6\u03b1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \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 \u03b2\u03b1\u03c3\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0397 \u03bb\u03ad\u03be\u03b7 'BYTE' \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd. + +#: debug/Compiler.java:472 +\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 'BYTE' \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd Serial.write() \u03b1\u03bd\u03c4\u03af \u03b1\u03c5\u03c4\u03ae\u03c2.\n\n + +#: debug/Compiler.java:477 +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:478 +\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 \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetServer.\n\n + +#: debug/Compiler.java:483 +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. + +#: debug/Compiler.java:484 +\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 \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetClient.\n\n + +#: debug/Compiler.java:489 +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. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ 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 Udp \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetUdp.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=\u0397 Wire.send() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 Wire.write(). + +#: debug/Compiler.java:496 +\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() \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 Wire.write() \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bd\u03bf\u03c7\u03ae \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03b5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=\u0397 Wire.receive() \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 Wire.read(). + +#: debug/Compiler.java:502 +\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() \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03b5 Wire.read() \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bd\u03bf\u03c7\u03ae \u03bc\u03b5 \u03c4\u03b9\u03c2 \u03c5\u03c0\u03cc\u03bb\u03bf\u03b9\u03c0\u03b5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2.\n\n + +#: EditorConsole.java:152 +Console\ Error=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u039a\u03bf\u03bd\u03c3\u03cc\u03bb\u03b1\u03c2 + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03c0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03c0\u03bf\u03c5\n\u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd\u03c4\u03b1\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03c4\u03b7\u03c2 \u03ba\u03bf\u03bd\u03c3\u03cc\u03bb\u03b1\u03c2. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=M\u03ae \u03b1\u03bd\u03b5\u03c0\u03b1\u03bd\u03cc\u03c1\u03b8\u03c9\u03c4\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc \u03c4\u03b7\u03c2 \u03b5\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7\u03c2. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u03a4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c0\u03b1\u03c1\u03b1\u03c4\u03af\u03b8\u03b5\u03c4\u03b1\u03b9, \u03b1\u03bb\u03bb\u03ac \u03c4\u03bf Arduino \u03b8\u03b1 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03c4\u03ac\u03be\u03b5\u03b9. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03bf\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03cc \u03c4\u03b7\u03c2 \u03a0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1\u03c2 + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0388\u03bd\u03b1 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c3\u03c5\u03bd\u03ad\u03b2\u03b7 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\n\u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1\u03c2 \u03c3\u03c4\u03bf \u03bc\u03b7\u03c7\u03ac\u03bd\u03b7\u03bc\u03b1 \u03c3\u03b1\u03c2. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf JDK 1.5 \u03ae \u03bc\u03b5\u03b3\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03bf. + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u03a4\u03bf Arduino \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bf\u03bb\u03cc\u03ba\u03bb\u03b7\u03c1\u03bf \u03c4\u03bf JDK (\u03cc\u03c7\u03b9 \u03bc\u03cc\u03bd\u03bf \u03ad\u03bd\u03b1 JRE)\n\u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03c1\u03ad\u03be\u03b5\u03b9. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf JDK 1.5 \u03ae \u03b1\u03c1\u03b3\u03cc\u03c4\u03b5\u03c1\u03bf.\n\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03bf\u03cd\u03bd \u03c3\u03c4\u03b9\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5 + +#: Base.java:258 +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 \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a4\u03bf Arduino \u03b8\u03b1 \u03b3\u03c5\u03c1\u03af\u03c3\u03b5\u03b9 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b8\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03bd\u03b5\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b1\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03bf. \u03a3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1, \u03c4\u03bf Arduino \u03b8\u03b1 \u03c3\u03c4\u03b1\u03bc\u03b1\u03c4\u03ae\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03bc\u03b9\u03bb\u03ac\u03b5\u03b9 \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5\n\u03c3\u03b5 \u03c4\u03c1\u03af\u03c4\u03bf \u03c0\u03c1\u03cc\u03c3\u03c9\u03c0\u03bf. + +#: Base.java:532 +Time\ for\ a\ Break=\u038f\u03c1\u03b1 \u03b3\u03b9\u03b1 \u0394\u03b9\u03ac\u03bb\u03b5\u03b9\u03bc\u03b1 + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0388\u03c7\u03b5\u03c4\u03b5 \u03c6\u03c4\u03ac\u03c3\u03b5\u03b9 \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 \u03b1\u03bd\u03b1\n\u03bc\u03ad\u03c1\u03b1. \u0393\u03b9\u03b1\u03c4\u03af \u03b4\u03b5\u03bd \u03ba\u03ac\u03bd\u03b5\u03c4\u03b5 \u03bc\u03b9\u03b1 \u03b2\u03cc\u03bb\u03c4\u03b1 \u03ba\u03b1\u03bb\u03cd\u03c4\u03b5\u03c1\u03b1; + +#: Base.java:537 +Sunshine=\u039b\u03b9\u03b1\u03ba\u03ac\u03b4\u03b1 + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u038c\u03c7\u03b9 \u03c3\u03bf\u03b2\u03b1\u03c1\u03ac \u03c4\u03ce\u03c1\u03b1, \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03c4\u03b5 \u03bb\u03af\u03b3\u03bf \u03c6\u03c1\u03ad\u03c3\u03ba\u03bf \u03b1\u03ad\u03c1\u03b1. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03c0\u03c9\u03c2 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03be\u03ad\u03bb\u03b8\u03b5\u03c4\u03b5;

\u03a4\u03bf \u03ba\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf \u03c4\u03bf\u03c5 \u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03b8\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03b9 \u03c4\u03bf Arduino. + +#: Base.java:970 +Contributed=\u03a3\u03c5\u03bd\u03b5\u03b9\u03c3\u03ad\u03c6\u03b5\u03c1\u03b1\u03bd + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u0394\u03b5\u03bd \u03a5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 + +#: Base.java:1096 +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\u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Arduino \u03b3\u03b9\u03b1 \u03bd\u03b1\n\u03b1\u03bd\u03b1\u03bd\u03b5\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c3\u03b1\u03c2. + +#: Base.java:1125 +#, 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}=\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\u03bf\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 \u03b2\u03b1\u03c3\u03b9\u03ba\u03ac \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2.\n(\u039c\u03cc\u03bd\u03bf ASCII \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 \u03b1\u03c0\u03b1\u03bb\u03b1\u03c7\u03b8\u03b5\u03af\u03c4\u03b5 \u03b1\u03c0\u03cc \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} + +#: Base.java:1132 +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 + +#: Base.java:1202 +#, 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\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bc\u03cc\u03bd\u03bf \u03b2\u03b1\u03c3\u03b9\u03ba\u03ac \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b8\u03bc\u03bf\u03cd\u03c2.\n(\u03bc\u03cc\u03bd\u03bf ASCII \u03ba\u03b1\u03b9 \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) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 \u03bc\u03b5 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \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 + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \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. + +#: Base.java:1440 +Settings\ issues=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c4\u03c1\u03ad\u03be\u03b5\u03b9 \u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1\n\u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c3\u03b1\u03c2. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u039e\u03b5\u03c7\u03ac\u03c3\u03b1\u03c4\u03b5 \u03c4\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1 \u03c3\u03b1\u03c2 + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c4\u03c1\u03ad\u03be\u03b5\u03b9 \u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1\n\u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c3\u03b1\u03c2. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 (\u03ae \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03c4\u03b5) \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c4\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1 \u03c3\u03b1\u03c2... + +#: Base.java:1647 +Problem\ Opening\ URL=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u0391\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 URI + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 URL\n{0} + +#: Base.java:1671 +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 + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc \u03c4\u03bf \u03ac\u03bd\u03bf\u03c5\u03b3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u039c\u03ae\u03bd\u03c5\u03bc\u03b1 + +#: Base.java:1842 +Warning=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03b1\u03bb\u03b9\u03ac\u03c2 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03c4\u03bf\u03c5 {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 {0} + +#: EditorHeader.java:292 +New\ Tab=\u039d\u03ad\u03b1 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 + +#: EditorHeader.java:300 +Rename=\u039c\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 + +#: EditorHeader.java:326 +Previous\ Tab=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 + +#: EditorHeader.java:340 +Next\ Tab=\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1 + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 + +#: EditorToolbar.java:41 +Open=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u039d\u03ad\u03bf \u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf \u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c3\u03b5 \u039d\u03b5\u03bf \u03a0\u03b1\u03c1\u03ac\u03b8\u03c5\u03c1\u03bf + +#: Platform.java:167 +No\ launcher\ available=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2 + +#: 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=\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1, \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \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 \u03ba\u03b1\u03b9 \u03c6\u03b1\u03ba\u03ad\u03bb\u03c9\u03bd, \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03bc\u03b9\u03b1\n\u03b3\u03c1\u03b1\u03bc\u03bc\u03ae "launcher\=/path/to/app" \u03c3\u03c4\u03bf preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c7\u03c1\u03ce\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03b8\u03ad\u03bc\u03b1\u03c4\u03bf\u03c2.\n\u0398\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03c4\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd Processing. + +#: Preferences.java:80 +Browse=\u03a0\u03b5\u03c1\u03b9\u03ae\u03b3\u03b7\u03c3\u03b7 + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac + +#: Preferences.java:87 +Chinese\ Simplified=\u0391\u03c0\u03bb\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b1 \u039a\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=\u0394\u03b1\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 + +#: Preferences.java:90 +Dutch=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac + +#: Preferences.java:91 +English=\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac + +#: Preferences.java:94 +Filipino=\u03a6\u03b9\u03bb\u03b9\u03c0\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 + +#: Preferences.java:95 +Galician=\u0393\u03b1\u03bb\u03b9\u03ba\u03b9\u03b1\u03bd\u03ac + +#: Preferences.java:96 +German=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac + +#: Preferences.java:97 +Greek=\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac + +#: Preferences.java:98 +Hungarian=\u039f\u03c5\u03b3\u03b3\u03c1\u03b9\u03ba\u03ac + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac + +#: Preferences.java:101 +Japanese=\u0399\u03b1\u03c0\u03c9\u03bd\u03b9\u03ba\u03ac + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=\u039b\u03b5\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=\u03a0\u03ad\u03c1\u03c3\u03b9\u03ba\u03b1 + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=\u03a1\u03bf\u03c5\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03c9\u03bd \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd.\n\u0398\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=\u0391\u03b4\u03cd\u03bd\u03b1\u03c4\u03b7 \u03b7 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd \u03b1\u03c0\u03cc \u03c4\u03bf {0} + +#: Preferences.java:261 +Error\ reading\ preferences=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03bf\u03cd\u03bc\u03b5 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5\n(\u03ae \u03bc\u03b5\u03c4\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b5) \u03c4\u03bf {0} \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=\u03a4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03a3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ba\u03b1\u03b9\u03bd\u03bf\u03cd\u03c1\u03b3\u03b9\u03b1 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (\u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u039c\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b1\u03bd\u03b1\u03bb\u03c5\u03c4\u03b9\u03ba\u03ae\u03c2 \u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd\: + +#: Preferences.java:373 +compilation\ =\u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7 + +#: Preferences.java:375 +upload=\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 + +#: Preferences.java:384 +Verify\ code\ after\ upload=\u0395\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 + +#: Preferences.java:393 +Use\ external\ editor=\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1\u03c2 + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0391\u03bd\u03b1\u03b2\u03ac\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c3\u03c4\u03b7\u03bd \u03bd\u03ad\u03b1 \u03ba\u03b1\u03c4\u03ac\u03bb\u03b7\u03be\u03b7 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7 \u03c4\u03c9\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd .ino \u03bc\u03b5 \u03c4\u03bf Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03b8\u03bf\u03cd\u03bd \u03b1\u03c0\u03b5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03bc\u03cc\u03bd\u03bf \u03b5\u03bd\u03ce \u03c4\u03bf Arduino \u03b4\u03b5\u03bd \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 {0} diff --git a/app/src/processing/app/Resources_en.po b/app/src/processing/app/Resources_en.po new file mode 100644 index 000000000..dcb865abe --- /dev/null +++ b/app/src/processing/app/Resources_en.po @@ -0,0 +1,1518 @@ +# English translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# David A. Mellis <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: David A. Mellis <>\n" +"Language-Team: English\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "" + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "" + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "" + +#: Editor.java:484 +msgid "File" +msgstr "" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "" + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "" + +#: Editor.java:509 +msgid "Examples" +msgstr "" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "" + +#: Editor.java:530 +msgid "Save As..." +msgstr "" + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "" + +#: Editor.java:564 +msgid "Print" +msgstr "" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "" + +#: Editor.java:600 +msgid "Sketch" +msgstr "" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "" + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "" + +#: Editor.java:643 +msgid "Add File..." +msgstr "" + +#: Editor.java:656 +msgid "Tools" +msgstr "" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "" + +#: Editor.java:682 +msgid "Board" +msgstr "" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "" + +#: Editor.java:695 +msgid "Programmer" +msgstr "" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "" + +#: Editor.java:1002 +msgid "Help" +msgstr "" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "" + +#: Editor.java:1049 +msgid "Environment" +msgstr "" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "" + +#: Editor.java:1065 +msgid "Reference" +msgstr "" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "" + +#: Editor.java:1116 +msgid "Edit" +msgstr "" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "" + +#: Editor.java:1220 +msgid "Find..." +msgstr "" + +#: Editor.java:1235 +msgid "Find Next" +msgstr "" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "" + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" + +#: Editor.java:2109 +msgid "Moving" +msgstr "" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "" + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "" + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "" + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "" + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "" + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "" + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "" + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "" + +#: Editor.java:2500 +msgid "Printing..." +msgstr "" + +#: Editor.java:2517 +msgid "Done printing." +msgstr "" + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "" + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "" + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr "" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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 "" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,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 "" + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "" + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "" + +#: Sketch.java:378 +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 "" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "" + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "" + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "" + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr "" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "" + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "" + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "" + +#: Sketch.java:1079 +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 "" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "" + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "" + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "" + +#: Sketch.java:1797 +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 "" + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "" + +#: Sketch.java:1811 +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 "" + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "" + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "" + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "" + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "" + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "" + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" + +#: Base.java:532 +msgid "Time for a Break" +msgstr "" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" + +#: Base.java:537 +msgid "Sunshine" +msgstr "" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "" + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "" + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" + +#: Base.java:970 +msgid "Contributed" +msgstr "" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "" + +#: Base.java:1202 +#, java-format +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 "" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "" + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "" + +#: Base.java:1794 +msgid "index.html" +msgstr "" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "" + +#: Base.java:1804 +msgid "environment" +msgstr "" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "" + +#: Base.java:1826 +msgid "Message" +msgstr "" + +#: Base.java:1842 +msgid "Warning" +msgstr "" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" + +#: Preferences.java:80 +msgid "Browse" +msgstr "" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr "" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "" + +#: Preferences.java:373 +msgid "compilation " +msgstr "" + +#: Preferences.java:375 +msgid "upload" +msgstr "" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "" diff --git a/app/src/processing/app/Resources_en.properties b/app/src/processing/app/Resources_en.properties new file mode 100644 index 000000000..fde0da4d6 --- /dev/null +++ b/app/src/processing/app/Resources_en.properties @@ -0,0 +1,1034 @@ +# English translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# David A. Mellis <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: David A. Mellis <>\nLanguage-Team\: English\nLanguage\: en\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +!No\ files\ were\ added\ to\ the\ sketch.= + +#: Editor.java:369 Sketch.java:996 +!One\ file\ added\ to\ the\ sketch.= + +#: Editor.java:373 +#, java-format +!{0}\ files\ added\ to\ the\ sketch.= + +#: Editor.java:484 +!File= + +#: Editor.java:486 EditorToolbar.java:41 +!New= + +#: Editor.java:494 Base.java:903 +!Open...= + +#: Editor.java:503 +!Sketchbook= + +#: Editor.java:509 +!Examples= + +#: Editor.java:514 Editor.java:1977 +!Close= + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +!Save= + +#: Editor.java:530 +!Save\ As...= + +#: Editor.java:538 EditorToolbar.java:41 +!Upload= + +#: Editor.java:546 EditorToolbar.java:46 +!Upload\ Using\ Programmer= + +#: Editor.java:556 +!Page\ Setup= + +#: Editor.java:564 +!Print= + +#: Editor.java:576 Preferences.java:279 +!Preferences= + +#: Editor.java:586 Base.java:782 +!Quit= + +#: Editor.java:600 +!Sketch= + +#: Editor.java:602 +!Verify\ /\ Compile= + +#: Editor.java:629 +!Import\ Library...= + +#: Editor.java:634 +!Show\ Sketch\ Folder= + +#: Editor.java:643 +!Add\ File...= + +#: Editor.java:656 +!Tools= + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +!Serial\ Monitor= + +#: Editor.java:682 +!Board= + +#: Editor.java:690 +!Serial\ Port= + +#: Editor.java:695 +!Programmer= + +#: Editor.java:699 +!Burn\ Bootloader= + +#: Editor.java:923 +!serialMenu\ is\ null= + +#: Editor.java:927 Editor.java:934 +!name\ is\ null= + +#: Editor.java:986 +!error\ retrieving\ port\ list= + +#: Editor.java:1002 +!Help= + +#: Editor.java:1041 +!Getting\ Started= + +#: Editor.java:1049 +!Environment= + +#: Editor.java:1057 +!Troubleshooting= + +#: Editor.java:1065 +!Reference= + +#: Editor.java:1073 Editor.java:2728 +!Find\ in\ Reference= + +#: Editor.java:1083 +!Frequently\ Asked\ Questions= + +#: Editor.java:1091 +!Visit\ Arduino.cc= + +#: Editor.java:1094 +!http\://arduino.cc/= + +#: Editor.java:1102 +!About\ Arduino= + +#: Editor.java:1116 +!Edit= + +#: Editor.java:1119 Editor.java:1341 +!Undo= + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +!Redo= + +#: Editor.java:1135 Editor.java:2652 +!Cut= + +#: Editor.java:1143 Editor.java:2660 +!Copy= + +#: Editor.java:1151 Editor.java:2668 +!Copy\ for\ Forum= + +#: Editor.java:1163 Editor.java:2676 +!Copy\ as\ HTML= + +#: Editor.java:1175 Editor.java:2684 +!Paste= + +#: Editor.java:1184 Editor.java:2692 +!Select\ All= + +#: Editor.java:1194 Editor.java:2702 +!Comment/Uncomment= + +#: Editor.java:1202 Editor.java:2710 +!Increase\ Indent= + +#: Editor.java:1210 Editor.java:2718 +!Decrease\ Indent= + +#: Editor.java:1220 +!Find...= + +#: Editor.java:1235 +!Find\ Next= + +#: Editor.java:1245 +!Find\ Previous= + +#: Editor.java:1255 +!Use\ Selection\ For\ Find= + +#: Editor.java:1816 +!First\ select\ a\ word\ to\ find\ in\ the\ reference.= + +#: Editor.java:1823 +#, java-format +!No\ reference\ available\ for\ "{0}"= + +#: Editor.java:1826 +#, java-format +!{0}.html= + +#: Editor.java:1843 Sketch.java:1647 +!Compiling\ sketch...= + +#: Editor.java:1864 Editor.java:1881 +!Done\ compiling.= + +#: Editor.java:1973 +#, java-format +!Save\ changes\ to\ "{0}"?\ \ = + +#: Editor.java:2006 +!\ \ 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.= + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +!Cancel= + +#: Editor.java:2017 +!Don't\ Save= + +#: Editor.java:2089 +!Bad\ file\ selected= + +#: Editor.java:2090 +!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +!OK= + +#: Editor.java:2100 +#, java-format +!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= + +#: Editor.java:2109 +!Moving= + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +!Error= + +#: Editor.java:2122 +#, java-format +!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= + +#: Editor.java:2132 +!Could\ not\ create\ the\ sketch\ folder.= + +#: Editor.java:2141 +!Could\ not\ copy\ to\ a\ proper\ location.= + +#: Editor.java:2159 +!Could\ not\ create\ the\ sketch.= + +#: Editor.java:2166 +#, java-format +!{0}\ |\ Arduino\ {1}= + +#: Editor.java:2223 Editor.java:2261 +!Saving...= + +#: Editor.java:2228 Editor.java:2264 +!Done\ Saving.= + +#: Editor.java:2270 +!Save\ Canceled.= + +#: Editor.java:2296 +#, java-format +!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= + +#: Editor.java:2331 +!Uploading\ to\ I/O\ Board...= + +#: Editor.java:2348 Editor.java:2384 +!Done\ uploading.= + +#: Editor.java:2356 Editor.java:2392 +!Upload\ canceled.= + +#: Editor.java:2420 +!Save\ changes\ before\ export?= + +#: Editor.java:2435 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + +#: Editor.java:2457 +!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= + +#: Editor.java:2463 +!Done\ burning\ bootloader.= + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +!Error\ while\ burning\ bootloader.= + +#: Editor.java:2500 +!Printing...= + +#: Editor.java:2517 +!Done\ printing.= + +#: Editor.java:2520 +!Error\ while\ printing.= + +#: Editor.java:2524 +!Printing\ canceled.= + +#: Editor.java:2572 +#, java-format +!Bad\ error\ line\:\ {0}= + +#: Editor.java:2641 +!Open\ URL= + +#: UpdateCheck.java:53 +!http\://www.arduino.cc/latest.txt= + +#: UpdateCheck.java:103 +!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= + +#: UpdateCheck.java:108 Preferences.java:76 +!Yes= + +#: UpdateCheck.java:108 Preferences.java:77 +!No= + +#: UpdateCheck.java:111 +!Update= + +#: UpdateCheck.java:118 +!http\://www.arduino.cc/en/Main/Software= + +#: FindReplace.java:80 +!Find\:= + +#: FindReplace.java:81 +!Replace\ with\:= + +#: FindReplace.java:96 +!Ignore\ Case= + +#: FindReplace.java:105 +!Wrap\ Around= + +#: FindReplace.java:120 FindReplace.java:131 +!Replace\ All= + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +!Replace= + +#: FindReplace.java:122 FindReplace.java:129 +!Replace\ &\ Find= + +#: FindReplace.java:123 FindReplace.java:128 +!Previous= + +#: FindReplace.java:124 FindReplace.java:127 +!Find= + +#: SerialMonitor.java:93 +!Send= + +#: SerialMonitor.java:110 +!Autoscroll= + +#: SerialMonitor.java:112 +!No\ line\ ending= + +#: SerialMonitor.java:112 +!Newline= + +#: SerialMonitor.java:112 +!Carriage\ return= + +#: SerialMonitor.java:112 +!Both\ NL\ &\ CR= + +#: SerialMonitor.java:130 SerialMonitor.java:133 +!\ baud= + +#: Serial.java:147 +#, java-format +!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= + +#: Serial.java:154 +#, java-format +!Error\ opening\ serial\ port\ ''{0}''.= + +#: Serial.java:167 +#, java-format +!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= + +#: Serial.java:424 +#, java-format +!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= + +#: Serial.java:567 +#, java-format +!Error\ inside\ Serial.{0}()= + +#: tools/AutoFormat.java:91 +!Auto\ Format= + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +!No\ changes\ necessary\ for\ Auto\ Format.= + +#: tools/AutoFormat.java:919 +!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= + +#: tools/AutoFormat.java:922 +!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= + +#: tools/AutoFormat.java:928 +!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= + +#: tools/AutoFormat.java:931 +!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= + +#: tools/AutoFormat.java:941 +!Auto\ Format\ finished.= + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +!Fix\ Encoding\ &\ Reload= + +#: tools/FixEncoding.java:57 +!Discard\ all\ changes\ and\ reload\ sketch?= + +#: 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= + +#: tools/Archiver.java:48 +!Archive\ Sketch= + +#: tools/Archiver.java:59 +!yyMMdd= + +#: tools/Archiver.java:74 +!Couldn't\ archive\ sketch= + +#: tools/Archiver.java:75 +!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= + +#: tools/Archiver.java:109 +!Archive\ sketch\ as\:= + +#: tools/Archiver.java:139 +!Archive\ sketch\ canceled.= + +#: SketchCode.java:83 +#, java-format +!Error\ while\ loading\ code\ {0}= + +#: SketchCode.java:258 +#, java-format +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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.= + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +!Sketch\ is\ Read-Only= + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= + +#: Sketch.java:286 +!Name\ for\ new\ file\:= + +#: Sketch.java:298 +!Sketch\ is\ Untitled= + +#: Sketch.java:299 +!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +!Problem\ with\ rename= + +#: Sketch.java:360 +!The\ name\ cannot\ start\ with\ a\ period.= + +#: Sketch.java:368 +#, java-format +!".{0}"\ is\ not\ a\ valid\ extension.= + +#: Sketch.java:378 +!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +!Nope= + +#: Sketch.java:402 +#, java-format +!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= + +#: Sketch.java:415 +!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= + +#: Sketch.java:425 +!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= + +#: Sketch.java:459 +!Cannot\ Rename= + +#: Sketch.java:461 +#, java-format +!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= + +#: Sketch.java:479 +!Could\ not\ rename\ the\ sketch.\ (0)= + +#: Sketch.java:487 Sketch.java:532 +#, java-format +!Could\ not\ rename\ "{0}"\ to\ "{1}"= + +#: Sketch.java:500 +!Could\ not\ rename\ the\ sketch.\ (1)= + +#: Sketch.java:507 +!Could\ not\ rename\ the\ sketch.\ (2)= + +#: Sketch.java:544 +!createNewFile()\ returned\ false= + +#: Sketch.java:591 +!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= + +#: Sketch.java:592 +#, java-format +!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= + +#: Sketch.java:595 EditorHeader.java:314 +!Delete= + +#: Sketch.java:620 +!Couldn't\ do\ it= + +#: Sketch.java:621 +#, java-format +!Could\ not\ delete\ "{0}".= + +#: Sketch.java:651 +!removeCode\:\ internal\ error..\ could\ not\ find\ code= + +#: Sketch.java:724 +!Sketch\ is\ read-only= + +#: Sketch.java:725 +!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= + +#: Sketch.java:743 +!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?= + +#: Sketch.java:750 +!.pde\ ->\ .ino= + +#: Sketch.java:829 +!Save\ sketch\ folder\ as...= + +#: Sketch.java:865 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= + +#: Sketch.java:886 +!How\ very\ Borges\ of\ you= + +#: Sketch.java:887 +!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= + +#: Sketch.java:979 +!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= + +#: Sketch.java:1047 +#, java-format +!Replace\ the\ existing\ version\ of\ {0}?= + +#: Sketch.java:1069 Sketch.java:1092 +!Error\ adding\ file= + +#: Sketch.java:1070 +#, java-format +!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= + +#: Sketch.java:1078 +!You\ can't\ fool\ me= + +#: Sketch.java:1079 +!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= + +#: Sketch.java:1093 +#, java-format +!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= + +#: Sketch.java:1393 Sketch.java:1424 +!Build\ folder\ disappeared\ or\ could\ not\ be\ written= + +#: Sketch.java:1408 +!Could\ not\ find\ main\ class= + +#: Sketch.java:1433 +#, java-format +!Uncaught\ exception\ type\:\ {0}= + +#: Sketch.java:1465 +#, java-format +!Problem\ moving\ {0}\ to\ the\ build\ folder= + +#: Sketch.java:1661 +!Uploading...= + +#: Sketch.java:1684 +#, java-format +!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)= + +#: Sketch.java:1689 +!Couldn't\ determine\ program\ size\:\ {0}= + +#: Sketch.java:1694 +!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= + +#: Sketch.java:1754 +!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= + +#: Sketch.java:1796 +!Sketch\ Disappeared= + +#: Sketch.java:1797 +!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= + +#: Sketch.java:1810 +!Could\ not\ re-save\ sketch= + +#: Sketch.java:1811 +!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.= + +#: Sketch.java:2060 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= + +#: debug/Uploader.java:52 +!https\://developer.berlios.de/bugs/?group_id\=3590= + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= + +#: debug/Uploader.java:199 +#, java-format +!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= + +#: debug/Uploader.java:203 +!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= + +#: debug/Uploader.java:209 +!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= + +#: debug/Uploader.java:213 +!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= + +#: debug/Compiler.java:41 +!http\://code.google.com/p/arduino/issues/list= + +#: debug/Compiler.java:79 +!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= + +#: debug/Compiler.java:422 +#, java-format +!{0}\ returned\ {1}= + +#: debug/Compiler.java:426 +!Error\ compiling.= + +#: debug/Compiler.java:465 +!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + +#: debug/Compiler.java:466 +!\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= + +#: debug/Compiler.java:471 +!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= + +#: debug/Compiler.java:472 +!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= + +#: debug/Compiler.java:477 +!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= + +#: debug/Compiler.java:478 +!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= + +#: debug/Compiler.java:483 +!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= + +#: debug/Compiler.java:484 +!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= + +#: debug/Compiler.java:489 +!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= + +#: debug/Compiler.java:490 +!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= + +#: debug/Compiler.java:495 +!Wire.send()\ has\ been\ renamed\ Wire.write().= + +#: debug/Compiler.java:496 +!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= + +#: debug/Compiler.java:501 +!Wire.receive()\ has\ been\ renamed\ Wire.read().= + +#: debug/Compiler.java:502 +!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= + +#: EditorConsole.java:152 +!Console\ Error= + +#: EditorConsole.java:153 +!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= + +#: Base.java:184 +!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.= + +#: Base.java:185 +!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.= + +#: Base.java:220 +!Problem\ Setting\ the\ Platform= + +#: Base.java:221 +!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= + +#: Base.java:232 +!Please\ install\ JDK\ 1.5\ or\ later= + +#: Base.java:233 +!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.= + +#: Base.java:257 +!Sketchbook\ folder\ disappeared= + +#: Base.java:258 +!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.= + +#: Base.java:532 +!Time\ for\ a\ Break= + +#: Base.java:533 +!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= + +#: Base.java:537 +!Sunshine= + +#: Base.java:538 +!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= + +#: Base.java:633 +!Open\ an\ Arduino\ sketch...= + +#: Base.java:772 +!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= + +#: Base.java:970 +!Contributed= + +#: Base.java:1095 +!Sketch\ Does\ Not\ Exist= + +#: Base.java:1096 +!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= + +#: Base.java:1125 +#, 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}= + +#: Base.java:1132 +!Ignoring\ sketch\ with\ bad\ name= + +#: Base.java:1202 +#, 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)= + +#: Base.java:1207 +!Ignoring\ bad\ library\ name= + +#: Base.java:1432 +!Problem\ getting\ data\ folder= + +#: Base.java:1433 +!Error\ getting\ the\ Arduino\ data\ folder.= + +#: Base.java:1440 +!Settings\ issues= + +#: Base.java:1441 +!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= + +#: Base.java:1602 +!You\ forgot\ your\ sketchbook= + +#: Base.java:1603 +!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= + +#: Base.java:1623 +!Select\ (or\ create\ new)\ folder\ for\ sketches...= + +#: Base.java:1647 +!Problem\ Opening\ URL= + +#: Base.java:1648 +#, java-format +!Could\ not\ open\ the\ URL\n{0}= + +#: Base.java:1671 +!Problem\ Opening\ Folder= + +#: Base.java:1672 +#, java-format +!Could\ not\ open\ the\ folder\n{0}= + +#: Base.java:1785 +!Guide_MacOSX.html= + +#: Base.java:1787 +!Guide_Windows.html= + +#: Base.java:1789 +!http\://www.arduino.cc/playground/Learning/Linux= + +#: Base.java:1794 +!index.html= + +#: Base.java:1799 +!Guide_Environment.html= + +#: Base.java:1804 +!environment= + +#: Base.java:1804 +!platforms.html= + +#: Base.java:1809 +!Guide_Troubleshooting.html= + +#: Base.java:1814 +!FAQ.html= + +#: Base.java:1826 +!Message= + +#: Base.java:1842 +!Warning= + +#: Base.java:2196 +#, java-format +!Could\ not\ remove\ old\ version\ of\ {0}= + +#: Base.java:2206 +#, java-format +!Could\ not\ replace\ {0}= + +#: Base.java:2247 Base.java:2270 +#, java-format +!Could\ not\ delete\ {0}= + +#: EditorHeader.java:292 +!New\ Tab= + +#: EditorHeader.java:300 +!Rename= + +#: EditorHeader.java:326 +!Previous\ Tab= + +#: EditorHeader.java:340 +!Next\ Tab= + +#: EditorToolbar.java:41 EditorToolbar.java:46 +!Verify= + +#: EditorToolbar.java:41 +!Open= + +#: EditorToolbar.java:46 +!New\ Editor\ Window= + +#: EditorToolbar.java:46 +!Open\ in\ Another\ Window= + +#: Platform.java:167 +!No\ launcher\ available= + +#: 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= + +#: Theme.java:52 +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.= + +#: Preferences.java:80 +!Browse= + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= + +#: Preferences.java:242 +#, java-format +!Could\ not\ read\ preferences\ from\ {0}= + +#: Preferences.java:261 +!Error\ reading\ preferences= + +#: Preferences.java:263 +#, java-format +!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= + +#: Preferences.java:299 +!Sketchbook\ location\:= + +#: Preferences.java:314 +!Select\ new\ sketchbook\ location= + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +!\ \ (requires\ restart\ of\ Arduino)= + +#: Preferences.java:354 +!Editor\ font\ size\:\ = + +#: Preferences.java:371 +!Show\ verbose\ output\ during\:\ = + +#: Preferences.java:373 +!compilation\ = + +#: Preferences.java:375 +!upload= + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +!Use\ external\ editor= + +#: Preferences.java:403 +!Check\ for\ updates\ on\ startup= + +#: Preferences.java:412 +!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= + +#: Preferences.java:423 +!Automatically\ associate\ .ino\ files\ with\ Arduino= + +#: Preferences.java:433 +!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= + +#: Preferences.java:462 +!(edit\ only\ when\ Arduino\ is\ not\ running)= + +#: Preferences.java:609 +#, java-format +!ignoring\ invalid\ font\ size\ {0}= diff --git a/app/src/processing/app/Resources_es.po b/app/src/processing/app/Resources_es.po new file mode 100644 index 000000000..30d3eb073 --- /dev/null +++ b/app/src/processing/app/Resources_es.po @@ -0,0 +1,1674 @@ +# Spanish translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Juan Gomez <3f615b5b28bd435629faa36ded272d837cda2805>, 2012. +# David Cuartielles , 2012 +# Jesús Sánchez , 2012. +# Eduardo Sacristan <3f615b5b28bd435629faa36ded272d837cda2805>, 2012. +# Jose Manuel Escuder , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 18:10 +0600\n" +"PO-Revision-Date: 2012-04-08 23:20 +0600\n" +"Last-Translator: Juan Gomez <3f615b5b28bd435629faa36ded272d837cda2805>\n" +"Language-Team: Spanish\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Ningún archivo fue agregado al Sketch." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Se ha agregado un archivo al Sketch." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} archivos agregados al Sketch." + +#: Editor.java:484 +msgid "File" +msgstr "Archivo" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nuevo" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Abrir..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "" + +#: Editor.java:509 +msgid "Examples" +msgstr "Ejemplos" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Cerrar" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Guardar" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Guardar como..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Cargar" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Cargar usando Programador" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Configuración de Página" + +#: Editor.java:564 +msgid "Print" +msgstr "Imprimir" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferencias" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Salir" + +#: Editor.java:600 +msgid "Sketch" +msgstr "" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verificar / Compilar" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importar Librería..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Mostrar la Carpeta de Sketch" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Agregar Archivo..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Herramientas" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitor Serial" + +#: Editor.java:682 +msgid "Board" +msgstr "Tarjeta" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Puerto Serial" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programador" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Grabar Secuencia de Inicio" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu es nulo" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "el nombre es nulo" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "error leyendo la lista de puertos" + +#: Editor.java:1002 +msgid "Help" +msgstr "Ayuda" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Empezando" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Entorno" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Solución de problemas" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referencia" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Buscar en la Referencia" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Preguntas frecuentes" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Visitar Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Acerca de Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Editar" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Deshacer" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Rehacer" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Cortar" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Copiar" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copiar para el Foro" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Copiar como HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Pegar" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Seleccionar Todo" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Comentar/Descomentar " + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Incrementar Margen" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Reducir Margen" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Buscar..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Buscar Siguiente" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Buscar Anterior" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Utilizar Selección para Buscar" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Primero selecciona una palabra para buscar en la referencia." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "No hay referencias disponibles para \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Compilando el Sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compilación terminada" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "¿Guardar los cambios en \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" ¿Deseas " +"guardar los cambios a este Sketch
antes de cerrar?

Si no los " +"guardas, los cambios se perderán." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Cancelar" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "No Guardes" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Archivo incorrecto seleccionado" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing solo puede abrir sus propios sketches\n" +"y otros archivos terminados en .ino o .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "Aceptar" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"El archivo \"{0}\" necesita estar dentro\n" +"de la carpeta de un sketch llamada \"{1}\".\n" +"¿Crear esta carpeta, mover este archivo y continuar?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Moviendo" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Error" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Ya existe una carpeta llamada \"{0}\". No se pudo abrir el Sketch." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "No se ha podido crear la carpeta del sketch." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "No se ha podido copiar a una ubicación apropiada." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "No se ha podido crear el sketch." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Guardando..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Guardado Terminado." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Guardado Cancelado." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"El puerto serial {0} no fue encontrado\n" +"¿Volver a intentar la carga con otro puerto serial?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Cargando a la Tarjeta I/O..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Carga terminada." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Carga cancelada." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "¿Guardar los cambios antes de exportar?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exportación cancelada, primero debes guardados los cambios." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Grabando secuencia de inicio en la Tarjeta I/O (Esto puede tardar un \n" +"minuto)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Finalizada la grabación del secuencia de inicio." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Error al grabar la secuencia de inicio." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Imprimiendo..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Impresión terminada." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Error al imprimir." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Impresión cancelada." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Línea de error incorrecta: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Abrir URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Una nueva versión de Arduino Está disponible,\n" +"¿Deseas visitar la página de descargas de Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Sí" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Actualizar" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Buscar:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Reemplazar con:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignorar mayúsculas y minúsculas" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Envolver" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Reemplazar todo" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Reemplazar" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Reemplazar y Buscar" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Anterior" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Buscar" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Enviar" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Desplazamiento automático" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "No hay fin de línea" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Nueva Línea" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Retorno de Carro" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Ambos NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baudio" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"El puerto serial ''{0}'' ya Está en uso. Intenta cerrar cualquier otro " +"programa que pueda estar usándolo." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Error al abrir el puerto serial ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Puerto serial ''{0}'' no encontrado. ¿Estás seguro que seleccionaste el " +"correcto del menú Herramientas > Puerto Serial?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"El buffer de bytes readBytesUntil() es demasiado pequeño para los {0} bytes " +"hasta e incluyendo el char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Error dentro de Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Formato Automático" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "No hay cambios necesarios para el Formato Automático." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Formato automático cancelado: demasiados paréntesis derechos." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Formato automático cancelado: demasiados paréntesis izquierdos." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Formato automático cancelado: demasiados corchetes derechos." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Formato automático cancelado: demasiados corchetes izquierdos." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Formato automático terminado." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Reparar Codificación y Recargar" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "¿Descartar todos los cambios y recargar el Sketch?" + +#: 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 "" +"Ha ocurrido un error mientras se intentaba arreglar la codificación del\n" +"archivo. No intentes guardar este Sketch porque puede sobreescribir la\n" +"versión anterior. Utiliza Abrir para reabrir el Sketch e intenta de nuevo.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Archivar el Sketch" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "No se ha podido archivar el Sketch" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"El archivado del Sketch ha sido cancelado porque\n" +"el Sketch no se pudo guardar debidamente." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Archivar el Sketch como:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Archivado de el Sketch ha sido cancelado." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Error mientras se cargaba el código {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" contiene caracteres incorrectos. Si este código fue creado con " +"una versión anterior de Processing, puede que necesites usar Herramientas ->" +" Corregir Codificación y Recargar para actualizar el Sketch a codificación " +"UTF-8. Si no, es posible que necesites borrar los caracteres incorrectos " +"para deshacerte de esta advertencia." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "El Skecth es de sólo lectura" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Algunos archivos están marcados como \"sólo lectura\",\n" +"así que necesitarás volver a guardar este Sketch en otra ubicación, e \n" +"intentarlo de nuevo." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nombre para el nuevo archivo:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "El Sketch no tiene nombre" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"¿Qué tal si primero guardas el Sketch \n" +"antes de intentar renombrarlo?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problema al renombrar" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "El nombre no puede empezar con un punto." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" no es una extensión válida." + +#: Sketch.java:378 +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 "" +"El archivo principal no puede usar una extensión.\n" +"(Puede qué ya sea hora de qué te gradúes a un\n" +"entorno de desarrollo \"real\")" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Negativo" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Ya existe un archivo llamado \"{0}\" en \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "No puedes tener un archivo .cpp con el mismo nombre que el Sketch." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"No puedes renombrar el Sketch a \"{0}\"\n" +"porque el Sketch ya tiene un archivo .cpp con ese nombre" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "No se puede renombrar" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Lo siento, ya existe un Sketch (o carpeta) llamado \"{0}\"." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "No se pudo renombrar el Sketch. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "No se pudo renombrar \"{0}\" a \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "No se pudo renombrar el Sketch. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "No se pude renombrar el Sketch. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() retornó falso" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "¿Estás seguro que deseas borrar este Sketch?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "¿Estás seguro que deseas borrar \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Borrar" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "No lo pude hacer" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "No se pudo borrar \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: error interno... No se pudo encontrar el código" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "El Skecth es de sólo lectura" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Algunos archivos están marcados como \"sólo lectura\",\n" +"así que necesitarás volver a guardar este Sketch en otra ubicación." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"En Arduino 1.0, la extensión por defecto ha sido cambiada\n" +"de .pde a .ino. Los nuevos Sketches (incluyendo los creados con\n" +"\"Guardar como\" usarán la nueva extensión. La extensión\n" +"de los Sketches ya existentes será actualizada al guardar, pero esto\n" +"puede ser deshabilitado en el diálogo de Preferencias\n" +"\n" +"¿Guardar el sketch y actualizar la extensión?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr "" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Guardar la carpeta de Sketch como..." + +#: Sketch.java:865 +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 Sketch como \"{0}\"\n" +"porque el Sketch ya tiene un archivo .cpp con ese nombre." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Qué tan Borges de tu parte" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"No puedes guardar el Sketch en una carpeta\n" +"dentro de sí mismo. Esto podría seguir por siempre." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Selecciona una imagen o algún otro archivo de datos para copiar al " +"Sketch" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "¿Reemplazar la versión existente de {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Error agregando archivo" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "No se pudo borrar el archivo existente ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "No me puedes engañar" + +#: Sketch.java:1079 +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 "" +"Este archivo ya ha sido copiado al lugar\n" +"desde el que está intentando agregarlo.\n" +"Simplemente voy a ignorarte." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "No se pudo agregar ''{0}'' al Sketch." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "La carpeta de construcción despareció o no puede ser escrita" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "No se pudo encontrar la clase main" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Excepción no atrapada de tipo: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problema moviendo {0} a la carpeta de construcción" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Cargando..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Tamaño binario del Sketch: {0} bytes (de un máximo de {1} bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "No se ha podido determinar el tamaño del programa: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Sketch demasiado grande; ver http://www.arduino.cc/en/Guide/" +"Troubleshooting#size para consejos de como reducirlo." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Falta el */ al final de un /* comentario */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "El Sketch ha desaparecido" + +#: Sketch.java:1797 +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 "" +"La carpeta Sketch ha desaparecido.\n" +" Intentará volver a guardarla en el mismo lugar,\n" +"pero cualquier cosa aparte del código se perderá." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "No se pudo volver a guardar el Sketch" + +#: Sketch.java:1811 +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 "" +"No se pudo volver a guardar el Sketch adecuadamente. Puede que estés en \n" +"problemas en este punto, y tal vez sea hora de copiar y pegar tu código en \n" +"otro editor." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"El nombre del Sketch tuvo que ser modificado. Los nombres de Sketch\n" +"sólo pueden consistir de caracteres ASCII y números (pero no pueden\n" +"empezar con un número). También deben ser de tamaño menor a 64 caracteres.\n" + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Error de compilación, por favor envía este código a {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"El puerto serial seleccionado {0} no existe o tu tarjeta no está conectada" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"El dispositivo no responde, revise que el puerto serial correcto esté " +"seleccionado o REINICIE la tarjeta antes de exportar" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Problema al subir código a la tarjeta. Vea http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload para sugerencias." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Se ha encontrado un Microcontrolador equivocado. ¿Seleccionaste la tarjeta \n" +"correcta del menú Herramientas > Tarjeta?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "No hay tarjeta seleccionada; por favor, escoje una tarjeta del menú\n" +"Herramientas > Tarjeta" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} retornó {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Error compilando." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Por favor importe la liberaría SPI utilizando el menú\n" +"Sketch > Importar Librería." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"Desde Arduino 0019, la librería de Ethernet depende de la librería SPI.\n" +"Parece que estás usándola o alguna otra librería que depende de la librería" +"SPI" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "La palabra clave 'BYTE' ya no está soportada." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, la palabra clave 'BYTE' ya no está soportada en \n" +"Serial.print(var, BYTE). Por favor utiliza Serial.write() en su lugar.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "La clase Server ha sido renombrada como EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, la clase Server en la librería Ethernet ha sido\n" +"renombrada como EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "La clase Client ha sido renombrada EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, la clase Client en la librería Ethernet ha sido\n" +"renombrada como EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "La clase Udp ha sido renombrada EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, la clase Udp en la librería Ethernet ha sido\n" +"renombrada como EthernetUdp.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() ha sido renombrado Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, la función Wire.send() ha sido renombrada Wire.write() " +"para mantener la consistencia con otras librerías.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() ha sido renombrado Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, la función Wire.receive() ha sido renombrada Wire.read() " +"para mantener la consistencia con otras librerías.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Error de consola" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Ha ocurrido un problema mientras se trataba de abrir el\n" +"archivo utilizado para guardar el resultado de la consola." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Error no fatal mientras se configuraba la Apariencia." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "El que sigue es el mensaje de error, pero Arduino debería continuar\n" +"funcionando bien." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problema configurando la Plataforma" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Un error desconocido ha ocurrido mientras\n" +"se cargaba el código especifico para tu plataforma." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Por favor instala el JDK 1.5 o posterior" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino requiere el JDK completo (no solo el JRE)\n" +"para funcionar. Por favor instala el JDK 1.5 o superior.\n" +"Podrás encontrar más información en la referencia." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "La carpeta Sketchbook ha desaparecido" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"La carpeta Sketchbook ya no existe.\n" +"Arduino cambiará a la ubicación predeterminada\n" +"del Sketchbook y creará una nueva carpeta Sketchbook\n" +"si es necesario. Arduino dejará después de hablar de sí mismo\n" +"en tercera persona." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Hora de un descanso" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Por hoy haz alcanzado el límite de auto nombramiento de Sketches nuevos\n" +"¿Qué tal si vas a dar un paseo?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Luz del Sol" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "De verdad, es hora de que tomes un poco de aire fresco." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Abrir un Sketch de Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" ¿Estás \n" +"seguro de que deseas Salir?

Cerrar el último Sketch abierto cerrará\n" +"Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribuido" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "El Sketch no existe" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"El Sketch seleccionado ya no existe.\n" +"Es posible que necesites reiniciar Arduino\n" +"para actualizar el menú Sketchbook." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"El Sketch \"{0}\" no puede ser utilizado.\n" +"Los nombres de Sketch deben contener solo letras básicas y números\n" +"(Solo ASCII sin espacios, y no puede empezar con un numero).\n" +"Para deshacerse de este mensaje, elimina el Sketch de\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignorando Sketch con nombre incorrecto" + +#: Base.java:1202 +#, java-format +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 "" +"La librería \"{0}\" no puede ser utilizada.\n" +"Los nombres de Librería deben contener solo letras básicas y números\n" +"(Solo ASCII sin espacios y no puede empezar con un número).\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignorando el nombre incorrecto de la librería" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problema obteniendo la carpeta de datos" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Error obteniendo la carpeta de datos de Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Problemas de configuración" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino no puede ejecutar porque no pudo\n" +"crear una carpeta para guardar tu configuración." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Olvidaste tu Sketchbook" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino no puede ejecutarse porque no pudo\n" +"crear una carpeta para guardar tu Sketchbook." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Selecciona (o crea una nueva) Carpeta para Sketches..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problema abriendo la URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"No se pudo abrir la URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problema al abrir la carpeta" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"No se pudo abrir la carpeta\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "" + +#: Base.java:1794 +msgid "index.html" +msgstr "" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "" + +#: Base.java:1804 +msgid "environment" +msgstr "entorno" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "" + +#: Base.java:1826 +msgid "Message" +msgstr "Mensaje" + +#: Base.java:1842 +msgid "Warning" +msgstr "Advertencia" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "No se pudo eliminar la versión anterior de {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "No se pudo reemplazar {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "No se pudo borrar {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nueva pestaña" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Renombrar" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Pestaña anterior" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Siguiente pestaña" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verificar" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Abrir" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nueva ventana del editor" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Abrir en otra ventana" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "No hay lanzador disponible" + +#: 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 "" +"Plataforma no especificada, no hay lanzador disponible.\n" +"para habilitar la apertura de URLs o carpetas, agrega una línea como \n" +"\"launcher=/ruta/de/app\" al archivo preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"No se pudo leer la configuración de esquema de color." +"Necesitarás volver a instalar Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Navegar" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Catalán" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Chino Simplificado" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Danés" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Holandés" + +#: Preferences.java:91 +msgid "English" +msgstr "Ingles" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Francés" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipino" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Gallego" + +#: Preferences.java:96 +msgid "German" +msgstr "Alemán" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Griego" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Húngaro" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italiano" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Japonés" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Letón" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persa" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Rumano" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Español" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"No se pudo leer la configuración predeterminada.\n" +"Necesitarás volver a instalar Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "No se pudo leer las preferencias de {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Error leyendo las preferencias" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Error leyendo el archivo de preferencias. Por favor borra (o mueva)\n" +"{0} y reinicia Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Ubicación del Sketchbook:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Selecciona la nueva ubicación del Sketchbook" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (se requiere reiniciar Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Tamaño de tipo de letra para el editor: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Mostrar resultado detallado durante: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilación " + +#: Preferences.java:375 +msgid "upload" +msgstr "carga" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Verificar el código después de cargar" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Usar editor externo" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Verificar actualizaciones al iniciar" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Actualizar archivos de Sketch a nueva extensión al guardar \n" +"(.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Asociar automáticamente archivos .ino con Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Más preferencias pueden ser editadas directamente en el archivo" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(editar sólo cuando Arduino no se esté ejecutando)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignorando tamaño inválido del tipo de letra {0}" diff --git a/app/src/processing/app/Resources_es.properties b/app/src/processing/app/Resources_es.properties new file mode 100644 index 000000000..3e6705a56 --- /dev/null +++ b/app/src/processing/app/Resources_es.properties @@ -0,0 +1,1039 @@ +# Spanish translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Juan Gomez <3f615b5b28bd435629faa36ded272d837cda2805>, 2012. +# David Cuartielles , 2012 +# Jes\u00fas S\u00e1nchez , 2012. +# Eduardo Sacristan <3f615b5b28bd435629faa36ded272d837cda2805>, 2012. +# Jose Manuel Escuder , 2012 +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 18\:10 +0600\nPO-Revision-Date\: 2012-04-08 23\:20 +0600\nLast-Translator\: Juan Gomez <3f615b5b28bd435629faa36ded272d837cda2805>\nLanguage-Team\: Spanish\nLanguage\: es\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Ning\u00fan archivo fue agregado al Sketch. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Se ha agregado un archivo al Sketch. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} archivos agregados al Sketch. + +#: Editor.java:484 +File=Archivo + +#: Editor.java:486 EditorToolbar.java:41 +New=Nuevo + +#: Editor.java:494 Base.java:903 +Open...=Abrir... + +#: Editor.java:503 +!Sketchbook= + +#: Editor.java:509 +Examples=Ejemplos + +#: Editor.java:514 Editor.java:1977 +Close=Cerrar + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Guardar + +#: Editor.java:530 +Save\ As...=Guardar como... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Cargar + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Cargar usando Programador + +#: Editor.java:556 +Page\ Setup=Configuraci\u00f3n de P\u00e1gina + +#: Editor.java:564 +Print=Imprimir + +#: Editor.java:576 Preferences.java:279 +Preferences=Preferencias + +#: Editor.java:586 Base.java:782 +Quit=Salir + +#: Editor.java:600 +!Sketch= + +#: Editor.java:602 +Verify\ /\ Compile=Verificar / Compilar + +#: Editor.java:629 +Import\ Library...=Importar Librer\u00eda... + +#: Editor.java:634 +Show\ Sketch\ Folder=Mostrar la Carpeta de Sketch + +#: Editor.java:643 +Add\ File...=Agregar Archivo... + +#: Editor.java:656 +Tools=Herramientas + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitor Serial + +#: Editor.java:682 +Board=Tarjeta + +#: Editor.java:690 +Serial\ Port=Puerto Serial + +#: Editor.java:695 +Programmer=Programador + +#: Editor.java:699 +Burn\ Bootloader=Grabar Secuencia de Inicio + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu es nulo + +#: Editor.java:927 Editor.java:934 +name\ is\ null=el nombre es nulo + +#: Editor.java:986 +error\ retrieving\ port\ list=error leyendo la lista de puertos + +#: Editor.java:1002 +Help=Ayuda + +#: Editor.java:1041 +Getting\ Started=Empezando + +#: Editor.java:1049 +Environment=Entorno + +#: Editor.java:1057 +Troubleshooting=Soluci\u00f3n de problemas + +#: Editor.java:1065 +Reference=Referencia + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Buscar en la Referencia + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Preguntas frecuentes + +#: Editor.java:1091 +Visit\ Arduino.cc=Visitar Arduino.cc + +#: Editor.java:1094 +!http\://arduino.cc/= + +#: Editor.java:1102 +About\ Arduino=Acerca de Arduino + +#: Editor.java:1116 +Edit=Editar + +#: Editor.java:1119 Editor.java:1341 +Undo=Deshacer + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Rehacer + +#: Editor.java:1135 Editor.java:2652 +Cut=Cortar + +#: Editor.java:1143 Editor.java:2660 +Copy=Copiar + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copiar para el Foro + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Copiar como HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Pegar + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Seleccionar Todo + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Comentar/Descomentar + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Incrementar Margen + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Reducir Margen + +#: Editor.java:1220 +Find...=Buscar... + +#: Editor.java:1235 +Find\ Next=Buscar Siguiente + +#: Editor.java:1245 +Find\ Previous=Buscar Anterior + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Utilizar Selecci\u00f3n para Buscar + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Primero selecciona una palabra para buscar en la referencia. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=No hay referencias disponibles para "{0}" + +#: Editor.java:1826 +#, java-format +!{0}.html= + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Compilando el Sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compilaci\u00f3n terminada + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u00bfGuardar los cambios en "{0}"? + +#: Editor.java:2006 +\ \ 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.= \u00bfDeseas guardar los cambios a este Sketch
antes de cerrar?

Si no los guardas, los cambios se perder\u00e1n. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Cancelar + +#: Editor.java:2017 +Don't\ Save=No Guardes + +#: Editor.java:2089 +Bad\ file\ selected=Archivo incorrecto seleccionado + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing solo puede abrir sus propios sketches\ny otros archivos terminados en .ino o .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=Aceptar + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=El archivo "{0}" necesita estar dentro\nde la carpeta de un sketch llamada "{1}".\n\u00bfCrear esta carpeta, mover este archivo y continuar? + +#: Editor.java:2109 +Moving=Moviendo + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Error + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Ya existe una carpeta llamada "{0}". No se pudo abrir el Sketch. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=No se ha podido crear la carpeta del sketch. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=No se ha podido copiar a una ubicaci\u00f3n apropiada. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=No se ha podido crear el sketch. + +#: Editor.java:2166 +#, java-format +!{0}\ |\ Arduino\ {1}= + +#: Editor.java:2223 Editor.java:2261 +Saving...=Guardando... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Guardado Terminado. + +#: Editor.java:2270 +Save\ Canceled.=Guardado Cancelado. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=El puerto serial {0} no fue encontrado\n\u00bfVolver a intentar la carga con otro puerto serial? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Cargando a la Tarjeta I/O... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Carga terminada. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Carga cancelada. + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u00bfGuardar los cambios antes de exportar? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3n cancelada, primero debes guardados los cambios. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Grabando secuencia de inicio en la Tarjeta I/O (Esto puede tardar un \nminuto)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Finalizada la grabaci\u00f3n del secuencia de inicio. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Error al grabar la secuencia de inicio. + +#: Editor.java:2500 +Printing...=Imprimiendo... + +#: Editor.java:2517 +Done\ printing.=Impresi\u00f3n terminada. + +#: Editor.java:2520 +Error\ while\ printing.=Error al imprimir. + +#: Editor.java:2524 +Printing\ canceled.=Impresi\u00f3n cancelada. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=L\u00ednea de error incorrecta\: {0} + +#: Editor.java:2641 +Open\ URL=Abrir URL + +#: UpdateCheck.java:53 +!http\://www.arduino.cc/latest.txt= + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nueva versi\u00f3n de Arduino Est\u00e1 disponible,\n\u00bfDeseas visitar la p\u00e1gina de descargas de Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=S\u00ed + +#: UpdateCheck.java:108 Preferences.java:77 +!No= + +#: UpdateCheck.java:111 +Update=Actualizar + +#: UpdateCheck.java:118 +!http\://www.arduino.cc/en/Main/Software= + +#: FindReplace.java:80 +Find\:=Buscar\: + +#: FindReplace.java:81 +Replace\ with\:=Reemplazar con\: + +#: FindReplace.java:96 +Ignore\ Case=Ignorar may\u00fasculas y min\u00fasculas + +#: FindReplace.java:105 +Wrap\ Around=Envolver + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Reemplazar todo + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Reemplazar + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Reemplazar y Buscar + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Anterior + +#: FindReplace.java:124 FindReplace.java:127 +Find=Buscar + +#: SerialMonitor.java:93 +Send=Enviar + +#: SerialMonitor.java:110 +Autoscroll=Desplazamiento autom\u00e1tico + +#: SerialMonitor.java:112 +No\ line\ ending=No hay fin de l\u00ednea + +#: SerialMonitor.java:112 +Newline=Nueva L\u00ednea + +#: SerialMonitor.java:112 +Carriage\ return=Retorno de Carro + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Ambos NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baudio + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=El puerto serial ''{0}'' ya Est\u00e1 en uso. Intenta cerrar cualquier otro programa que pueda estar us\u00e1ndolo. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Error al abrir el puerto serial ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Puerto serial ''{0}'' no encontrado. \u00bfEst\u00e1s seguro que seleccionaste el correcto del men\u00fa Herramientas > Puerto Serial? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=El buffer de bytes readBytesUntil() es demasiado peque\u00f1o para los {0} bytes hasta e incluyendo el char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Error dentro de Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Formato Autom\u00e1tico + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=No hay cambios necesarios para el Formato Autom\u00e1tico. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Formato autom\u00e1tico cancelado\: demasiados par\u00e9ntesis derechos. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Formato autom\u00e1tico cancelado\: demasiados par\u00e9ntesis izquierdos. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Formato autom\u00e1tico cancelado\: demasiados corchetes derechos. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Formato autom\u00e1tico cancelado\: demasiados corchetes izquierdos. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Formato autom\u00e1tico terminado. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Reparar Codificaci\u00f3n y Recargar + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u00bfDescartar todos los cambios y recargar el Sketch? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ha ocurrido un error mientras se intentaba arreglar la codificaci\u00f3n del\narchivo. No intentes guardar este Sketch porque puede sobreescribir la\nversi\u00f3n anterior. Utiliza Abrir para reabrir el Sketch e intenta de nuevo.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Archivar el Sketch + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=No se ha podido archivar el Sketch + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=El archivado del Sketch ha sido cancelado porque\nel Sketch no se pudo guardar debidamente. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Archivar el Sketch como\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Archivado de el Sketch ha sido cancelado. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Error mientras se cargaba el c\u00f3digo {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contiene caracteres incorrectos. Si este c\u00f3digo fue creado con una versi\u00f3n anterior de Processing, puede que necesites usar Herramientas -> Corregir Codificaci\u00f3n y Recargar para actualizar el Sketch a codificaci\u00f3n UTF-8. Si no, es posible que necesites borrar los caracteres incorrectos para deshacerte de esta advertencia. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=El Skecth es de s\u00f3lo lectura + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Algunos archivos est\u00e1n marcados como "s\u00f3lo lectura",\nas\u00ed que necesitar\u00e1s volver a guardar este Sketch en otra ubicaci\u00f3n, e \nintentarlo de nuevo. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nombre para el nuevo archivo\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=El Sketch no tiene nombre + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u00bfQu\u00e9 tal si primero guardas el Sketch \nantes de intentar renombrarlo? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Problema al renombrar + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=El nombre no puede empezar con un punto. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" no es una extensi\u00f3n v\u00e1lida. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=El archivo principal no puede usar una extensi\u00f3n.\n(Puede qu\u00e9 ya sea hora de qu\u00e9 te grad\u00faes a un\nentorno de desarrollo "real") + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Negativo + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Ya existe un archivo llamado "{0}" en "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No puedes tener un archivo .cpp con el mismo nombre que el Sketch. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puedes renombrar el Sketch a "{0}"\nporque el Sketch ya tiene un archivo .cpp con ese nombre + +#: Sketch.java:459 +Cannot\ Rename=No se puede renombrar + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Lo siento, ya existe un Sketch (o carpeta) llamado "{0}". + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=No se pudo renombrar el Sketch. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=No se pudo renombrar "{0}" a "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=No se pudo renombrar el Sketch. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=No se pude renombrar el Sketch. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() retorn\u00f3 falso + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u00bfEst\u00e1s seguro que deseas borrar este Sketch? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u00bfEst\u00e1s seguro que deseas borrar "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Borrar + +#: Sketch.java:620 +Couldn't\ do\ it=No lo pude hacer + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=No se pudo borrar "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error interno... No se pudo encontrar el c\u00f3digo + +#: Sketch.java:724 +Sketch\ is\ read-only=El Skecth es de s\u00f3lo lectura + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Algunos archivos est\u00e1n marcados como "s\u00f3lo lectura",\nas\u00ed que necesitar\u00e1s volver a guardar este Sketch en otra ubicaci\u00f3n. + +#: Sketch.java:743 +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En Arduino 1.0, la extensi\u00f3n por defecto ha sido cambiada\nde .pde a .ino. Los nuevos Sketches (incluyendo los creados con\n"Guardar como" usar\u00e1n la nueva extensi\u00f3n. La extensi\u00f3n\nde los Sketches ya existentes ser\u00e1 actualizada al guardar, pero esto\npuede ser deshabilitado en el di\u00e1logo de Preferencias\n\n\u00bfGuardar el sketch y actualizar la extensi\u00f3n? + +#: Sketch.java:750 +!.pde\ ->\ .ino= + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Guardar la carpeta de Sketch como... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puedes guardar el Sketch como "{0}"\nporque el Sketch ya tiene un archivo .cpp con ese nombre. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Qu\u00e9 tan Borges de tu parte + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No puedes guardar el Sketch en una carpeta\ndentro de s\u00ed mismo. Esto podr\u00eda seguir por siempre. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecciona una imagen o alg\u00fan otro archivo de datos para copiar al Sketch + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=\u00bfReemplazar la versi\u00f3n existente de {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Error agregando archivo + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=No se pudo borrar el archivo existente ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=No me puedes enga\u00f1ar + +#: Sketch.java:1079 +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 archivo ya ha sido copiado al lugar\ndesde el que est\u00e1 intentando agregarlo.\nSimplemente voy a ignorarte. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=No se pudo agregar ''{0}'' al Sketch. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=La carpeta de construcci\u00f3n despareci\u00f3 o no puede ser escrita + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=No se pudo encontrar la clase main + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Excepci\u00f3n no atrapada de tipo\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problema moviendo {0} a la carpeta de construcci\u00f3n + +#: Sketch.java:1661 +Uploading...=Cargando... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Tama\u00f1o binario del Sketch\: {0} bytes (de un m\u00e1ximo de {1} bytes) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=No se ha podido determinar el tama\u00f1o del programa\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch demasiado grande; ver http\://www.arduino.cc/en/Guide/Troubleshooting\#size para consejos de como reducirlo. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta el */ al final de un /* comentario */ + +#: Sketch.java:1796 +Sketch\ Disappeared=El Sketch ha desaparecido + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=La carpeta Sketch ha desaparecido.\n Intentar\u00e1 volver a guardarla en el mismo lugar,\npero cualquier cosa aparte del c\u00f3digo se perder\u00e1. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=No se pudo volver a guardar el Sketch + +#: Sketch.java:1811 +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=No se pudo volver a guardar el Sketch adecuadamente. Puede que est\u00e9s en \nproblemas en este punto, y tal vez sea hora de copiar y pegar tu c\u00f3digo en \notro editor. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=El nombre del Sketch tuvo que ser modificado. Los nombres de Sketch\ns\u00f3lo pueden consistir de caracteres ASCII y n\u00fameros (pero no pueden\nempezar con un n\u00famero). Tambi\u00e9n deben ser de tama\u00f1o menor a 64 caracteres.\n + +#: debug/Uploader.java:52 +!https\://developer.berlios.de/bugs/?group_id\=3590= + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Error de compilaci\u00f3n, por favor env\u00eda este c\u00f3digo a {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=El puerto serial seleccionado {0} no existe o tu tarjeta no est\u00e1 conectada + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=El dispositivo no responde, revise que el puerto serial correcto est\u00e9 seleccionado o REINICIE la tarjeta antes de exportar + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema al subir c\u00f3digo a la tarjeta. Vea http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sugerencias. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Se ha encontrado un Microcontrolador equivocado. \u00bfSeleccionaste la tarjeta \ncorrecta del men\u00fa Herramientas > Tarjeta? + +#: debug/Compiler.java:41 +!http\://code.google.com/p/arduino/issues/list= + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No hay tarjeta seleccionada; por favor, escoje una tarjeta del men\u00fa\nHerramientas > Tarjeta + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} retorn\u00f3 {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Error compilando. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importe la liberar\u00eda SPI utilizando el men\u00fa\nSketch > Importar Librer\u00eda. + +#: debug/Compiler.java:466 +\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=Desde Arduino 0019, la librer\u00eda de Ethernet depende de la librer\u00eda SPI.\nParece que est\u00e1s us\u00e1ndola o alguna otra librer\u00eda que depende de la librer\u00edaSPI + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=La palabra clave 'BYTE' ya no est\u00e1 soportada. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nDesde Arduino 1.0, la palabra clave 'BYTE' ya no est\u00e1 soportada en \nSerial.print(var, BYTE). Por favor utiliza Serial.write() en su lugar.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=La clase Server ha sido renombrada como EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDesde Arduino 1.0, la clase Server en la librer\u00eda Ethernet ha sido\nrenombrada como EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La clase Client ha sido renombrada EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDesde Arduino 1.0, la clase Client en la librer\u00eda Ethernet ha sido\nrenombrada como EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=La clase Udp ha sido renombrada EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDesde Arduino 1.0, la clase Udp en la librer\u00eda Ethernet ha sido\nrenombrada como EthernetUdp.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() ha sido renombrado Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde Arduino 1.0, la funci\u00f3n Wire.send() ha sido renombrada Wire.write() para mantener la consistencia con otras librer\u00edas.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ha sido renombrado Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde Arduino 1.0, la funci\u00f3n Wire.receive() ha sido renombrada Wire.read() para mantener la consistencia con otras librer\u00edas.\n\n + +#: EditorConsole.java:152 +Console\ Error=Error de consola + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ha ocurrido un problema mientras se trataba de abrir el\narchivo utilizado para guardar el resultado de la consola. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mientras se configuraba la Apariencia. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=El que sigue es el mensaje de error, pero Arduino deber\u00eda continuar\nfuncionando bien. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problema configurando la Plataforma + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Un error desconocido ha ocurrido mientras\nse cargaba el c\u00f3digo especifico para tu plataforma. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Por favor instala el JDK 1.5 o posterior + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requiere el JDK completo (no solo el JRE)\npara funcionar. Por favor instala el JDK 1.5 o superior.\nPodr\u00e1s encontrar m\u00e1s informaci\u00f3n en la referencia. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=La carpeta Sketchbook ha desaparecido + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La carpeta Sketchbook ya no existe.\nArduino cambiar\u00e1 a la ubicaci\u00f3n predeterminada\ndel Sketchbook y crear\u00e1 una nueva carpeta Sketchbook\nsi es necesario. Arduino dejar\u00e1 despu\u00e9s de hablar de s\u00ed mismo\nen tercera persona. + +#: Base.java:532 +Time\ for\ a\ Break=Hora de un descanso + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Por hoy haz alcanzado el l\u00edmite de auto nombramiento de Sketches nuevos\n\u00bfQu\u00e9 tal si vas a dar un paseo? + +#: Base.java:537 +Sunshine=Luz del Sol + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De verdad, es hora de que tomes un poco de aire fresco. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Abrir un Sketch de Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u00bfEst\u00e1s \nseguro de que deseas Salir?

Cerrar el \u00faltimo Sketch abierto cerrar\u00e1\nArduino. + +#: Base.java:970 +Contributed=Contribuido + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=El Sketch no existe + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=El Sketch seleccionado ya no existe.\nEs posible que necesites reiniciar Arduino\npara actualizar el men\u00fa Sketchbook. + +#: Base.java:1125 +#, 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}=El Sketch "{0}" no puede ser utilizado.\nLos nombres de Sketch deben contener solo letras b\u00e1sicas y n\u00fameros\n(Solo ASCII sin espacios, y no puede empezar con un numero).\nPara deshacerse de este mensaje, elimina el Sketch de\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignorando Sketch con nombre incorrecto + +#: Base.java:1202 +#, 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)=La librer\u00eda "{0}" no puede ser utilizada.\nLos nombres de Librer\u00eda deben contener solo letras b\u00e1sicas y n\u00fameros\n(Solo ASCII sin espacios y no puede empezar con un n\u00famero).\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignorando el nombre incorrecto de la librer\u00eda + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problema obteniendo la carpeta de datos + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Error obteniendo la carpeta de datos de Arduino. + +#: Base.java:1440 +Settings\ issues=Problemas de configuraci\u00f3n + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino no puede ejecutar porque no pudo\ncrear una carpeta para guardar tu configuraci\u00f3n. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Olvidaste tu Sketchbook + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino no puede ejecutarse porque no pudo\ncrear una carpeta para guardar tu Sketchbook. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecciona (o crea una nueva) Carpeta para Sketches... + +#: Base.java:1647 +Problem\ Opening\ URL=Problema abriendo la URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=No se pudo abrir la URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problema al abrir la carpeta + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=No se pudo abrir la carpeta\n{0} + +#: Base.java:1785 +!Guide_MacOSX.html= + +#: Base.java:1787 +!Guide_Windows.html= + +#: Base.java:1789 +!http\://www.arduino.cc/playground/Learning/Linux= + +#: Base.java:1794 +!index.html= + +#: Base.java:1799 +!Guide_Environment.html= + +#: Base.java:1804 +environment=entorno + +#: Base.java:1804 +!platforms.html= + +#: Base.java:1809 +!Guide_Troubleshooting.html= + +#: Base.java:1814 +!FAQ.html= + +#: Base.java:1826 +Message=Mensaje + +#: Base.java:1842 +Warning=Advertencia + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=No se pudo eliminar la versi\u00f3n anterior de {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=No se pudo reemplazar {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=No se pudo borrar {0} + +#: EditorHeader.java:292 +New\ Tab=Nueva pesta\u00f1a + +#: EditorHeader.java:300 +Rename=Renombrar + +#: EditorHeader.java:326 +Previous\ Tab=Pesta\u00f1a anterior + +#: EditorHeader.java:340 +Next\ Tab=Siguiente pesta\u00f1a + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verificar + +#: EditorToolbar.java:41 +Open=Abrir + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nueva ventana del editor + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Abrir en otra ventana + +#: Platform.java:167 +No\ launcher\ available=No hay lanzador disponible + +#: 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 no especificada, no hay lanzador disponible.\npara habilitar la apertura de URLs o carpetas, agrega una l\u00ednea como \n"launcher\=/ruta/de/app" al archivo preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=No se pudo leer la configuraci\u00f3n de esquema de color.Necesitar\u00e1s volver a instalar Processing. + +#: Preferences.java:80 +Browse=Navegar + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Catal\u00e1n + +#: Preferences.java:87 +Chinese\ Simplified=Chino Simplificado + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Dan\u00e9s + +#: Preferences.java:90 +Dutch=Holand\u00e9s + +#: Preferences.java:91 +English=Ingles + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Franc\u00e9s + +#: Preferences.java:94 +Filipino=Filipino + +#: Preferences.java:95 +Galician=Gallego + +#: Preferences.java:96 +German=Alem\u00e1n + +#: Preferences.java:97 +Greek=Griego + +#: Preferences.java:98 +Hungarian=H\u00fangaro + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Italiano + +#: Preferences.java:101 +Japanese=Japon\u00e9s + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Let\u00f3n + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Persa + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Rumano + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Espa\u00f1ol + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pudo leer la configuraci\u00f3n predeterminada.\nNecesitar\u00e1s volver a instalar Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=No se pudo leer las preferencias de {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Error leyendo las preferencias + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Error leyendo el archivo de preferencias. Por favor borra (o mueva)\n{0} y reinicia Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Ubicaci\u00f3n del Sketchbook\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Selecciona la nueva ubicaci\u00f3n del Sketchbook + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (se requiere reiniciar Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Tama\u00f1o de tipo de letra para el editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Mostrar resultado detallado durante\: + +#: Preferences.java:373 +compilation\ =compilaci\u00f3n + +#: Preferences.java:375 +upload=carga + +#: Preferences.java:384 +Verify\ code\ after\ upload=Verificar el c\u00f3digo despu\u00e9s de cargar + +#: Preferences.java:393 +Use\ external\ editor=Usar editor externo + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Verificar actualizaciones al iniciar + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Actualizar archivos de Sketch a nueva extensi\u00f3n al guardar \n(.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Asociar autom\u00e1ticamente archivos .ino con Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=M\u00e1s preferencias pueden ser editadas directamente en el archivo + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3lo cuando Arduino no se est\u00e9 ejecutando) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignorando tama\u00f1o inv\u00e1lido del tipo de letra {0} diff --git a/app/src/processing/app/Resources_et.po b/app/src/processing/app/Resources_et.po new file mode 100644 index 000000000..faa27f0bc --- /dev/null +++ b/app/src/processing/app/Resources_et.po @@ -0,0 +1,1646 @@ +# Estonian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino package. +# Cougar , 2012. +msgid "" +msgstr "" +"Project-Id-Version: Arduino 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-14 13:35+0300\n" +"PO-Revision-Date: 2012-04-14 13:52+0300\n" +"Last-Translator: Cougar \n" +"Language-Team: Estonian\n" +"Language: et\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Virtaal 0.7.1\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Visandisse pole faile lisatud." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Visandisse on lisatud üks fail." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "Visandisse on lisatud {0} faili." + +#: Editor.java:484 +msgid "File" +msgstr "Fail" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Uus" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Ava..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Visandid" + +#: Editor.java:509 +msgid "Examples" +msgstr "Näited" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Sulge" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Salvesta" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Salvesta kui..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Laadi üles" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Laadi üles programmaatori kaudu" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Lehekülje sätted" + +#: Editor.java:564 +msgid "Print" +msgstr "Prindi" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Eelistused" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Välju" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Visand" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Kontrolli / Kompileeri" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Laadi teek..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Näita visandite kausta" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Lisa fail..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Tööriistad" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Jadapordi monitor" + +#: Editor.java:682 +msgid "Board" +msgstr "Plaat" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Jadaport" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Pogrammaator" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Kirjuta buudilaadur" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu on null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "name on null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "Portide nimekirja koostamine ebaõnnestus" + +#: Editor.java:1002 +msgid "Help" +msgstr "Abi" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Alustamine" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Töökeskkond" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Probleemide lahendamine" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Seletused" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Registriviide" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Korduma Kippuvad Küsimused" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Külasta Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Arduinost" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Redigeeri" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Võta tagasi" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Tee uuesti" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Lõika" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopeeri" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopeeri foorumi jaoks" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopeeri HTML-ina" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Aseta" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Vali kõik" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Kommentaari lisamine/eemaldamine" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Suurenda taanet" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Vähenda taanet" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Otsi..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Otsi järgmine" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Otsi eelmine" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Kasuta otsimiseks valikut" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Juhendist otsimiseks märgi kõigepealt sõna." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "\"{0}\" kohta juhend puudub" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Visandi kompileerimine..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Kompileeritud." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Salvesta muudatused faili \"{0}\"" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Kas sa " +"soovid muudatused enne sulgemist salvestada?

salvestamata muudatused " +"lähevad kaduma" + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Loobu" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Ära salvesta" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Vigane fail valitud" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "Avada saab ainult oma visandeid ning .ino või .pde laienditega faile." + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "Olgu" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"\"{0}\" peab asuma visandite kaustas \"{1}\".\n" +"Kas tekitan selle kausta ning liigutan faili sinna?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Liigutamine" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Viga" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Kaust \"{0}\" on juba olemas. Ei saa visandit avada." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Visandi kausta pole võimalik luua" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Ettenähtud kohta ei saa kopeerida." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Visandi loomine nurjus." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Salvestamine..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Salvestatud." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Salvestamine katkestatud." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Jadaport {0} puudub.\n" +"Proovin mõnda teist porti?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "I/O plaadile laadimine..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Laadimine lõpetatud" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Laadimine katkestati" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Salvestan muudatused enne eksportimist?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Eksport katkestatud. Muudatused peavad olema enne salvestatud." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Buudilaaduri I/O plaadile kirjutamine (see võib kesta mõni minut)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Buudilaadur edukalt kirjutatud." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Buudilaaduri kirjutamisel tekkis viga." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Trükkimine..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Trükitud." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Viga trükkimisel." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Trükkimine katkestati." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Viga real: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Ava URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Saadaval on uuem versioon Arduinost.\n" +"Kas soovid allalaadimislehte külastada?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Jah" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Ei" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Uuenda" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Otsi:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Asenda järgnevaga:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignoreeri tähesuurust" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Jätkatakse algusest" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Asenda kõik" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Asendada" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Otsi ja asenda" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Eelmine" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Otsi" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Saada" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Isekerimine" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Reavahetust ei lisa" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "lisa NL (\\n)" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "lisa CR (\\r)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "lisa NL+CR (\\r\\n)" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " boodi" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "Jadaport {0} on juba kasutusel. Välju programmist, mis seda kasutab." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Viga jadapordi {0} avamisel" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "Jadaport {0} puudub. Vali õige port menüüst Tööriistad -> Jadaport" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() baitide puhver on liiga väike {0} ja rohkema baidi jaoks " +"alates märgist {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Viga Serial.{0}() sees" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Automaatvormindus" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Automaatvormindus ei vaja muudatusi." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Automaatvormindus katkestatud: liiga palju lõppevaid sulge." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Automaatvormindus katkestatud: liiga palju algavaid sulge." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Automaatvormindus katkestatud: liiga palju lõppevaid looksulge." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Automaatvormindus katkestatud: liiga palju algavaid looksulge." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Automaatvormindus tehtud." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Paranda kooditabel ning laadi uuesti" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Unusta kõik muudatused ning laadi uuesti?" + +#: 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 "" +"Faili kooditabeli muutmisel tekkis viga. Ära proovi\n" +"seda visandit salvestada kuna see võib olemasoleva\n" +"üle kirjutada. Ava visand uuesti ning proovi uuesti." + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arhiveeri visand" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Visandi arhiveerimine ebaõnnestus" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Visandi arhiveerimine ebaõnnestus kuna seda\n" +"ei saanud korralikult salvestada." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arhiveeri visand uue nimega:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Visandi arhiveerimine katkestatud." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Koodi laadimise viga {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" sisaldab tundmatuid tähemärke. Kui see kood on loodud vanema " +"versiooniga, saab selle teisendada UTF-8'ks menüüst Tööriistad -> Paranda " +"kooditabel ning laadi uuesti. Teine variant on vigased märgid käsitsi " +"kustutada." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Visand on kirjutuskaitsega" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Mõned failid on kirjutuskaitsega. Proovi uuesti\n" +"salvestades visand kuhugi mujale." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Uue faili nimi:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Visand on pealkirjastamata" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Kuidas oleks, kui salvestaks visandi \n" +"enne nime muutmist?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Probleem nime muutmisega" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Nimi ei või alata puntiga." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" pole lubatud laiend." + +#: Sketch.java:378 +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 "Põhifail ei tohi kasutada laiendit.\n" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Vabandust" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "\"{1}\" kasutas on fail nimega \"{0}\" juba olemas" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Sama nimega visand on juba olemas. .cpp faili nimi peab olema erinev." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Visandit ei saa nimetada \"{0}\" sest\n" +"sellise nimega .cpp fail on juba olemas." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Ümbernimetamine nurjus" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Kahjuks on \"{0}\" nimega visand või kaust juba olemas." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Visandi ümbernimetamine nurjus. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "\"{0}\" pole võimalik \"{1}\"-ks ümber nimetada." + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Visandi ümbernimetamine nurjus. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Visandi ümbernimetamine nurjus. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() ebaõnnestus" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Oled kindel, et soovid kustutada selle visandi?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Oled kindel, et soovid kustutada \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Kustuta" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Ei saanud seda teha" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "\"{0}\" pole võimalik kustutada." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: sisemine viga.. ei leidnud koodi" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Visand on kirjutuskaitsega" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Mõned failid on kirjutuskaitsega.\n" +"Pead salvestama visandi kuhugi mujale." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"Arduino versioonist 1.0 alates on visandite laiendiks\n" +".pde asemel .ino. Uued visandid (sh uue nimega salvestamine)\n" +"saavad uue laiendi. Olemasolevate visandite laiendid\n" +"uuendatdakse salvestamisel.\n" +"Vajadusel saab selle keelata Eelistuste valikust.\n" +"\n" +"Kas salvestan visandi ning uuendan laiendi?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Salvesta visand uude kausta..." + +#: Sketch.java:865 +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\n" +"sellise nimega .cpp fail on juba olemas." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Maakera sees on maakera" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Sa ei saa salvestada visandit kausta,\n" +"mis on sama kausta sees." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Vali pilt või muu andmefail visandi juurde kopeerimiseks" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Kas vaherada {0} olemasolev versioon?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Viga faili lisamisel" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Ei saa kustutada olemasolevat faili \"{0}\"." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Mind sa ei lollita" + +#: Sketch.java:1079 +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 "" +"See fail on juba kopeeritud kohta, kust sa seda\n" +"kopeerida üritad. Seega ei pea ma midagi tegema." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "''{0}'' ei saa visandisse lisada." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Kompileerimise kaust on haihtunud või pole kirjutatav" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Could not find main class" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Uncaught exception type: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Probleem {0} liigutamisega kompileerimiskausta" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Üleslaadimine..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Binaarse visandi suurus on {0} baiti ({1} maksimumist)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Programmi suurust ei saanud kindlaks teha: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Visand on liiga suur. Vaata http://www.arduino.cc/en/Guide/" +"Troubleshooting#size lehelt näpunäiteid selle vähendamiseks." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "/* kommentaar */ lõpust puudub */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Visand on haihtunud" + +#: Sketch.java:1797 +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 "" +"Visandi kaust on haihtunud.\n" +"Püüan samasse kohta uuesti salvestada,\n" +"kuid kõik peale selle koodi on kadunud." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Visandi uuesti salvestamine ebaõnnestus" + +#: Sketch.java:1811 +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 "" +"Visandi uuesti salvestamine nurjus. Siin on tegemist tõsise probleemiga.\n" +"Proovi lõigata ning kleepida oma kood mõnda teisse tekstiredaktorisse." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Visandi nime tuleb muuta. Nimes tohivad olla vaid\n" +"ASCII tähed ning numbrid (algama peab tähega).\n" +"Nimi peab olema lühem kui 64 märki." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Kompilaatori viga, saada see kood {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "valitud jadaporti {0} ei eksisteeri või plaat on ühendamata" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Seade ei vasta. Kontrolli, et valitud oleks õige jadaport või vajuta enne " +"eksportimist RESET nuppu" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Probleem plaadile üleslaadimisega. http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload leiad soovitusi probleemi lahendamiseks." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Mikrokontroller on vale tüüpi. Kas sa valisid Tööriistad > Plaat alt õige " +"plaadi?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} tagastas {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Kompileerimise viga." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Impordi SPI teek menüüst Visand > Impordi teek" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Alates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\n" +"Paistab, et sa kasutad seda või mõnda muud teeki, mis sõltub SPI teegist.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "\"BYTE\" võtmesõna pole enam toetatud." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Alates Arduino 1.0 ei kasutata enam võtmesõna \"BYTE\".\n" +"Palun kasuta Serial.write() selle asemel.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Klass Server on nüüd EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Alates Arduino 1.0 on Etherneti teegis olev klass Server nimetatud ümber " +"EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Klass Client on nüüd EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Alates Arduino 1.0 on Etherneti teegis olev klass Client nimetatud ümber " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Klass Udp on nimetatud ümber EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Alates Arduino 1.0 on Etherneti teegis olev klass Udp nimetatud ümber " +"EthernetUdp.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() on muudetud Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Alates Arduino 1.0 on Wire.send() nimetatud ümber Wire.write() tagamaks " +"sarnase nimetamise teiste teekidega.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() on muudetud Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Alates Arduino 1.0 on Wire.receive() nimetatud ümber Wire.read() tagamaks " +"sarnase nimetamise teiste teekidega.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Konsooli viga" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "Konsooli väljundi salvestamiseks vajaliku faili avamisel tekkis viga." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Mitte-saatsulik viga välimuse seadmises." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Kuigi Arduino läks ilusti käima, tekkis mingi viga." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Platvormi valimise viga" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"Sinu masina platvormipõhise koodi laadimisel\n" +"tekkis tundmatu viga." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Palun paigalda JDK 1.5 või hilisem" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino vajab tööks kogu JDK paigaldamist (mitte ainult JRE).\n" +"Palun paigalda JDK versioon 1.5 või hilisem.\n" +"Rohkem infot leiad viidetest." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Visandite kaust on haihtunud" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Visandite kausta pole enam.\n" +"Arduino hakkab kasutama vaikimisi kausta ning\n" +"vajadusel tekitab sinna uue visandite kausta." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Aeg puhata" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Sa oled saavutanud ühel päeval loodavate automaatsete\n" +"nimede piiri. Kuidas hoopis oleks väikese jalutuskäiguga?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Särasilm" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Tõesti oleks aeg natuke värsket õhku hingata." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Ava Arduino visand..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Oled sa " +"kindel, et soovid väljuda?

Viimase avatud visandi sulgemisel suletakse " +"ka Arduino keskkond." + +#: Base.java:970 +msgid "Contributed" +msgstr "Toetajad" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Visandit ei ole olemas" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Valitud visandit ei ole enam.\n" +"Visandite menüü uuendamiseks\n" +"käivita Arduino uuesti." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Visandit \"{0}\" ei saa kasutada.\n" +"Visandite nimed nimed tohivad sisaldada ainult ASCII tähti\n" +"ja numbreid ning peavad algama tähega.\n" +"Sellest teatest saab lahti ainult \"{1}\" kaustast\n" +"visandi kustutamisega." + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Vigase nimega visandi eriamine" + +#: Base.java:1202 +#, java-format +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 "" +"Teeki \"{0}\" ei saa kasutada.\n" +"Teekide nimed tohivad sisaldada ainult ASCII tähti ja\n" +"numbreid ning peavad algama tähega." + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Vigase nimega teegi eiramine" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Probleem andmekausta nime leidmisega" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Arduino andmekausta nime leidmise viga." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Probleem seadetega" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Ei saa Arduinot käivitada kuna seadete kausta\n" +"loomine ei õnnestunud." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Sa unustasid oma visandid" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Ei saa Arduinot käivitada kuna visandite kausta\n" +"loomine ei õnnestunud." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Vali (või loo uus) kaust visandite jaoks..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "URL avamine ebaõnnestus" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"URL avamine ebaõnnestus\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Kausta avamine ebaõnnestus" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Kausta avamine ebaõnnestus\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "Töökeskkond" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Teade" + +#: Base.java:1842 +msgid "Warning" +msgstr "Hoiatus" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Ei saanud {0} vana versiooni eemaldada" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "{0} pole võimalik asendada" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "{0} pole võimalik kustutada." + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Uus kaart" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Nimeta ümber" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Eelmine kaart" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Järgmine kaart" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Kontrolli" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Ava" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Uus redaktoriaken" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Ava uues aknas" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Veebilehitseja puudub" + +#: 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 "" +"Tundmatu platvorm, veebilehitseja puudub.\n" +"Veebiaadresside avamiseks lisa\n" +"\"launcher=/kaust/brauser\" rida preferences.txt faili." + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Ei saa avada värviteema seadeid.\n" +"Processing tuleb uuesti paigaldada." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Sirvi" + +#: Preferences.java:83 +msgid "System Default" +msgstr "Süsteemi vaikimisi keel" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Katalaani" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Hiina (lihtsustatud)" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "Traditsiooniline Hiina" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Taani" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Hollandi" + +#: Preferences.java:91 +msgid "English" +msgstr "Inglise" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Prantsuse" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipiini" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galeegi" + +#: Preferences.java:96 +msgid "German" +msgstr "Saksa" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Kreeka" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Ungari" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Itaalia" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Jaapani" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Läti" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Pärsia" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "Portugali" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Rumeenia" + +#: Preferences.java:110 +msgid "Russian" +msgstr "Vene" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Hispaania" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Ei saa avada vaikimisi seadeid.\n" +"Arduino tuleb uuesti paigaldada." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Ei saa lugeda eelistusi failist {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Viga eelistuste lugemisel" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Viga eelistuste faili lugemisel. Palun kustuta (või tõsta\n" +"mujale) {0} ning käivita Arduino uuesti." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Visandite asukoht:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Vali uus visandite kaust" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "Tekstiredaktori keel:" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (vajab Arduino taaskäivitamist)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Tekstiredaktori kirja suurus:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Näita detailsemat väljndit:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "kopileerimise ajal" + +#: Preferences.java:375 +msgid "upload" +msgstr "üleslaadimise ajal" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Kontrolli koodi peale üleslaadimist" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Kasuta välist redaktorit" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Käivitamisel kontrolli uuendusi" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Salvestamisel uuenda visandite laiendit (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Seo .ino laiend automaatselt Arduinoga" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Rohkemate eelistuste muutmiseks muuda neid otse failis" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(Arduino ei tohi muutmise ajal käia)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "vigase fondi suuruse \"{0}\" eiramine" diff --git a/app/src/processing/app/Resources_et.properties b/app/src/processing/app/Resources_et.properties new file mode 100644 index 000000000..8c00bd8bf --- /dev/null +++ b/app/src/processing/app/Resources_et.properties @@ -0,0 +1,1033 @@ +# Estonian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino package. +# Cougar , 2012. +!=Project-Id-Version\: Arduino 1.0\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-14 13\:35+0300\nPO-Revision-Date\: 2012-04-14 13\:52+0300\nLast-Translator\: Cougar \nLanguage-Team\: Estonian\nLanguage\: et\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\nX-Generator\: Virtaal 0.7.1\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Visandisse pole faile lisatud. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Visandisse on lisatud \u00fcks fail. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=Visandisse on lisatud {0} faili. + +#: Editor.java:484 +File=Fail + +#: Editor.java:486 EditorToolbar.java:41 +New=Uus + +#: Editor.java:494 Base.java:903 +Open...=Ava... + +#: Editor.java:503 +Sketchbook=Visandid + +#: Editor.java:509 +Examples=N\u00e4ited + +#: Editor.java:514 Editor.java:1977 +Close=Sulge + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Salvesta + +#: Editor.java:530 +Save\ As...=Salvesta kui... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Laadi \u00fcles + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Laadi \u00fcles programmaatori kaudu + +#: Editor.java:556 +Page\ Setup=Lehek\u00fclje s\u00e4tted + +#: Editor.java:564 +Print=Prindi + +#: Editor.java:576 Preferences.java:279 +Preferences=Eelistused + +#: Editor.java:586 Base.java:782 +Quit=V\u00e4lju + +#: Editor.java:600 +Sketch=Visand + +#: Editor.java:602 +Verify\ /\ Compile=Kontrolli / Kompileeri + +#: Editor.java:629 +Import\ Library...=Laadi teek... + +#: Editor.java:634 +Show\ Sketch\ Folder=N\u00e4ita visandite kausta + +#: Editor.java:643 +Add\ File...=Lisa fail... + +#: Editor.java:656 +Tools=T\u00f6\u00f6riistad + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Jadapordi monitor + +#: Editor.java:682 +Board=Plaat + +#: Editor.java:690 +Serial\ Port=Jadaport + +#: Editor.java:695 +Programmer=Pogrammaator + +#: Editor.java:699 +Burn\ Bootloader=Kirjuta buudilaadur + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu on null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=name on null + +#: Editor.java:986 +error\ retrieving\ port\ list=Portide nimekirja koostamine eba\u00f5nnestus + +#: Editor.java:1002 +Help=Abi + +#: Editor.java:1041 +Getting\ Started=Alustamine + +#: Editor.java:1049 +Environment=T\u00f6\u00f6keskkond + +#: Editor.java:1057 +Troubleshooting=Probleemide lahendamine + +#: Editor.java:1065 +Reference=Seletused + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Registriviide + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Korduma Kippuvad K\u00fcsimused + +#: Editor.java:1091 +Visit\ Arduino.cc=K\u00fclasta Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Arduinost + +#: Editor.java:1116 +Edit=Redigeeri + +#: Editor.java:1119 Editor.java:1341 +Undo=V\u00f5ta tagasi + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Tee uuesti + +#: Editor.java:1135 Editor.java:2652 +Cut=L\u00f5ika + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopeeri + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kopeeri foorumi jaoks + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kopeeri HTML-ina + +#: Editor.java:1175 Editor.java:2684 +Paste=Aseta + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Vali k\u00f5ik + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Kommentaari lisamine/eemaldamine + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Suurenda taanet + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=V\u00e4henda taanet + +#: Editor.java:1220 +Find...=Otsi... + +#: Editor.java:1235 +Find\ Next=Otsi j\u00e4rgmine + +#: Editor.java:1245 +Find\ Previous=Otsi eelmine + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Kasuta otsimiseks valikut + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Juhendist otsimiseks m\u00e4rgi k\u00f5igepealt s\u00f5na. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"="{0}" kohta juhend puudub + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Visandi kompileerimine... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Kompileeritud. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Salvesta muudatused faili "{0}" + +#: Editor.java:2006 +\ \ 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.= Kas sa soovid muudatused enne sulgemist salvestada?

salvestamata muudatused l\u00e4hevad kaduma + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Loobu + +#: Editor.java:2017 +Don't\ Save=\u00c4ra salvesta + +#: Editor.java:2089 +Bad\ file\ selected=Vigane fail valitud + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Avada saab ainult oma visandeid ning .ino v\u00f5i .pde laienditega faile. + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=Olgu + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?="{0}" peab asuma visandite kaustas "{1}".\nKas tekitan selle kausta ning liigutan faili sinna? + +#: Editor.java:2109 +Moving=Liigutamine + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Viga + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Kaust "{0}" on juba olemas. Ei saa visandit avada. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Visandi kausta pole v\u00f5imalik luua + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Etten\u00e4htud kohta ei saa kopeerida. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Visandi loomine nurjus. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Salvestamine... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Salvestatud. + +#: Editor.java:2270 +Save\ Canceled.=Salvestamine katkestatud. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Jadaport {0} puudub.\nProovin m\u00f5nda teist porti? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=I/O plaadile laadimine... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Laadimine l\u00f5petatud + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Laadimine katkestati + +#: Editor.java:2420 +Save\ changes\ before\ export?=Salvestan muudatused enne eksportimist? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud. Muudatused peavad olema enne salvestatud. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Buudilaaduri I/O plaadile kirjutamine (see v\u00f5ib kesta m\u00f5ni minut)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Buudilaadur edukalt kirjutatud. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Buudilaaduri kirjutamisel tekkis viga. + +#: Editor.java:2500 +Printing...=Tr\u00fckkimine... + +#: Editor.java:2517 +Done\ printing.=Tr\u00fckitud. + +#: Editor.java:2520 +Error\ while\ printing.=Viga tr\u00fckkimisel. + +#: Editor.java:2524 +Printing\ canceled.=Tr\u00fckkimine katkestati. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Viga real\: {0} + +#: Editor.java:2641 +Open\ URL=Ava URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Saadaval on uuem versioon Arduinost.\nKas soovid allalaadimislehte k\u00fclastada? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Jah + +#: UpdateCheck.java:108 Preferences.java:77 +No=Ei + +#: UpdateCheck.java:111 +Update=Uuenda + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Otsi\: + +#: FindReplace.java:81 +Replace\ with\:=Asenda j\u00e4rgnevaga\: + +#: FindReplace.java:96 +Ignore\ Case=Ignoreeri t\u00e4hesuurust + +#: FindReplace.java:105 +Wrap\ Around=J\u00e4tkatakse algusest + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Asenda k\u00f5ik + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Asendada + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Otsi ja asenda + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Eelmine + +#: FindReplace.java:124 FindReplace.java:127 +Find=Otsi + +#: SerialMonitor.java:93 +Send=Saada + +#: SerialMonitor.java:110 +Autoscroll=Isekerimine + +#: SerialMonitor.java:112 +No\ line\ ending=Reavahetust ei lisa + +#: SerialMonitor.java:112 +Newline=lisa NL (\\n) + +#: SerialMonitor.java:112 +Carriage\ return=lisa CR (\\r) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=lisa NL+CR (\\r\\n) + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ boodi + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Jadaport {0} on juba kasutusel. V\u00e4lju programmist, mis seda kasutab. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Viga jadapordi {0} avamisel + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Jadaport {0} puudub. Vali \u00f5ige port men\u00fc\u00fcst T\u00f6\u00f6riistad -> Jadaport + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() baitide puhver on liiga v\u00e4ike {0} ja rohkema baidi jaoks alates m\u00e4rgist {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Viga Serial.{0}() sees + +#: tools/AutoFormat.java:91 +Auto\ Format=Automaatvormindus + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Automaatvormindus ei vaja muudatusi. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Automaatvormindus katkestatud\: liiga palju l\u00f5ppevaid sulge. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Automaatvormindus katkestatud\: liiga palju algavaid sulge. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Automaatvormindus katkestatud\: liiga palju l\u00f5ppevaid looksulge. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Automaatvormindus katkestatud\: liiga palju algavaid looksulge. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Automaatvormindus tehtud. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Paranda kooditabel ning laadi uuesti + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Unusta k\u00f5ik muudatused ning laadi uuesti? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Faili kooditabeli muutmisel tekkis viga. \u00c4ra proovi\nseda visandit salvestada kuna see v\u00f5ib olemasoleva\n\u00fcle kirjutada. Ava visand uuesti ning proovi uuesti. + +#: tools/Archiver.java:48 +Archive\ Sketch=Arhiveeri visand + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Visandi arhiveerimine eba\u00f5nnestus + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Visandi arhiveerimine eba\u00f5nnestus kuna seda\nei saanud korralikult salvestada. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arhiveeri visand uue nimega\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Visandi arhiveerimine katkestatud. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" sisaldab tundmatuid t\u00e4hem\u00e4rke. Kui see kood on loodud vanema versiooniga, saab selle teisendada UTF-8'ks men\u00fc\u00fcst T\u00f6\u00f6riistad -> Paranda kooditabel ning laadi uuesti. Teine variant on vigased m\u00e4rgid k\u00e4sitsi kustutada. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Visand on kirjutuskaitsega + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=M\u00f5ned failid on kirjutuskaitsega. Proovi uuesti\nsalvestades visand kuhugi mujale. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Uue faili nimi\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Visand on pealkirjastamata + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Kuidas oleks, kui salvestaks visandi \nenne nime muutmist? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Probleem nime muutmisega + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Nimi ei v\u00f5i alata puntiga. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" pole lubatud laiend. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=P\u00f5hifail ei tohi kasutada laiendit.\n + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Vabandust + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"="{1}" kasutas on fail nimega "{0}" juba olemas + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sama nimega visand on juba olemas. .cpp faili nimi peab olema erinev. + +#: Sketch.java:425 +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:459 +Cannot\ Rename=\u00dcmbernimetamine nurjus + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Kahjuks on "{0}" nimega visand v\u00f5i kaust juba olemas. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Visandi \u00fcmbernimetamine nurjus. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}" pole v\u00f5imalik "{1}"-ks \u00fcmber nimetada. + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Visandi \u00fcmbernimetamine nurjus. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Visandi \u00fcmbernimetamine nurjus. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() eba\u00f5nnestus + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Oled kindel, et soovid kustutada selle visandi? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Oled kindel, et soovid kustutada "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Kustuta + +#: Sketch.java:620 +Couldn't\ do\ it=Ei saanud seda teha + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".="{0}" pole v\u00f5imalik kustutada. + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: sisemine viga.. ei leidnud koodi + +#: Sketch.java:724 +Sketch\ is\ read-only=Visand on kirjutuskaitsega + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=M\u00f5ned failid on kirjutuskaitsega.\nPead salvestama visandi kuhugi mujale. + +#: Sketch.java:743 +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 versioonist 1.0 alates on visandite laiendiks\n.pde asemel .ino. Uued visandid (sh uue nimega salvestamine)\nsaavad uue laiendi. Olemasolevate visandite laiendid\nuuendatdakse salvestamisel.\nVajadusel saab selle keelata Eelistuste valikust.\n\nKas salvestan visandi ning uuendan laiendi? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Salvesta visand uude kausta... + +#: Sketch.java:865 +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. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Maakera sees on maakera + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Vali pilt v\u00f5i muu andmefail visandi juurde kopeerimiseks + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Kas vaherada {0} olemasolev versioon? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Viga faili lisamisel + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Ei saa kustutada olemasolevat faili "{0}". + +#: Sketch.java:1078 +You\ can't\ fool\ me=Mind sa ei lollita + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=See fail on juba kopeeritud kohta, kust sa seda\nkopeerida \u00fcritad. Seega ei pea ma midagi tegema. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}'' ei saa visandisse lisada. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Kompileerimise kaust on haihtunud v\u00f5i pole kirjutatav + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Could not find main class + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Uncaught exception type\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Probleem {0} liigutamisega kompileerimiskausta + +#: Sketch.java:1661 +Uploading...=\u00dcleslaadimine... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Binaarse visandi suurus on {0} baiti ({1} maksimumist) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Programmi suurust ei saanud kindlaks teha\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Visand on liiga suur. Vaata http\://www.arduino.cc/en/Guide/Troubleshooting\#size lehelt n\u00e4pun\u00e4iteid selle v\u00e4hendamiseks. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* kommentaar */ l\u00f5pust puudub */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Visand on haihtunud + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Visandi kaust on haihtunud.\nP\u00fc\u00fcan samasse kohta uuesti salvestada,\nkuid k\u00f5ik peale selle koodi on kadunud. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus + +#: Sketch.java:1811 +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.=Visandi uuesti salvestamine nurjus. Siin on tegemist t\u00f5sise probleemiga.\nProovi l\u00f5igata ning kleepida oma kood m\u00f5nda teisse tekstiredaktorisse. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Visandi nime tuleb muuta. Nimes tohivad olla vaid\nASCII t\u00e4hed ning numbrid (algama peab t\u00e4hega).\nNimi peab olema l\u00fchem kui 64 m\u00e4rki. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilaatori viga, saada see kood {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=valitud jadaporti {0} ei eksisteeri v\u00f5i plaat on \u00fchendamata + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Seade ei vasta. Kontrolli, et valitud oleks \u00f5ige jadaport v\u00f5i vajuta enne eksportimist RESET nuppu + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleem plaadile \u00fcleslaadimisega. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload leiad soovitusi probleemi lahendamiseks. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mikrokontroller on vale t\u00fc\u00fcpi. Kas sa valisid T\u00f6\u00f6riistad > Plaat alt \u00f5ige plaadi? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plaat pole valitud. Palun tee oma valik men\u00fc\u00fcs T\u00f6\u00f6riistad > Plaat. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} tagastas {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Kompileerimise viga. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Impordi SPI teek men\u00fc\u00fcst Visand > Impordi teek + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAlates Arduino 0019 on Etherneti teegi kasutamiseks vaja SPI teeki.\nPaistab, et sa kasutad seda v\u00f5i m\u00f5nda muud teeki, mis s\u00f5ltub SPI teegist.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.="BYTE" v\u00f5tmes\u00f5na pole enam toetatud. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nAlates Arduino 1.0 ei kasutata enam v\u00f5tmes\u00f5na "BYTE".\nPalun kasuta Serial.write() selle asemel.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klass Server on n\u00fc\u00fcd EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Server nimetatud \u00fcmber EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klass Client on n\u00fc\u00fcd EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Client nimetatud \u00fcmber EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klass Udp on nimetatud \u00fcmber EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nAlates Arduino 1.0 on Etherneti teegis olev klass Udp nimetatud \u00fcmber EthernetUdp.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() on muudetud Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nAlates Arduino 1.0 on Wire.send() nimetatud \u00fcmber Wire.write() tagamaks sarnase nimetamise teiste teekidega.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() on muudetud Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nAlates Arduino 1.0 on Wire.receive() nimetatud \u00fcmber Wire.read() tagamaks sarnase nimetamise teiste teekidega.\n\n + +#: EditorConsole.java:152 +Console\ Error=Konsooli viga + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Konsooli v\u00e4ljundi salvestamiseks vajaliku faili avamisel tekkis viga. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Mitte-saatsulik viga v\u00e4limuse seadmises. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Kuigi Arduino l\u00e4ks ilusti k\u00e4ima, tekkis mingi viga. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Platvormi valimise viga + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Sinu masina platvormip\u00f5hise koodi laadimisel\ntekkis tundmatu viga. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Palun paigalda JDK 1.5 v\u00f5i hilisem + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino vajab t\u00f6\u00f6ks kogu JDK paigaldamist (mitte ainult JRE).\nPalun paigalda JDK versioon 1.5 v\u00f5i hilisem.\nRohkem infot leiad viidetest. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Visandite kaust on haihtunud + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Visandite kausta pole enam.\nArduino hakkab kasutama vaikimisi kausta ning\nvajadusel tekitab sinna uue visandite kausta. + +#: Base.java:532 +Time\ for\ a\ Break=Aeg puhata + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Sa oled saavutanud \u00fchel p\u00e4eval loodavate automaatsete\nnimede piiri. Kuidas hoopis oleks v\u00e4ikese jalutusk\u00e4iguga? + +#: Base.java:537 +Sunshine=S\u00e4rasilm + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=T\u00f5esti oleks aeg natuke v\u00e4rsket \u00f5hku hingata. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Ava Arduino visand... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Oled sa kindel, et soovid v\u00e4ljuda?

Viimase avatud visandi sulgemisel suletakse ka Arduino keskkond. + +#: Base.java:970 +Contributed=Toetajad + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Visandit ei ole olemas + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Valitud visandit ei ole enam.\nVisandite men\u00fc\u00fc uuendamiseks\nk\u00e4ivita Arduino uuesti. + +#: Base.java:1125 +#, 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}=Visandit "{0}" ei saa kasutada.\nVisandite nimed nimed tohivad sisaldada ainult ASCII t\u00e4hti\nja numbreid ning peavad algama t\u00e4hega.\nSellest teatest saab lahti ainult "{1}" kaustast\nvisandi kustutamisega. + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Vigase nimega visandi eriamine + +#: Base.java:1202 +#, 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)=Teeki "{0}" ei saa kasutada.\nTeekide nimed tohivad sisaldada ainult ASCII t\u00e4hti ja\nnumbreid ning peavad algama t\u00e4hega. + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Vigase nimega teegi eiramine + +#: Base.java:1432 +Problem\ getting\ data\ folder=Probleem andmekausta nime leidmisega + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Arduino andmekausta nime leidmise viga. + +#: Base.java:1440 +Settings\ issues=Probleem seadetega + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ei saa Arduinot k\u00e4ivitada kuna seadete kausta\nloomine ei \u00f5nnestunud. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Sa unustasid oma visandid + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Ei saa Arduinot k\u00e4ivitada kuna visandite kausta\nloomine ei \u00f5nnestunud. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Vali (v\u00f5i loo uus) kaust visandite jaoks... + +#: Base.java:1647 +Problem\ Opening\ URL=URL avamine eba\u00f5nnestus + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=URL avamine eba\u00f5nnestus\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Kausta avamine eba\u00f5nnestus + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Kausta avamine eba\u00f5nnestus\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=T\u00f6\u00f6keskkond + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Teade + +#: Base.java:1842 +Warning=Hoiatus + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Ei saanud {0} vana versiooni eemaldada + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}={0} pole v\u00f5imalik asendada + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}={0} pole v\u00f5imalik kustutada. + +#: EditorHeader.java:292 +New\ Tab=Uus kaart + +#: EditorHeader.java:300 +Rename=Nimeta \u00fcmber + +#: EditorHeader.java:326 +Previous\ Tab=Eelmine kaart + +#: EditorHeader.java:340 +Next\ Tab=J\u00e4rgmine kaart + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Kontrolli + +#: EditorToolbar.java:41 +Open=Ava + +#: EditorToolbar.java:46 +New\ Editor\ Window=Uus redaktoriaken + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Ava uues aknas + +#: Platform.java:167 +No\ launcher\ available=Veebilehitseja puudub + +#: 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=Tundmatu platvorm, veebilehitseja puudub.\nVeebiaadresside avamiseks lisa\n"launcher\=/kaust/brauser" rida preferences.txt faili. + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Ei saa avada v\u00e4rviteema seadeid.\nProcessing tuleb uuesti paigaldada. + +#: Preferences.java:80 +Browse=Sirvi + +#: Preferences.java:83 +System\ Default=S\u00fcsteemi vaikimisi keel + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Katalaani + +#: Preferences.java:87 +Chinese\ Simplified=Hiina (lihtsustatud) + +#: Preferences.java:88 +Chinese\ Traditional=Traditsiooniline Hiina + +#: Preferences.java:89 +Danish=Taani + +#: Preferences.java:90 +Dutch=Hollandi + +#: Preferences.java:91 +English=Inglise + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Prantsuse + +#: Preferences.java:94 +Filipino=Filipiini + +#: Preferences.java:95 +Galician=Galeegi + +#: Preferences.java:96 +German=Saksa + +#: Preferences.java:97 +Greek=Kreeka + +#: Preferences.java:98 +Hungarian=Ungari + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Itaalia + +#: Preferences.java:101 +Japanese=Jaapani + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=L\u00e4ti + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=P\u00e4rsia + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +Portuguese=Portugali + +#: Preferences.java:109 +Romanian=Rumeenia + +#: Preferences.java:110 +Russian=Vene + +#: Preferences.java:111 +Spanish=Hispaania + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Ei saa lugeda eelistusi failist {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Viga eelistuste lugemisel + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Viga eelistuste faili lugemisel. Palun kustuta (v\u00f5i t\u00f5sta\nmujale) {0} ning k\u00e4ivita Arduino uuesti. + +#: Preferences.java:299 +Sketchbook\ location\:=Visandite asukoht\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Vali uus visandite kaust + +#: Preferences.java:337 +Editor\ language\:\ =Tekstiredaktori keel\: + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (vajab Arduino taask\u00e4ivitamist) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Tekstiredaktori kirja suurus\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =N\u00e4ita detailsemat v\u00e4ljndit\: + +#: Preferences.java:373 +compilation\ =kopileerimise ajal + +#: Preferences.java:375 +upload=\u00fcleslaadimise ajal + +#: Preferences.java:384 +Verify\ code\ after\ upload=Kontrolli koodi peale \u00fcleslaadimist + +#: Preferences.java:393 +Use\ external\ editor=Kasuta v\u00e4list redaktorit + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=K\u00e4ivitamisel kontrolli uuendusi + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Salvestamisel uuenda visandite laiendit (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Seo .ino laiend automaatselt Arduinoga + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Rohkemate eelistuste muutmiseks muuda neid otse failis + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(Arduino ei tohi muutmise ajal k\u00e4ia) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=vigase fondi suuruse "{0}" eiramine diff --git a/app/src/processing/app/Resources_fa.po b/app/src/processing/app/Resources_fa.po new file mode 100644 index 000000000..f714052c3 --- /dev/null +++ b/app/src/processing/app/Resources_fa.po @@ -0,0 +1,1625 @@ +# Persian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Ebrahim Byagowi , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: Arduino 1.01\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-30 16:19+0330\n" +"Last-Translator: \n" +"Language-Team: Persian\n" +"Language: fa\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "پرونده‌ای به طرح افزوده نشد." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "یک پرونده به طرح افزوده شد." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} پرونده به طرح افزوده شد." + +#: Editor.java:484 +msgid "File" +msgstr "پرونده" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "جدید" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "باز کردن...." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "کتاب طرح" + +#: Editor.java:509 +msgid "Examples" +msgstr "نمونه‌ها" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "یستن" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "ذخیره" + +#: Editor.java:530 +msgid "Save As..." +msgstr "ذخیره به عنوان...." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "بارگذاری" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "بارگذاری به کمک پروگرامر" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "تنظیم صفحه" + +#: Editor.java:564 +msgid "Print" +msgstr "چاپ" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "ترجیحات" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "خروج" + +#: Editor.java:600 +msgid "Sketch" +msgstr "طرح" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "بازبینی / کامپایل" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "واردسازی کتابخانه..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "نمایش پوشهٔ طرح" + +#: Editor.java:643 +msgid "Add File..." +msgstr "افزودن پرونده..." + +#: Editor.java:656 +msgid "Tools" +msgstr "ابزارها" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "نمایشگر سریال" + +#: Editor.java:682 +msgid "Board" +msgstr "برد" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "پورت سریال" + +#: Editor.java:695 +msgid "Programmer" +msgstr "پروگرامر" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "سوزاندن بوت‌لودر" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu تهی است" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "name تهی است" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "خطای بازیابی فهرست درگاه‌ها" + +#: Editor.java:1002 +msgid "Help" +msgstr "کمک" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "شروع کار" + +#: Editor.java:1049 +msgid "Environment" +msgstr "محیط" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "خطایابی" + +#: Editor.java:1065 +msgid "Reference" +msgstr "مرجع" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "یافتن در مرجع" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "سوال‌های متداول پرسیده‌شده" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "بازدید Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "درباره آردئینو" + +#: Editor.java:1116 +msgid "Edit" +msgstr "ویرایش" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "بازگردانی" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "انجام دوباره" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "بریدن" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "رونوشت" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "رونوشت برای تالار گفتگو" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "رونوشت به عنوان اچ‌تی‌ام‌ال" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "الساق" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "انتخاب همه" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "توضیح‌کردن/از توضیح در آوردن" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "افزایش تورفتگی" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "کاهش تورفتگی" + +#: Editor.java:1220 +msgid "Find..." +msgstr "یافتن..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "یافتن بعدی" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "یافتن قبلی" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "استفاده از گزینش برای یافتن" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "ابتدا لغتی برای یافتن در مرجع انتخاب کنید." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "مرجعی برای \"{0}\" موجود نیست" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "کامپایل‌کردن طرح..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "انجام کامپایل کردن." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "ذخیرهٔ تغییرات در \"{0}\"?" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " آیا می‌خواهید تغییرات به این طرح
پیش از بستن ذخیره کنید؟

اگر شما ذخیره کنید تغییراتتان گم خواهند شد." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "فسخ‌کردن" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "ذخیره نکن" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "پرونده انتخاب‌شدهٔ نامناسب" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing فقط می‌تواند طرح‌های خودش را باز کند\n" +"و سایر پرونده‌هایی که با .ino یا .pde پایان می‌پذیرند" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "اوکی" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"پرونده \"{0}\" می‌بایست داخل یک\n" +"پوشهٔ طرح به نام \"{1}\" ذخیره گردند.\n" +"ساختن این پوشه، انتقال پرونده و ادامه؟" + +#: Editor.java:2109 +msgid "Moving" +msgstr "انتقال" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "خطا" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "یک پوشه به نام \"{0}\" در حال حاضر موجود است. نمی‌توان طرح را باز نمود." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "نمی‌توان پوشهٔ طرح را ایجاد نمود." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "نمی‌توان به یک مکان مناسب کپی نمود." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "نمی‌توان طرح را ایجاد نمود." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | آردئینو {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "ذخیره‌سازی...." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "ذخیره‌سازی انجام‌شد." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "ذخیره‌سازی فسخ گشت." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"درگاه سریال {0} یافت نشد.\n" +"انجام مجدد باگذاری با درگاه سریالی دیگر؟" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "بارگذاری به برد I/O..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "بارگذاری انجام‌شد." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "بارگذاری ابطال گشت." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "ذخیرهٔ تغییرات پیش از خارج‌سازی؟" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "خارج‌سازی فسخ‌گردید، تغییرات ابتدا می‌بایست ذخیره گردند." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "سوزاندن bootleader به برد I/O (این ممکن است یک دقیقه به طول بیانجامد)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "سوزاندن بوت‌لودر انجام گردید." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "خطای به هنگام سوزاندن بوت‌لودر." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "چاپ‌کردن..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "چاپ‌کردن به انجام رسید." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "خطا هنگام چاپ‌کردن." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "چاپ ابطال گشت." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "خطای نامناسب خط: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "بازکردن URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"نسخهٔ جدید از آردئینو موجود است،\n" +"مایل هستید که صفحهٔ بارگیری آردئینو را مشاهده کنید؟" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "بله" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "خیر" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "به‌روزرسانی" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "یافتن:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "جایگزین کردن:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "نادیده‌گرفتن بزرگی/کوچکی" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "پوشاندن اطراف" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "جایگزینی همه" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "جایگزینی" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "جایگزینی و یافتن" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "قبلی" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "یافتن" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "ارسال" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "حرکت‌خودکار" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "بدون پایان خط" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "خط جدید" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "بازگشت Carriage" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "هر دوی NL و CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " پهنا" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "درگاه سریال ''{0}'' درحال حاضر در حال استفاده‌است. سعی‌کنید هر برنامه‌ای که از آن استفاده می‌کنید خارج کنید." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "خطا به هنگام بازنمودن ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "درگاه سریال ''{0}'' یافت نشد. آیا شما درست آن را از منوی ابزارها > درگاه سریال انتخاب نموده‌اید؟" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "بافر بایت readBytesUntil() برای بیش از {0} بایت و شامل نویسهٔ {1} بسیار کوچک است" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "خطای درونی. {0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "قالب‌بندی خودکار" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "تغییری برای قالب‌بندی خودکار نیاز نیست." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "قالب‌بندی خودکار لغو گشت: پارانتز راست بیش از حدی وجود دارد." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "قالب‌بندی خودکار لغو گشت: پارانتز چپ بیش از حدی وجود دارد." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "قالب‌بندی خودکار لغو گشت: حلقهٔ راست بیش از حدی وجود دارد." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "قالب‌بندی خودکار لغو گشت: حلقهٔ چپ بیش از حدی وجود دارد." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "قالب‌بندی خودکار به پایان رسید." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "خطازدایی کدگذاری و بارگیری مجدد" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "بایگانی طرح" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "نمی‌توان طرح را بایگانی نمود" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"بایگانی‌کردن طرح فسخ‌گردید به این دلیل که\n" +"نمی‌توان طرح را به درستی ذخیره نمود." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "بایگانی‌کردن طرح به عنوان:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "بایگانی‌کردن طرح فسخ‌گردید." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "خطا به هنگام بارگیری کد {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "\"{0}\" شامل نویسه‌های ناشناخته‌است. اگر این کد با نسخه‌های قدیمی‌تر Processing درست‌شده‌است، شما احتمالاً نیازمند هستید که از Tools -> Fix Enconding & Reload برای به‌روزرسانی برای استفاده از کدگذاری UTF-8 استفاده کنید. وگرنه، شما ممکن‌است نیازمند حذف نویسه‌های نامناسب و برای رهایی از این اخطار شوید." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "طرح فقط خواندنی است" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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" +"شده‌اند، بنابراین شما نیازمند آن هستید که طرح دوباره در\n" +"محل دیگری ذخیره کنید و مجدداً تلاش نمایید." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "نام برای پروندهٔ جدید:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "طرح بی‌نام است" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"چطور است ابتدا طرح را بیش از تلاش برای نام‌گذاری\n" +"مجدد آن ذخیره کنیم؟" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "مشکل با نام‌گذاری مجدد" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "نام نمی‌تواند با یک نقطه آغار گردد." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" پسوند نامعتبری است." + +#: Sketch.java:378 +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 "" +"پروندهٔ اصلی نمی‌تواند دارای یک افزونه باشد.\n" +"(شاید زمان آن باشد که یک محیط «واقعی» برنامه‌نویسیرا مطالعه کنید)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "نفی" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "یک پروندهٔ نام‌گذاری شده با \"{0}\" در \"{1}\" موجود است" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "شما نمی‌توانید یک پروندهٔ .cpp با نام مشابه طرح داشته باشید." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"شما نمی‌توانید طرح را به \"{0}\" تغییر نام دهید\n" +"به این دلیل که طرح در حال حاضر دارای یک پروندهٔ .cpp با نام مشابه است." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "نمی‌توان نام‌گذاری مجدد کرد" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "شرمنده، یک طرح (یا پرونده) نام‌دهی شده با \"{0}\" در حال حاضر موجود است." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "نمی‌توان طرح را نام‌گذاری مجدد نمود. (۰)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "نمی‌توان \"{0}\" را به \"{1}\" تغییر نام داد." + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "نمی‌توان طرح را تغییر نام داد. (۱)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "نمی‌توان طرح را تغییر نام داد. (۲)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() مقدار فالس برگرداند" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "آیا شما مطمئن هستید که می‌خواهید این طرح را پاک کنید؟" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "آیا شما مطمئن هستید که می‌خواهید \"{0}\" را پاک کنید؟" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "حذف" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "نمی‌توانید انجامش دهید" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "نمی‌توانید \"{0}\" را پاک کرد." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: خطای درونی.. نمی‌توان کد را یافت" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "طرح فقط خواندی است" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"بعضی از پرونده‌ها \"read-only\" برچسپ‌گذاری شده‌اند، بنابراین شما\n" +"مجبور خواهید بود که این طرح را در مکانی دیگر مجدداً ذخیره‌کنید." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"در آردئینو ۱.۰، پشوند پیش‌فرض پرونده از .pde به .ino تغییر یافته.\n" +"طرج‌های جدید (شامل آن‌هایی که توسط «دخیره به عنوان» درست‌شده‌اند)\n" +"از پسوند جدید استفاده خواهند نمود. پسوند طرح‌های موجود در ذخیره\n" +"به‌روزرسانی خواهند شد ولی شما می‌توانید این را در ترجیحات غیرفعال سازید.\n" +"\n" +"ذخیره طرح و به‌روزرسانی پسوند؟" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "ذخیرهٔ پوشه طرح به عنوان..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "شما نمی‌توانید طرح را به‌عنوان \"{0}\" ذخیره‌سازید به این دلیل که طرح در حال حاضردارای یک پروندهٔ .cpp با نام مشابه است." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "چه بورخسی هستید شما" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"شما نمی‌توانید طرح را در درون پوشهٔ خودش ذخیره‌سازید\n" +"این شاید برای همیشه باشد." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "انتخاب یک تصویر یا سایر پرونده‌های داده‌ها برای رونوشت به طرح‌تان" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "جایگزینی نسخهٔ موجود از {0}؟" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "خطای افزودن پرونده" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "نمی‌توان پرونده موجود ''{0}'' را پاک نمود." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "شما نمی‌توانید فریبم دهید" + +#: Sketch.java:1079 +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 "" +"این پرونده در حال حاضر به موضعیتی که\n" +"شما می‌خواهید بیافزایید کپی‌شده‌است.\n" +"من کاری نمی‌کنم." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "نمی‌توان ''{0}'' را به طرح افزود." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "ساختن پوشه مخفی شده‌است یا نمی‌توان نوشته شود" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "نمی‌توان کلاس اصلی را یافت" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "خطای گرفته نشده از نوع: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "اشکال به‌هنگام انتقال {0} به پوشهٔ ساخت" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "بارگذاری..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "اندازهٔ باینری طرح: {0} بایت (از یک بیشینهٔ {1} بایتی)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "نمی‌توان اندازهٔ برنامه را تعیین نمود: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "اندازهٔ طرح بسیار بزرگ است؛ http://www.arduino.cc/en/Guide/Troubleshooting#size را برای راهنمایی‌هایی در رابطه کاهش آن ببینید." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "فقدان */ از انتهای یک /* توضیح */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "طرح ناپدید گشت" + +#: Sketch.java:1797 +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 "" +"پوشهٔ طرح ناپدید شده‌است.\n" +" تلاش خواهید که آن را در محل مشابه ذخیره نمود\n" +"ولی به‌علاوهٔ آن کد مفقود خواهد شد." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "نمی‌تواند طرح را مجدداً ذخیره نمود" + +#: Sketch.java:1811 +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" +"و شاید زمان آن باشد که کدتان را در ویرایشگر متنی دیگری رونوشت و پچسپانید. " + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"نام طرح می‌بایست که تغییریابد. نام‌های طرح فقط می‌بایست شامل نویسه‌های\n" +"ASCII و اعداد باشند (ولی با اعداد آغاز نگردند).\n" +"این‌ها می‌بایست کمتر از ۶۴ نویسه طول داشته باشند." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "خطای کامپایلر، لطفاً این کد را به {0} ارائه دهید" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "درگاه سریال انتخاب شده {0} موجود نیست یا برد شما متصل نشده‌است" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "دستگاه پاسخ‌گو نیست، درگاه سریال انتخاب شده را بررسی کنید یا برد درست قبل از خارج‌سازی RESET کنید" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "اشکال در بارگذاری به برد. http://www.arduino.cc/en/Guide/Troubleshooting#upload را برای پیشنهادات ببینید." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "میکروکنترلر اشتباهی یافت شد. آیا شما برد مناسبی از منوی ابزارها > برد انتخاب کرده‌اید؟" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "بردی انتخاب شده‌است؛ لطفاً یک برد از منوی ابزارها > برد انتخاب کنید." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0}،{1} را بازگرداند" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "خطای کامپایل" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "لطفاً کتابخانه SPI را از منوی طرح > درون‌سازی کتابخانه درون‌سازی کنید." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"از آردئینو ۰۰۱۹، کتابخانهٔ Ethernet به کتابخانهٔ SPI وابسته شده‌است.\n" +"شما ظاهراً از آن یا کتابخانهٔ دیگری که به کتابخانهٔ SPI وابسته‌است استفاده می‌کنید.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "کلیدواژهٔ 'BYTE' دیگر پشتیبانی نمی‌گردد." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"از آردئینو ۱.۰، کلیدواژه 'BYTE' دیگر پشتیبانی نمی‌گردد.\n" +"لطفاً از Serial.write() به جای آن استفاده نمایید.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "کلاس Server به EthernetServer تغییر نام پیدا کرده‌است." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"از آردئینو ۱.۰، کلاس سرور در کتابخانهٔ Ethernet به EthernetServer تغییرنام پیدا کرده‌است.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "کلاس Client به EthernetClient تغییر نام پیدا کرده‌است." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"از آردئینو ۱.۰، کلاس Client در کتابخانهٔ Ethernet به EthernetClient تغییر نام پیداکرده‌است.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "کلاس Udp به EthernetUdp تغییر نام پیدا کرده‌است." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"از آردئینو ۱.۰، کلاس Udp در کتابخانهٔ Ethernet به EthernetClient تغییرنام پیداکرده‌است.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() به Wire.write() تغییر نام پیداکرده‌است." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"از آردئینو ۱.۰، تابع Wire.send() به Wire.write() برای سازگاری با سایر کتابخانه‌ها تغییر نام پیداکرده‌است.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() به Wire.read() تغییرنام پیداکرده‌است." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"از آردئینو ۱.۰، تابع Wire.receive() به Wire.read() برای سازگاری بیشتر با سایر کتابخانه‌ها تغییر نام پیداکرده‌است.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "خطای کنسول" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"یک اشکال به‌هنگام سعی برای بازکردن پرونده‌های\n" +"استفاده شده برای ذخیره‌سازی خروجی کنسول رخ داد." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "خطای غیر وخیمی هنگام تنظیم ظاهر." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "پیغام خطا در ذیل آمده، هرچند آردئینو باید به درستی کار کند." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "اشکال تنظیم سکو" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"ایراد ناشناخته‌ای هنگام سعی در بارگیری رخ داد\n" +"کد خاص سکو برای ماشین شما." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "لطفاً JDK ۱.۵ یا بعدتر از آن را نصب کنید" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"آردئینو نیازمند یک JDK کامل (نه فقط یک JRE(\n" +"برای اجرا است. لطفاً JDK ۱.۵ یا بعد از آن را نصب کنید.\n" +"اطلاعات بیشتر را می‌توان در مرجع یافت." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "پوشهٔ کتاب طرح‌ها ناپدید شد" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"پوشهٔ کتاب طرح دیگر موجود نیست.\n" +"آردئنو محل کتاب طرح پیش‌فرض را انتخاب خواهد کرد\n" +"و پوشهٔ کتاب طرحی درست خواهد کرد اگر مورد نیاز\n" +"باشد. آردئینو صحبت کردن در رابطه با خود را به عنوان\n" +"سوم شخص را پایان می‌دهد." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "وقت برای استراحت" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"شما به محدودهٔ نام‌گذاری خودکار برای طرح‌های برای امروز\n" +"رسیده‌اید. چطور است به جای آن یک پیاده‌روی داشته باشید؟" + +#: Base.java:537 +msgid "Sunshine" +msgstr "طلوع" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "نه جداً، وقت مقداری هوای تازه‌است." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "یک طرح آردئینو را باز کن..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr " آیا مطمئن هستید که می‌خواهید خارج شوید؟

بستن آخرین طرح باز شده منجر به خارج‌شدن آردئینو خواهد شد." + +#: Base.java:970 +msgid "Contributed" +msgstr "کمک‌شده" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "طرح موجود نیست" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"طرح انتخاب شده دیگر موجود نیست.\n" +"شما می‌بایست آردئینو را برای به‌روزرسانی منوی\n" +"کتاب طرح بازگشایی مجدد کنید." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"طرح \"{0}\" نمی‌تواند استفاده گردد.\n" +"نام طرح‌ها می‌بایست فقط شامل حروف ساده و عددها باشند\n" +"(فقط ASCII بدون فاصله و نمی‌تواند با عدد شروع شود).\n" +"برای خلاص‌شدن از این پیغام، طرح را از {1} حذف نمایید." + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "نادیده گرفتن طرح با نام بد" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"کتابخانهٔ \"{0}\" نمی‌توان استفاده گردد.\n" +"نام کتابخانه فقط می‌بایست شامل حروف ساده و عدد باشد.\n" +"(فقط ASCII و بدون فاصله و نمی‌تواند با یک عدد شروع شود.)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "در نظر نگرفتن نام نامناسب کتابخانه" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "اشکال گرفتن پوشهٔ داده‌ها" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "خطای گرفتن پوشه اطلاعات آردئینو" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "مشکلات تنظیمات" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"آردئینو نمی‌تواند اجرا شود به این دلیل که نمی‌تواند\n" +"پوشه‌ای برای ذخیرهٔ تنظیمات شما بسازد." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "شما کتاب طرح‌تان را فراموش کرده‌اید" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"آردئینو نمی‌تواند اجرا شود به این دلیل که نمی‌تواند\n" +"پوشه‌ای برای ذخیرهٔ کتاب طرح‌تان بسازد." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "انتخاب (یا درست‌کردن جدید) پوشه برای طرح‌ها...." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "اشکال بازکردن URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"نمی‌توان URL را گشود\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "اشکال در بازکردن پوشه" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"نمی‌توان پوشه را گشود\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "محیط" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "پیغام" + +#: Base.java:1842 +msgid "Warning" +msgstr "اخطار" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "نمی‌توان نسخهٔ قدیمی {0} را حذف نمود" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "نمی‌توان {0} را جایگزین نمود" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "نمی‌توان {0} را حذف نمود" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "تب جدید" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "تغییرنام" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "تب قبل" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "تب بعد" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "بازبینی" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "بازکردن" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "پنجرهٔ جدید ویرایشی" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "بازکردن در پنجره‌ای دیگر" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "پرتاب‌کننده‌ای موجود نیست" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" +"سکوی نامشخص، پرتاب‌کننده‌ای موجود نیست.\n" +"برای فعال‌سازی بازکردن URLها یا پوشه‌ها، یک خط\"launcher=/path/to/app\" به preferences.txt بیافزایید." + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"نمی‌توان تنظیمات رنگ را خواند.\n" +"شما می‌بایست که Processing را مجدداً نصب نمایید." + +#: Preferences.java:80 +msgid "Browse" +msgstr "یافتن" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"نمی‌توان تنظیمات پیش‌فرض را خواند.\n" +"شما می‌بایست که آردئینو را مجدداً نصب کنید." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "نمی‌توان ترجیحات را از {0} خواند" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "خطای خواندن ترجیحات" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"خطای به هنگام خواندن پروندهٔ ترجیحات. لطفاً {0} را حذف (یا انتفال)\n" +"و آردئینو را بازگشایی مجدد کنید." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "موقعیت کتاب طرح:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "موقعیت جدید کتاب را انتخاب کنید" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (نیازمند بازگشایی مجدد نمودن اردئینو)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "اندازهٔ قلم ویرایشگر" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "نمایش خروجی پرگو به هنگام:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "کامپایل‌نمودن" + +#: Preferences.java:375 +msgid "upload" +msgstr "بارگذاری" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "استفاده از ویرایش‌گر خارجی" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "بررسی برای به‌روزرسانی‌ها در ابتدای بالا آمدن" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "به‌روزرسانی پرونده طرح به یک پسوند جدید به هنگام ذخیره‌سازی (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "اختصاص خودکار پرونده‌های .ino با آردئینو" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "ترجیحات بیشتر می‌توانند مستقیماً درون یک پروندهٔ ویرایش گردند" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(ویرایش فقط به هنگامی که آردئینو درحال اجرا نیست)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "درنظر نگرفتن اندازهٔ قلم نامناسب {0}" diff --git a/app/src/processing/app/Resources_fa.properties b/app/src/processing/app/Resources_fa.properties new file mode 100644 index 000000000..4ec31c8ca --- /dev/null +++ b/app/src/processing/app/Resources_fa.properties @@ -0,0 +1,1034 @@ +# Persian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Ebrahim Byagowi , 2012. +# +!=Project-Id-Version\: Arduino 1.01\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-30 16\:19+0330\nLast-Translator\: \nLanguage-Team\: Persian\nLanguage\: fa\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0627\u06cc \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0646\u0634\u062f. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647 \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0634\u062f. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} \u067e\u0631\u0648\u0646\u062f\u0647 \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f\u0647 \u0634\u062f. + +#: Editor.java:484 +File=\u067e\u0631\u0648\u0646\u062f\u0647 + +#: Editor.java:486 EditorToolbar.java:41 +New=\u062c\u062f\u06cc\u062f + +#: Editor.java:494 Base.java:903 +Open...=\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646.... + +#: Editor.java:503 +Sketchbook=\u06a9\u062a\u0627\u0628 \u0637\u0631\u062d + +#: Editor.java:509 +Examples=\u0646\u0645\u0648\u0646\u0647\u200c\u0647\u0627 + +#: Editor.java:514 Editor.java:1977 +Close=\u06cc\u0633\u062a\u0646 + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u0630\u062e\u06cc\u0631\u0647 + +#: Editor.java:530 +Save\ As...=\u0630\u062e\u06cc\u0631\u0647 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646.... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u06a9\u0645\u06a9 \u067e\u0631\u0648\u06af\u0631\u0627\u0645\u0631 + +#: Editor.java:556 +Page\ Setup=\u062a\u0646\u0638\u06cc\u0645 \u0635\u0641\u062d\u0647 + +#: Editor.java:564 +Print=\u0686\u0627\u067e + +#: Editor.java:576 Preferences.java:279 +Preferences=\u062a\u0631\u062c\u06cc\u062d\u0627\u062a + +#: Editor.java:586 Base.java:782 +Quit=\u062e\u0631\u0648\u062c + +#: Editor.java:600 +Sketch=\u0637\u0631\u062d + +#: Editor.java:602 +Verify\ /\ Compile=\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc / \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644 + +#: Editor.java:629 +Import\ Library...=\u0648\u0627\u0631\u062f\u0633\u0627\u0632\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647... + +#: Editor.java:634 +Show\ Sketch\ Folder=\u0646\u0645\u0627\u06cc\u0634 \u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d + +#: Editor.java:643 +Add\ File...=\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647... + +#: Editor.java:656 +Tools=\u0627\u0628\u0632\u0627\u0631\u0647\u0627 + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u0646\u0645\u0627\u06cc\u0634\u06af\u0631 \u0633\u0631\u06cc\u0627\u0644 + +#: Editor.java:682 +Board=\u0628\u0631\u062f + +#: Editor.java:690 +Serial\ Port=\u067e\u0648\u0631\u062a \u0633\u0631\u06cc\u0627\u0644 + +#: Editor.java:695 +Programmer=\u067e\u0631\u0648\u06af\u0631\u0627\u0645\u0631 + +#: Editor.java:699 +Burn\ Bootloader=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631 + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu \u062a\u0647\u06cc \u0627\u0633\u062a + +#: Editor.java:927 Editor.java:934 +name\ is\ null=name \u062a\u0647\u06cc \u0627\u0633\u062a + +#: Editor.java:986 +error\ retrieving\ port\ list=\u062e\u0637\u0627\u06cc \u0628\u0627\u0632\u06cc\u0627\u0628\u06cc \u0641\u0647\u0631\u0633\u062a \u062f\u0631\u06af\u0627\u0647\u200c\u0647\u0627 + +#: Editor.java:1002 +Help=\u06a9\u0645\u06a9 + +#: Editor.java:1041 +Getting\ Started=\u0634\u0631\u0648\u0639 \u06a9\u0627\u0631 + +#: Editor.java:1049 +Environment=\u0645\u062d\u06cc\u0637 + +#: Editor.java:1057 +Troubleshooting=\u062e\u0637\u0627\u06cc\u0627\u0628\u06cc + +#: Editor.java:1065 +Reference=\u0645\u0631\u062c\u0639 + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u06cc\u0627\u0641\u062a\u0646 \u062f\u0631 \u0645\u0631\u062c\u0639 + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u0633\u0648\u0627\u0644\u200c\u0647\u0627\u06cc \u0645\u062a\u062f\u0627\u0648\u0644 \u067e\u0631\u0633\u06cc\u062f\u0647\u200c\u0634\u062f\u0647 + +#: Editor.java:1091 +Visit\ Arduino.cc=\u0628\u0627\u0632\u062f\u06cc\u062f Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u062f\u0631\u0628\u0627\u0631\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 + +#: Editor.java:1116 +Edit=\u0648\u06cc\u0631\u0627\u06cc\u0634 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u06cc + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u0627\u0646\u062c\u0627\u0645 \u062f\u0648\u0628\u0627\u0631\u0647 + +#: Editor.java:1135 Editor.java:2652 +Cut=\u0628\u0631\u06cc\u062f\u0646 + +#: Editor.java:1143 Editor.java:2660 +Copy=\u0631\u0648\u0646\u0648\u0634\u062a + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0631\u0627\u06cc \u062a\u0627\u0644\u0627\u0631 \u06af\u0641\u062a\u06af\u0648 + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=\u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0627\u0686\u200c\u062a\u06cc\u200c\u0627\u0645\u200c\u0627\u0644 + +#: Editor.java:1175 Editor.java:2684 +Paste=\u0627\u0644\u0633\u0627\u0642 + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u062a\u0648\u0636\u06cc\u062d\u200c\u06a9\u0631\u062f\u0646/\u0627\u0632 \u062a\u0648\u0636\u06cc\u062d \u062f\u0631 \u0622\u0648\u0631\u062f\u0646 + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u0627\u0641\u0632\u0627\u06cc\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc + +#: Editor.java:1220 +Find...=\u06cc\u0627\u0641\u062a\u0646... + +#: Editor.java:1235 +Find\ Next=\u06cc\u0627\u0641\u062a\u0646 \u0628\u0639\u062f\u06cc + +#: Editor.java:1245 +Find\ Previous=\u06cc\u0627\u0641\u062a\u0646 \u0642\u0628\u0644\u06cc + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06af\u0632\u06cc\u0646\u0634 \u0628\u0631\u0627\u06cc \u06cc\u0627\u0641\u062a\u0646 + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u0627\u0628\u062a\u062f\u0627 \u0644\u063a\u062a\u06cc \u0628\u0631\u0627\u06cc \u06cc\u0627\u0641\u062a\u0646 \u062f\u0631 \u0645\u0631\u062c\u0639 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=\u0645\u0631\u062c\u0639\u06cc \u0628\u0631\u0627\u06cc "{0}" \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u200c\u06a9\u0631\u062f\u0646 \u0637\u0631\u062d... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u0627\u0646\u062c\u0627\u0645 \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644 \u06a9\u0631\u062f\u0646. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u0630\u062e\u06cc\u0631\u0647\u0654 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 "{0}"? + +#: Editor.java:2006 +\ \ 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.= \u0622\u06cc\u0627 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0628\u0647 \u0627\u06cc\u0646 \u0637\u0631\u062d
\u067e\u06cc\u0634 \u0627\u0632 \u0628\u0633\u062a\u0646 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f\u061f

\u0627\u06af\u0631 \u0634\u0645\u0627 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a\u062a\u0627\u0646 \u06af\u0645 \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u0641\u0633\u062e\u200c\u06a9\u0631\u062f\u0646 + +#: Editor.java:2017 +Don't\ Save=\u0630\u062e\u06cc\u0631\u0647 \u0646\u06a9\u0646 + +#: Editor.java:2089 +Bad\ file\ selected=\u067e\u0631\u0648\u0646\u062f\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647\u0654 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing \u0641\u0642\u0637 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0637\u0631\u062d\u200c\u0647\u0627\u06cc \u062e\u0648\u062f\u0634 \u0631\u0627 \u0628\u0627\u0632 \u06a9\u0646\u062f\n\u0648 \u0633\u0627\u06cc\u0631 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u0628\u0627 .ino \u06cc\u0627 .pde \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc\u200c\u067e\u0630\u06cc\u0631\u0646\u062f + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=\u0627\u0648\u06a9\u06cc + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u067e\u0631\u0648\u0646\u062f\u0647 "{0}" \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u062f\u0627\u062e\u0644 \u06cc\u06a9\n\u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d \u0628\u0647 \u0646\u0627\u0645 "{1}" \u0630\u062e\u06cc\u0631\u0647 \u06af\u0631\u062f\u0646\u062f.\n\u0633\u0627\u062e\u062a\u0646 \u0627\u06cc\u0646 \u067e\u0648\u0634\u0647\u060c \u0627\u0646\u062a\u0642\u0627\u0644 \u067e\u0631\u0648\u0646\u062f\u0647 \u0648 \u0627\u062f\u0627\u0645\u0647\u061f + +#: Editor.java:2109 +Moving=\u0627\u0646\u062a\u0642\u0627\u0644 + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u062e\u0637\u0627 + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u06cc\u06a9 \u067e\u0648\u0634\u0647 \u0628\u0647 \u0646\u0627\u0645 "{0}" \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a. \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0627\u0632 \u0646\u0645\u0648\u062f. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u0646\u0645\u0648\u062f. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0628\u0647 \u06cc\u06a9 \u0645\u06a9\u0627\u0646 \u0645\u0646\u0627\u0633\u0628 \u06a9\u067e\u06cc \u0646\u0645\u0648\u062f. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0627\u06cc\u062c\u0627\u062f \u0646\u0645\u0648\u062f. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc.... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f. + +#: Editor.java:2270 +Save\ Canceled.=\u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc \u0641\u0633\u062e \u06af\u0634\u062a. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 {0} \u06cc\u0627\u0641\u062a \u0646\u0634\u062f.\n\u0627\u0646\u062c\u0627\u0645 \u0645\u062c\u062f\u062f \u0628\u0627\u06af\u0630\u0627\u0631\u06cc \u0628\u0627 \u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644\u06cc \u062f\u06cc\u06af\u0631\u061f + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0628\u0631\u062f I/O... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0646\u062c\u0627\u0645\u200c\u0634\u062f. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0627\u0628\u0637\u0627\u0644 \u06af\u0634\u062a. + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u0630\u062e\u06cc\u0631\u0647\u0654 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u067e\u06cc\u0634 \u0627\u0632 \u062e\u0627\u0631\u062c\u200c\u0633\u0627\u0632\u06cc\u061f + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u062e\u0627\u0631\u062c\u200c\u0633\u0627\u0632\u06cc \u0641\u0633\u062e\u200c\u06af\u0631\u062f\u06cc\u062f\u060c \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0627\u0628\u062a\u062f\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0630\u062e\u06cc\u0631\u0647 \u06af\u0631\u062f\u0646\u062f. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 bootleader \u0628\u0647 \u0628\u0631\u062f I/O (\u0627\u06cc\u0646 \u0645\u0645\u06a9\u0646 \u0627\u0633\u062a \u06cc\u06a9 \u062f\u0642\u06cc\u0642\u0647 \u0628\u0647 \u0637\u0648\u0644 \u0628\u06cc\u0627\u0646\u062c\u0627\u0645\u062f)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631 \u0627\u0646\u062c\u0627\u0645 \u06af\u0631\u062f\u06cc\u062f. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u062e\u0637\u0627\u06cc \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0633\u0648\u0632\u0627\u0646\u062f\u0646 \u0628\u0648\u062a\u200c\u0644\u0648\u062f\u0631. + +#: Editor.java:2500 +Printing...=\u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646... + +#: Editor.java:2517 +Done\ printing.=\u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646 \u0628\u0647 \u0627\u0646\u062c\u0627\u0645 \u0631\u0633\u06cc\u062f. + +#: Editor.java:2520 +Error\ while\ printing.=\u062e\u0637\u0627 \u0647\u0646\u06af\u0627\u0645 \u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646. + +#: Editor.java:2524 +Printing\ canceled.=\u0686\u0627\u067e \u0627\u0628\u0637\u0627\u0644 \u06af\u0634\u062a. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\u062e\u0637\u0627\u06cc \u0646\u0627\u0645\u0646\u0627\u0633\u0628 \u062e\u0637\: {0} + +#: Editor.java:2641 +Open\ URL=\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0646\u0633\u062e\u0647\u0654 \u062c\u062f\u06cc\u062f \u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a\u060c\n\u0645\u0627\u06cc\u0644 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0635\u0641\u062d\u0647\u0654 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0645\u0634\u0627\u0647\u062f\u0647 \u06a9\u0646\u06cc\u062f\u061f + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u0628\u0644\u0647 + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u062e\u06cc\u0631 + +#: UpdateCheck.java:111 +Update=\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\u06cc\u0627\u0641\u062a\u0646\: + +#: FindReplace.java:81 +Replace\ with\:=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0646\: + +#: FindReplace.java:96 +Ignore\ Case=\u0646\u0627\u062f\u06cc\u062f\u0647\u200c\u06af\u0631\u0641\u062a\u0646 \u0628\u0632\u0631\u06af\u06cc/\u06a9\u0648\u0686\u06a9\u06cc + +#: FindReplace.java:105 +Wrap\ Around=\u067e\u0648\u0634\u0627\u0646\u062f\u0646 \u0627\u0637\u0631\u0627\u0641 + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0647\u0645\u0647 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0648 \u06cc\u0627\u0641\u062a\u0646 + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u0642\u0628\u0644\u06cc + +#: FindReplace.java:124 FindReplace.java:127 +Find=\u06cc\u0627\u0641\u062a\u0646 + +#: SerialMonitor.java:93 +Send=\u0627\u0631\u0633\u0627\u0644 + +#: SerialMonitor.java:110 +Autoscroll=\u062d\u0631\u06a9\u062a\u200c\u062e\u0648\u062f\u06a9\u0627\u0631 + +#: SerialMonitor.java:112 +No\ line\ ending=\u0628\u062f\u0648\u0646 \u067e\u0627\u06cc\u0627\u0646 \u062e\u0637 + +#: SerialMonitor.java:112 +Newline=\u062e\u0637 \u062c\u062f\u06cc\u062f + +#: SerialMonitor.java:112 +Carriage\ return=\u0628\u0627\u0632\u06af\u0634\u062a Carriage + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=\u0647\u0631 \u062f\u0648\u06cc NL \u0648 CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ \u067e\u0647\u0646\u0627 + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 ''{0}'' \u062f\u0631\u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0631 \u062d\u0627\u0644 \u0627\u0633\u062a\u0641\u0627\u062f\u0647\u200c\u0627\u0633\u062a. \u0633\u0639\u06cc\u200c\u06a9\u0646\u06cc\u062f \u0647\u0631 \u0628\u0631\u0646\u0627\u0645\u0647\u200c\u0627\u06cc \u06a9\u0647 \u0627\u0632 \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u062f \u062e\u0627\u0631\u062c \u06a9\u0646\u06cc\u062f. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0628\u0627\u0632\u0646\u0645\u0648\u062f\u0646 ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 ''{0}'' \u06cc\u0627\u0641\u062a \u0646\u0634\u062f. \u0622\u06cc\u0627 \u0634\u0645\u0627 \u062f\u0631\u0633\u062a \u0622\u0646 \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 \u0627\u0646\u062a\u062e\u0627\u0628 \u0646\u0645\u0648\u062f\u0647\u200c\u0627\u06cc\u062f\u061f + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=\u0628\u0627\u0641\u0631 \u0628\u0627\u06cc\u062a readBytesUntil() \u0628\u0631\u0627\u06cc \u0628\u06cc\u0634 \u0627\u0632 {0} \u0628\u0627\u06cc\u062a \u0648 \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u0654 {1} \u0628\u0633\u06cc\u0627\u0631 \u06a9\u0648\u0686\u06a9 \u0627\u0633\u062a + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=\u062e\u0637\u0627\u06cc \u062f\u0631\u0648\u0646\u06cc. {0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u062a\u063a\u06cc\u06cc\u0631\u06cc \u0628\u0631\u0627\u06cc \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0646\u06cc\u0627\u0632 \u0646\u06cc\u0633\u062a. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u06af\u0634\u062a\: \u067e\u0627\u0631\u0627\u0646\u062a\u0632 \u0631\u0627\u0633\u062a \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u06af\u0634\u062a\: \u067e\u0627\u0631\u0627\u0646\u062a\u0632 \u0686\u067e \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u06af\u0634\u062a\: \u062d\u0644\u0642\u0647\u0654 \u0631\u0627\u0633\u062a \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0644\u063a\u0648 \u06af\u0634\u062a\: \u062d\u0644\u0642\u0647\u0654 \u0686\u067e \u0628\u06cc\u0634 \u0627\u0632 \u062d\u062f\u06cc \u0648\u062c\u0648\u062f \u062f\u0627\u0631\u062f. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0647 \u067e\u0627\u06cc\u0627\u0646 \u0631\u0633\u06cc\u062f. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u062e\u0637\u0627\u0632\u062f\u0627\u06cc\u06cc \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc \u0648 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0645\u062c\u062f\u062f + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u062f\u0648\u0631\u0627\u0646\u062f\u0627\u062e\u062a\u0646 \u0647\u0645\u0647\u0654 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0648 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0645\u062c\u062f\u062f \u0637\u0631\u062d\u061f + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u062e\u0637\u0627\u06cc\u06cc \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u0627\u0635\u0644\u0627\u062d \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc \u067e\u0631\u0648\u0646\u062f\u0647 \u0631\u062e\u200c\u062f\u0627\u062f.\n\u0633\u0639\u06cc \u0646\u06a9\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0631 \u0631\u0648\u06cc \u0646\u0633\u062e\u0647\u0654 \u0642\u0628\u0644\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u06a9\u0646\u06cc\u062f.\n\u0627\u0632 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0631\u0627 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u0645\u062c\u062f\u062f \u0637\u0631\u062d \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f \u0648 \u062f\u0648\u0628\u0627\u0631\u0647 \u0633\u0639\u06cc \u0646\u0645\u0627\u06cc\u06cc\u062f.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0637\u0631\u062d + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0646\u0645\u0648\u062f + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0637\u0631\u062d \u0641\u0633\u062e\u200c\u06af\u0631\u062f\u06cc\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647\n\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0647 \u062f\u0631\u0633\u062a\u06cc \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0637\u0631\u062d \u0628\u0647 \u0639\u0646\u0648\u0627\u0646\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\u0628\u0627\u06cc\u06af\u0627\u0646\u06cc\u200c\u06a9\u0631\u062f\u0646 \u0637\u0631\u062d \u0641\u0633\u062e\u200c\u06af\u0631\u062f\u06cc\u062f. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u06a9\u062f {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647\u200c\u0627\u0633\u062a. \u0627\u06af\u0631 \u0627\u06cc\u0646 \u06a9\u062f \u0628\u0627 \u0646\u0633\u062e\u0647\u200c\u0647\u0627\u06cc \u0642\u062f\u06cc\u0645\u06cc\u200c\u062a\u0631 Processing \u062f\u0631\u0633\u062a\u200c\u0634\u062f\u0647\u200c\u0627\u0633\u062a\u060c \u0634\u0645\u0627 \u0627\u062d\u062a\u0645\u0627\u0644\u0627\u064b \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0627\u0632 Tools -> Fix Enconding & Reload \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06a9\u062f\u06af\u0630\u0627\u0631\u06cc UTF-8 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06a9\u0646\u06cc\u062f. \u0648\u06af\u0631\u0646\u0647\u060c \u0634\u0645\u0627 \u0645\u0645\u06a9\u0646\u200c\u0627\u0633\u062a \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u062d\u0630\u0641 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc \u0646\u0627\u0645\u0646\u0627\u0633\u0628 \u0648 \u0628\u0631\u0627\u06cc \u0631\u0647\u0627\u06cc\u06cc \u0627\u0632 \u0627\u06cc\u0646 \u0627\u062e\u0637\u0627\u0631 \u0634\u0648\u06cc\u062f. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\u0637\u0631\u062d \u0641\u0642\u0637 \u062e\u0648\u0627\u0646\u062f\u0646\u06cc \u0627\u0633\u062a + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u0628\u0639\u0636\u06cc \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646 \u00ab\u0641\u0642\u0637 \u062e\u0648\u0627\u0646\u062f\u0646\u06cc\u00bb \u0628\u0631\u0686\u0633\u067e\u200c\u06af\u0630\u0627\u0631\u06cc\n\u0634\u062f\u0647\u200c\u0627\u0646\u062f\u060c \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646 \u0634\u0645\u0627 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0622\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0637\u0631\u062d \u062f\u0648\u0628\u0627\u0631\u0647 \u062f\u0631\n\u0645\u062d\u0644 \u062f\u06cc\u06af\u0631\u06cc \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u062f \u0648 \u0645\u062c\u062f\u062f\u0627\u064b \u062a\u0644\u0627\u0634 \u0646\u0645\u0627\u06cc\u06cc\u062f. + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u062c\u062f\u06cc\u062f\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=\u0637\u0631\u062d \u0628\u06cc\u200c\u0646\u0627\u0645 \u0627\u0633\u062a + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u0686\u0637\u0648\u0631 \u0627\u0633\u062a \u0627\u0628\u062a\u062f\u0627 \u0637\u0631\u062d \u0631\u0627 \u0628\u06cc\u0634 \u0627\u0632 \u062a\u0644\u0627\u0634 \u0628\u0631\u0627\u06cc \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc\n\u0645\u062c\u062f\u062f \u0622\u0646 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646\u06cc\u0645\u061f + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\u0645\u0634\u06a9\u0644 \u0628\u0627 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0645\u062c\u062f\u062f + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=\u0646\u0627\u0645 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0628\u0627 \u06cc\u06a9 \u0646\u0642\u0637\u0647 \u0622\u063a\u0627\u0631 \u06af\u0631\u062f\u062f. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \u067e\u0633\u0648\u0646\u062f \u0646\u0627\u0645\u0639\u062a\u0628\u0631\u06cc \u0627\u0633\u062a. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u0627\u0635\u0644\u06cc \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u0627\u0641\u0632\u0648\u0646\u0647 \u0628\u0627\u0634\u062f.\n(\u0634\u0627\u06cc\u062f \u0632\u0645\u0627\u0646 \u0622\u0646 \u0628\u0627\u0634\u062f \u06a9\u0647 \u06cc\u06a9 \u0645\u062d\u06cc\u0637 \u00ab\u0648\u0627\u0642\u0639\u06cc\u00bb \u0628\u0631\u0646\u0627\u0645\u0647\u200c\u0646\u0648\u06cc\u0633\u06cc\u0631\u0627 \u0645\u0637\u0627\u0644\u0639\u0647 \u06a9\u0646\u06cc\u062f) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\u0646\u0641\u06cc + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647 \u0628\u0627 "{0}" \u062f\u0631 "{1}" \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 .cpp \u0628\u0627 \u0646\u0627\u0645 \u0645\u0634\u0627\u0628\u0647 \u0637\u0631\u062d \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f. + +#: Sketch.java:425 +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:459 +Cannot\ Rename=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0645\u062c\u062f\u062f \u06a9\u0631\u062f + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0634\u0631\u0645\u0646\u062f\u0647\u060c \u06cc\u06a9 \u0637\u0631\u062d (\u06cc\u0627 \u067e\u0631\u0648\u0646\u062f\u0647) \u0646\u0627\u0645\u200c\u062f\u0647\u06cc \u0634\u062f\u0647 \u0628\u0627 "{0}" \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0645\u0648\u062c\u0648\u062f \u0627\u0633\u062a. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u0645\u062c\u062f\u062f \u0646\u0645\u0648\u062f. (\u06f0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 "{0}" \u0631\u0627 \u0628\u0647 "{1}" \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0627\u062f. + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0627\u062f. (\u06f1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0627\u062f. (\u06f2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() \u0645\u0642\u062f\u0627\u0631 \u0641\u0627\u0644\u0633 \u0628\u0631\u06af\u0631\u062f\u0627\u0646\u062f + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0646\u06cc\u062f\u061f + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0622\u06cc\u0627 \u0634\u0645\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f "{0}" \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0646\u06cc\u062f\u061f + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u062d\u0630\u0641 + +#: Sketch.java:620 +Couldn't\ do\ it=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u0646\u062c\u0627\u0645\u0634 \u062f\u0647\u06cc\u062f + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f "{0}" \u0631\u0627 \u067e\u0627\u06a9 \u06a9\u0631\u062f. + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u062e\u0637\u0627\u06cc \u062f\u0631\u0648\u0646\u06cc.. \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u06a9\u062f \u0631\u0627 \u06cc\u0627\u0641\u062a + +#: Sketch.java:724 +Sketch\ is\ read-only=\u0637\u0631\u062d \u0641\u0642\u0637 \u062e\u0648\u0627\u0646\u062f\u06cc \u0627\u0633\u062a + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u0628\u0639\u0636\u06cc \u0627\u0632 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627 "read-only" \u0628\u0631\u0686\u0633\u067e\u200c\u06af\u0630\u0627\u0631\u06cc \u0634\u062f\u0647\u200c\u0627\u0646\u062f\u060c \u0628\u0646\u0627\u0628\u0631\u0627\u06cc\u0646 \u0634\u0645\u0627\n\u0645\u062c\u0628\u0648\u0631 \u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u0648\u062f \u06a9\u0647 \u0627\u06cc\u0646 \u0637\u0631\u062d \u0631\u0627 \u062f\u0631 \u0645\u06a9\u0627\u0646\u06cc \u062f\u06cc\u06af\u0631 \u0645\u062c\u062f\u062f\u0627\u064b \u0630\u062e\u06cc\u0631\u0647\u200c\u06a9\u0646\u06cc\u062f. + +#: Sketch.java:743 +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?=\u062f\u0631 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u067e\u0634\u0648\u0646\u062f \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u067e\u0631\u0648\u0646\u062f\u0647 \u0627\u0632 .pde \u0628\u0647 .ino \u062a\u063a\u06cc\u06cc\u0631 \u06cc\u0627\u0641\u062a\u0647.\n\u0637\u0631\u062c\u200c\u0647\u0627\u06cc \u062c\u062f\u06cc\u062f (\u0634\u0627\u0645\u0644 \u0622\u0646\u200c\u0647\u0627\u06cc\u06cc \u06a9\u0647 \u062a\u0648\u0633\u0637 \u00ab\u062f\u062e\u06cc\u0631\u0647 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646\u00bb \u062f\u0631\u0633\u062a\u200c\u0634\u062f\u0647\u200c\u0627\u0646\u062f)\n\u0627\u0632 \u067e\u0633\u0648\u0646\u062f \u062c\u062f\u06cc\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u062e\u0648\u0627\u0647\u0646\u062f \u0646\u0645\u0648\u062f. \u067e\u0633\u0648\u0646\u062f \u0637\u0631\u062d\u200c\u0647\u0627\u06cc \u0645\u0648\u062c\u0648\u062f \u062f\u0631 \u0630\u062e\u06cc\u0631\u0647\n\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u062e\u0648\u0627\u0647\u0646\u062f \u0634\u062f \u0648\u0644\u06cc \u0634\u0645\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0627\u06cc\u0646 \u0631\u0627 \u062f\u0631 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a \u063a\u06cc\u0631\u0641\u0639\u0627\u0644 \u0633\u0627\u0632\u06cc\u062f.\n\n\u0630\u062e\u06cc\u0631\u0647 \u0637\u0631\u062d \u0648 \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u067e\u0633\u0648\u0646\u062f\u061f + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=\u0630\u062e\u06cc\u0631\u0647\u0654 \u067e\u0648\u0634\u0647 \u0637\u0631\u062d \u0628\u0647 \u0639\u0646\u0648\u0627\u0646... + +#: Sketch.java:865 +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. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=\u0686\u0647 \u0628\u0648\u0631\u062e\u0633\u06cc \u0647\u0633\u062a\u06cc\u062f \u0634\u0645\u0627 + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0627\u0646\u062a\u062e\u0627\u0628 \u06cc\u06a9 \u062a\u0635\u0648\u06cc\u0631 \u06cc\u0627 \u0633\u0627\u06cc\u0631 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc \u062f\u0627\u062f\u0647\u200c\u0647\u0627 \u0628\u0631\u0627\u06cc \u0631\u0648\u0646\u0648\u0634\u062a \u0628\u0647 \u0637\u0631\u062d\u200c\u062a\u0627\u0646 + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0646\u0633\u062e\u0647\u0654 \u0645\u0648\u062c\u0648\u062f \u0627\u0632 {0}\u061f + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=\u062e\u0637\u0627\u06cc \u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u0645\u0648\u062c\u0648\u062f ''{0}'' \u0631\u0627 \u067e\u0627\u06a9 \u0646\u0645\u0648\u062f. + +#: Sketch.java:1078 +You\ can't\ fool\ me=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0641\u0631\u06cc\u0628\u0645 \u062f\u0647\u06cc\u062f + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0627\u06cc\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u0645\u0648\u0636\u0639\u06cc\u062a\u06cc \u06a9\u0647\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u06cc\u0627\u0641\u0632\u0627\u06cc\u06cc\u062f \u06a9\u067e\u06cc\u200c\u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n\u0645\u0646 \u06a9\u0627\u0631\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0645. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 ''{0}'' \u0631\u0627 \u0628\u0647 \u0637\u0631\u062d \u0627\u0641\u0632\u0648\u062f. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0633\u0627\u062e\u062a\u0646 \u067e\u0648\u0634\u0647 \u0645\u062e\u0641\u06cc \u0634\u062f\u0647\u200c\u0627\u0633\u062a \u06cc\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0648\u0634\u062a\u0647 \u0634\u0648\u062f + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u06a9\u0644\u0627\u0633 \u0627\u0635\u0644\u06cc \u0631\u0627 \u06cc\u0627\u0641\u062a + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=\u062e\u0637\u0627\u06cc \u06af\u0631\u0641\u062a\u0647 \u0646\u0634\u062f\u0647 \u0627\u0632 \u0646\u0648\u0639\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=\u0627\u0634\u06a9\u0627\u0644 \u0628\u0647\u200c\u0647\u0646\u06af\u0627\u0645 \u0627\u0646\u062a\u0642\u0627\u0644 {0} \u0628\u0647 \u067e\u0648\u0634\u0647\u0654 \u0633\u0627\u062e\u062a + +#: Sketch.java:1661 +Uploading...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0628\u0627\u06cc\u0646\u0631\u06cc \u0637\u0631\u062d\: {0} \u0628\u0627\u06cc\u062a (\u0627\u0632 \u06cc\u06a9 \u0628\u06cc\u0634\u06cc\u0646\u0647\u0654 {1} \u0628\u0627\u06cc\u062a\u06cc) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0628\u0631\u0646\u0627\u0645\u0647 \u0631\u0627 \u062a\u0639\u06cc\u06cc\u0646 \u0646\u0645\u0648\u062f\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0637\u0631\u062d \u0628\u0633\u06cc\u0627\u0631 \u0628\u0632\u0631\u06af \u0627\u0633\u062a\u061b http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0631\u0627 \u0628\u0631\u0627\u06cc \u0631\u0627\u0647\u0646\u0645\u0627\u06cc\u06cc\u200c\u0647\u0627\u06cc\u06cc \u062f\u0631 \u0631\u0627\u0628\u0637\u0647 \u06a9\u0627\u0647\u0634 \u0622\u0646 \u0628\u0628\u06cc\u0646\u06cc\u062f. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u0641\u0642\u062f\u0627\u0646 */ \u0627\u0632 \u0627\u0646\u062a\u0647\u0627\u06cc \u06cc\u06a9 /* \u062a\u0648\u0636\u06cc\u062d */ + +#: Sketch.java:1796 +Sketch\ Disappeared=\u0637\u0631\u062d \u0646\u0627\u067e\u062f\u06cc\u062f \u06af\u0634\u062a + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u067e\u0648\u0634\u0647\u0654 \u0637\u0631\u062d \u0646\u0627\u067e\u062f\u06cc\u062f \u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n \u062a\u0644\u0627\u0634 \u062e\u0648\u0627\u0647\u06cc\u062f \u06a9\u0647 \u0622\u0646 \u0631\u0627 \u062f\u0631 \u0645\u062d\u0644 \u0645\u0634\u0627\u0628\u0647 \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f\n\u0648\u0644\u06cc \u0628\u0647\u200c\u0639\u0644\u0627\u0648\u0647\u0654 \u0622\u0646 \u06a9\u062f \u0645\u0641\u0642\u0648\u062f \u062e\u0648\u0627\u0647\u062f \u0634\u062f. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0637\u0631\u062d \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f + +#: Sketch.java:1811 +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.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0637\u0631\u062d \u0631\u0627 \u0628\u0647 \u062f\u0631\u0633\u062a\u06cc \u0645\u062c\u062f\u062f\u0627\u064b \u0630\u062e\u06cc\u0631\u0647 \u0646\u0645\u0648\u062f. \u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u062f\u0631 \u0645\u0634\u06a9\u0644 \u0628\u0627\u0634\u06cc\u062f \u062f\u0631 \u0646\u0642\u0637\u0647\u060c\n\u0648 \u0634\u0627\u06cc\u062f \u0632\u0645\u0627\u0646 \u0622\u0646 \u0628\u0627\u0634\u062f \u06a9\u0647 \u06a9\u062f\u062a\u0627\u0646 \u0631\u0627 \u062f\u0631 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0645\u062a\u0646\u06cc \u062f\u06cc\u06af\u0631\u06cc \u0631\u0648\u0646\u0648\u0634\u062a \u0648 \u067e\u0686\u0633\u067e\u0627\u0646\u06cc\u062f. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0646\u0627\u0645 \u0637\u0631\u062d \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 \u062a\u063a\u06cc\u06cc\u0631\u06cc\u0627\u0628\u062f. \u0646\u0627\u0645\u200c\u0647\u0627\u06cc \u0637\u0631\u062d \u0641\u0642\u0637 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0634\u0627\u0645\u0644 \u0646\u0648\u06cc\u0633\u0647\u200c\u0647\u0627\u06cc\nASCII \u0648 \u0627\u0639\u062f\u0627\u062f \u0628\u0627\u0634\u0646\u062f (\u0648\u0644\u06cc \u0628\u0627 \u0627\u0639\u062f\u0627\u062f \u0622\u063a\u0627\u0632 \u0646\u06af\u0631\u062f\u0646\u062f).\n\u0627\u06cc\u0646\u200c\u0647\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0645\u062a\u0631 \u0627\u0632 \u06f6\u06f4 \u0646\u0648\u06cc\u0633\u0647 \u0637\u0648\u0644 \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u0646\u062f. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u062e\u0637\u0627\u06cc \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u0631\u060c \u0644\u0637\u0641\u0627\u064b \u0627\u06cc\u0646 \u06a9\u062f \u0631\u0627 \u0628\u0647 {0} \u0627\u0631\u0627\u0626\u0647 \u062f\u0647\u06cc\u062f + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 {0} \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a \u06cc\u0627 \u0628\u0631\u062f \u0634\u0645\u0627 \u0645\u062a\u0635\u0644 \u0646\u0634\u062f\u0647\u200c\u0627\u0633\u062a + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u062f\u0633\u062a\u06af\u0627\u0647 \u067e\u0627\u0633\u062e\u200c\u06af\u0648 \u0646\u06cc\u0633\u062a\u060c \u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0631\u0627 \u0628\u0631\u0631\u0633\u06cc \u06a9\u0646\u06cc\u062f \u06cc\u0627 \u0628\u0631\u062f \u062f\u0631\u0633\u062a \u0642\u0628\u0644 \u0627\u0632 \u062e\u0627\u0631\u062c\u200c\u0633\u0627\u0632\u06cc RESET \u06a9\u0646\u06cc\u062f + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u0627\u0634\u06a9\u0627\u0644 \u062f\u0631 \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u0628\u0647 \u0628\u0631\u062f. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0631\u0627 \u0628\u0631\u0627\u06cc \u067e\u06cc\u0634\u0646\u0647\u0627\u062f\u0627\u062a \u0628\u0628\u06cc\u0646\u06cc\u062f. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0645\u06cc\u06a9\u0631\u0648\u06a9\u0646\u062a\u0631\u0644\u0631 \u0627\u0634\u062a\u0628\u0627\u0647\u06cc \u06cc\u0627\u0641\u062a \u0634\u062f. \u0622\u06cc\u0627 \u0634\u0645\u0627 \u0628\u0631\u062f \u0645\u0646\u0627\u0633\u0628\u06cc \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u0628\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0631\u062f\u0647\u200c\u0627\u06cc\u062f\u061f + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0628\u0631\u062f\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647\u200c\u0627\u0633\u062a\u061b \u0644\u0637\u0641\u0627\u064b \u06cc\u06a9 \u0628\u0631\u062f \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u0628\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0}\u060c{1} \u0631\u0627 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f + +#: debug/Compiler.java:426 +Error\ compiling.=\u062e\u0637\u0627\u06cc \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644 + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0644\u0637\u0641\u0627\u064b \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 SPI \u0631\u0627 \u0627\u0632 \u0645\u0646\u0648\u06cc \u0637\u0631\u062d > \u062f\u0631\u0648\u0646\u200c\u0633\u0627\u0632\u06cc \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u062f\u0631\u0648\u0646\u200c\u0633\u0627\u0632\u06cc \u06a9\u0646\u06cc\u062f. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f0\u06f0\u06f1\u06f9\u060c \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 Ethernet \u0628\u0647 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 SPI \u0648\u0627\u0628\u0633\u062a\u0647 \u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n\u0634\u0645\u0627 \u0638\u0627\u0647\u0631\u0627\u064b \u0627\u0632 \u0622\u0646 \u06cc\u0627 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 \u062f\u06cc\u06af\u0631\u06cc \u06a9\u0647 \u0628\u0647 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 SPI \u0648\u0627\u0628\u0633\u062a\u0647\u200c\u0627\u0633\u062a \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u062f.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647\u0654 'BYTE' \u062f\u06cc\u06af\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06af\u0631\u062f\u062f. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u06a9\u0644\u06cc\u062f\u0648\u0627\u0698\u0647 'BYTE' \u062f\u06cc\u06af\u0631 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u06af\u0631\u062f\u062f.\n\u0644\u0637\u0641\u0627\u064b \u0627\u0632 Serial.write() \u0628\u0647 \u062c\u0627\u06cc \u0622\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0646\u0645\u0627\u06cc\u06cc\u062f.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u06a9\u0644\u0627\u0633 Server \u0628\u0647 EthernetServer \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u06a9\u0644\u0627\u0633 \u0633\u0631\u0648\u0631 \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 Ethernet \u0628\u0647 EthernetServer \u062a\u063a\u06cc\u06cc\u0631\u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u06a9\u0644\u0627\u0633 Client \u0628\u0647 EthernetClient \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u06a9\u0644\u0627\u0633 Client \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 Ethernet \u0628\u0647 EthernetClient \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u06a9\u0644\u0627\u0633 Udp \u0628\u0647 EthernetUdp \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627 \u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u06a9\u0644\u0627\u0633 Udp \u062f\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 Ethernet \u0628\u0647 EthernetClient \u062a\u063a\u06cc\u06cc\u0631\u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0628\u0647 Wire.write() \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a. + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u062a\u0627\u0628\u0639 Wire.send() \u0628\u0647 Wire.write() \u0628\u0631\u0627\u06cc \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u0627 \u0633\u0627\u06cc\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0628\u0647 Wire.read() \u062a\u063a\u06cc\u06cc\u0631\u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a. + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0627\u0632 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u06f1.\u06f0\u060c \u062a\u0627\u0628\u0639 Wire.receive() \u0628\u0647 Wire.read() \u0628\u0631\u0627\u06cc \u0633\u0627\u0632\u06af\u0627\u0631\u06cc \u0628\u06cc\u0634\u062a\u0631 \u0628\u0627 \u0633\u0627\u06cc\u0631 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u200c\u0647\u0627 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.\n\n + +#: EditorConsole.java:152 +Console\ Error=\u062e\u0637\u0627\u06cc \u06a9\u0646\u0633\u0648\u0644 + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u06cc\u06a9 \u0627\u0634\u06a9\u0627\u0644 \u0628\u0647\u200c\u0647\u0646\u06af\u0627\u0645 \u0633\u0639\u06cc \u0628\u0631\u0627\u06cc \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc\n\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0634\u062f\u0647 \u0628\u0631\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc \u062e\u0631\u0648\u062c\u06cc \u06a9\u0646\u0633\u0648\u0644 \u0631\u062e \u062f\u0627\u062f. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u062e\u0637\u0627\u06cc \u063a\u06cc\u0631 \u0648\u062e\u06cc\u0645\u06cc \u0647\u0646\u06af\u0627\u0645 \u062a\u0646\u0638\u06cc\u0645 \u0638\u0627\u0647\u0631. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u067e\u06cc\u063a\u0627\u0645 \u062e\u0637\u0627 \u062f\u0631 \u0630\u06cc\u0644 \u0622\u0645\u062f\u0647\u060c \u0647\u0631\u0686\u0646\u062f \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0628\u0627\u06cc\u062f \u0628\u0647 \u062f\u0631\u0633\u062a\u06cc \u06a9\u0627\u0631 \u06a9\u0646\u062f. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u0627\u0634\u06a9\u0627\u0644 \u062a\u0646\u0638\u06cc\u0645 \u0633\u06a9\u0648 + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0627\u06cc\u0631\u0627\u062f \u0646\u0627\u0634\u0646\u0627\u062e\u062a\u0647\u200c\u0627\u06cc \u0647\u0646\u06af\u0627\u0645 \u0633\u0639\u06cc \u062f\u0631 \u0628\u0627\u0631\u06af\u06cc\u0631\u06cc \u0631\u062e \u062f\u0627\u062f\n\u06a9\u062f \u062e\u0627\u0635 \u0633\u06a9\u0648 \u0628\u0631\u0627\u06cc \u0645\u0627\u0634\u06cc\u0646 \u0634\u0645\u0627. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=\u0644\u0637\u0641\u0627\u064b JDK \u06f1.\u06f5 \u06cc\u0627 \u0628\u0639\u062f\u062a\u0631 \u0627\u0632 \u0622\u0646 \u0631\u0627 \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u06cc\u06a9 JDK \u06a9\u0627\u0645\u0644 (\u0646\u0647 \u0641\u0642\u0637 \u06cc\u06a9 JRE(\n\u0628\u0631\u0627\u06cc \u0627\u062c\u0631\u0627 \u0627\u0633\u062a. \u0644\u0637\u0641\u0627\u064b JDK \u06f1.\u06f5 \u06cc\u0627 \u0628\u0639\u062f \u0627\u0632 \u0622\u0646 \u0631\u0627 \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f.\n\u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0631\u0627 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062f\u0631 \u0645\u0631\u062c\u0639 \u06cc\u0627\u0641\u062a. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u200c\u0647\u0627 \u0646\u0627\u067e\u062f\u06cc\u062f \u0634\u062f + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d \u062f\u06cc\u06af\u0631 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a.\n\u0622\u0631\u062f\u0626\u0646\u0648 \u0645\u062d\u0644 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f\n\u0648 \u067e\u0648\u0634\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u06cc \u062f\u0631\u0633\u062a \u062e\u0648\u0627\u0647\u062f \u06a9\u0631\u062f \u0627\u06af\u0631 \u0645\u0648\u0631\u062f \u0646\u06cc\u0627\u0632\n\u0628\u0627\u0634\u062f. \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0635\u062d\u0628\u062a \u06a9\u0631\u062f\u0646 \u062f\u0631 \u0631\u0627\u0628\u0637\u0647 \u0628\u0627 \u062e\u0648\u062f \u0631\u0627 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646\n\u0633\u0648\u0645 \u0634\u062e\u0635 \u0631\u0627 \u067e\u0627\u06cc\u0627\u0646 \u0645\u06cc\u200c\u062f\u0647\u062f. + +#: Base.java:532 +Time\ for\ a\ Break=\u0648\u0642\u062a \u0628\u0631\u0627\u06cc \u0627\u0633\u062a\u0631\u0627\u062d\u062a + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0634\u0645\u0627 \u0628\u0647 \u0645\u062d\u062f\u0648\u062f\u0647\u0654 \u0646\u0627\u0645\u200c\u06af\u0630\u0627\u0631\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0628\u0631\u0627\u06cc \u0637\u0631\u062d\u200c\u0647\u0627\u06cc \u0628\u0631\u0627\u06cc \u0627\u0645\u0631\u0648\u0632\n\u0631\u0633\u06cc\u062f\u0647\u200c\u0627\u06cc\u062f. \u0686\u0637\u0648\u0631 \u0627\u0633\u062a \u0628\u0647 \u062c\u0627\u06cc \u0622\u0646 \u06cc\u06a9 \u067e\u06cc\u0627\u062f\u0647\u200c\u0631\u0648\u06cc \u062f\u0627\u0634\u062a\u0647 \u0628\u0627\u0634\u06cc\u062f\u061f + +#: Base.java:537 +Sunshine=\u0637\u0644\u0648\u0639 + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0646\u0647 \u062c\u062f\u0627\u064b\u060c \u0648\u0642\u062a \u0645\u0642\u062f\u0627\u0631\u06cc \u0647\u0648\u0627\u06cc \u062a\u0627\u0632\u0647\u200c\u0627\u0633\u062a. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u06cc\u06a9 \u0637\u0631\u062d \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0628\u0627\u0632 \u06a9\u0646... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0622\u06cc\u0627 \u0645\u0637\u0645\u0626\u0646 \u0647\u0633\u062a\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u062e\u0627\u0631\u062c \u0634\u0648\u06cc\u062f\u061f

\u0628\u0633\u062a\u0646 \u0622\u062e\u0631\u06cc\u0646 \u0637\u0631\u062d \u0628\u0627\u0632 \u0634\u062f\u0647 \u0645\u0646\u062c\u0631 \u0628\u0647 \u062e\u0627\u0631\u062c\u200c\u0634\u062f\u0646 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u062e\u0648\u0627\u0647\u062f \u0634\u062f. + +#: Base.java:970 +Contributed=\u06a9\u0645\u06a9\u200c\u0634\u062f\u0647 + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u0637\u0631\u062d \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u0637\u0631\u062d \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u062f\u06cc\u06af\u0631 \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u0645\u0646\u0648\u06cc\n\u06a9\u062a\u0627\u0628 \u0637\u0631\u062d \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u06a9\u0646\u06cc\u062f. + +#: Base.java:1125 +#, 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}=\u0637\u0631\u062d "{0}" \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06af\u0631\u062f\u062f.\n\u0646\u0627\u0645 \u0637\u0631\u062d\u200c\u0647\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0641\u0642\u0637 \u0634\u0627\u0645\u0644 \u062d\u0631\u0648\u0641 \u0633\u0627\u062f\u0647 \u0648 \u0639\u062f\u062f\u0647\u0627 \u0628\u0627\u0634\u0646\u062f\n(\u0641\u0642\u0637 ASCII \u0628\u062f\u0648\u0646 \u0641\u0627\u0635\u0644\u0647 \u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0628\u0627 \u0639\u062f\u062f \u0634\u0631\u0648\u0639 \u0634\u0648\u062f).\n\u0628\u0631\u0627\u06cc \u062e\u0644\u0627\u0635\u200c\u0634\u062f\u0646 \u0627\u0632 \u0627\u06cc\u0646 \u067e\u06cc\u063a\u0627\u0645\u060c \u0637\u0631\u062d \u0631\u0627 \u0627\u0632 {1} \u062d\u0630\u0641 \u0646\u0645\u0627\u06cc\u06cc\u062f. + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\u0646\u0627\u062f\u06cc\u062f\u0647 \u06af\u0631\u0641\u062a\u0646 \u0637\u0631\u062d \u0628\u0627 \u0646\u0627\u0645 \u0628\u062f + +#: Base.java:1202 +#, 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)=\u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647\u0654 "{0}" \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u06af\u0631\u062f\u062f.\n\u0646\u0627\u0645 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0641\u0642\u0637 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0634\u0627\u0645\u0644 \u062d\u0631\u0648\u0641 \u0633\u0627\u062f\u0647 \u0648 \u0639\u062f\u062f \u0628\u0627\u0634\u062f.\n(\u0641\u0642\u0637 ASCII \u0648 \u0628\u062f\u0648\u0646 \u0641\u0627\u0635\u0644\u0647 \u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0628\u0627 \u06cc\u06a9 \u0639\u062f\u062f \u0634\u0631\u0648\u0639 \u0634\u0648\u062f.) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u062f\u0631 \u0646\u0638\u0631 \u0646\u06af\u0631\u0641\u062a\u0646 \u0646\u0627\u0645 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u0627\u0634\u06a9\u0627\u0644 \u06af\u0631\u0641\u062a\u0646 \u067e\u0648\u0634\u0647\u0654 \u062f\u0627\u062f\u0647\u200c\u0647\u0627 + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=\u062e\u0637\u0627\u06cc \u06af\u0631\u0641\u062a\u0646 \u067e\u0648\u0634\u0647 \u0627\u0637\u0644\u0627\u0639\u0627\u062a \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 + +#: Base.java:1440 +Settings\ issues=\u0645\u0634\u06a9\u0644\u0627\u062a \u062a\u0646\u0638\u06cc\u0645\u0627\u062a + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u062c\u0631\u0627 \u0634\u0648\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f\n\u067e\u0648\u0634\u0647\u200c\u0627\u06cc \u0628\u0631\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0634\u0645\u0627 \u0628\u0633\u0627\u0632\u062f. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u0634\u0645\u0627 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u200c\u062a\u0627\u0646 \u0631\u0627 \u0641\u0631\u0627\u0645\u0648\u0634 \u06a9\u0631\u062f\u0647\u200c\u0627\u06cc\u062f + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f \u0627\u062c\u0631\u0627 \u0634\u0648\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u062f\n\u067e\u0648\u0634\u0647\u200c\u0627\u06cc \u0628\u0631\u0627\u06cc \u0630\u062e\u06cc\u0631\u0647\u0654 \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\u200c\u062a\u0627\u0646 \u0628\u0633\u0627\u0632\u062f. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0627\u0646\u062a\u062e\u0627\u0628 (\u06cc\u0627 \u062f\u0631\u0633\u062a\u200c\u06a9\u0631\u062f\u0646 \u062c\u062f\u06cc\u062f) \u067e\u0648\u0634\u0647 \u0628\u0631\u0627\u06cc \u0637\u0631\u062d\u200c\u0647\u0627.... + +#: Base.java:1647 +Problem\ Opening\ URL=\u0627\u0634\u06a9\u0627\u0644 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 URL \u0631\u0627 \u06af\u0634\u0648\u062f\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=\u0627\u0634\u06a9\u0627\u0644 \u062f\u0631 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u067e\u0648\u0634\u0647 + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u067e\u0648\u0634\u0647 \u0631\u0627 \u06af\u0634\u0648\u062f\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u0645\u062d\u06cc\u0637 + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u067e\u06cc\u063a\u0627\u0645 + +#: Base.java:1842 +Warning=\u0627\u062e\u0637\u0627\u0631 + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0633\u062e\u0647\u0654 \u0642\u062f\u06cc\u0645\u06cc {0} \u0631\u0627 \u062d\u0630\u0641 \u0646\u0645\u0648\u062f + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 {0} \u0631\u0627 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0646\u0645\u0648\u062f + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 {0} \u0631\u0627 \u062d\u0630\u0641 \u0646\u0645\u0648\u062f + +#: EditorHeader.java:292 +New\ Tab=\u062a\u0628 \u062c\u062f\u06cc\u062f + +#: EditorHeader.java:300 +Rename=\u062a\u063a\u06cc\u06cc\u0631\u0646\u0627\u0645 + +#: EditorHeader.java:326 +Previous\ Tab=\u062a\u0628 \u0642\u0628\u0644 + +#: EditorHeader.java:340 +Next\ Tab=\u062a\u0628 \u0628\u0639\u062f + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u0628\u0627\u0632\u0628\u06cc\u0646\u06cc + +#: EditorToolbar.java:41 +Open=\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u067e\u0646\u062c\u0631\u0647\u0654 \u062c\u062f\u06cc\u062f \u0648\u06cc\u0631\u0627\u06cc\u0634\u06cc + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u062f\u0631 \u067e\u0646\u062c\u0631\u0647\u200c\u0627\u06cc \u062f\u06cc\u06af\u0631 + +#: Platform.java:167 +No\ launcher\ available=\u067e\u0631\u062a\u0627\u0628\u200c\u06a9\u0646\u0646\u062f\u0647\u200c\u0627\u06cc \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a + +#: 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=\u0633\u06a9\u0648\u06cc \u0646\u0627\u0645\u0634\u062e\u0635\u060c \u067e\u0631\u062a\u0627\u0628\u200c\u06a9\u0646\u0646\u062f\u0647\u200c\u0627\u06cc \u0645\u0648\u062c\u0648\u062f \u0646\u06cc\u0633\u062a.\n\u0628\u0631\u0627\u06cc \u0641\u0639\u0627\u0644\u200c\u0633\u0627\u0632\u06cc \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 URL\u0647\u0627 \u06cc\u0627 \u067e\u0648\u0634\u0647\u200c\u0647\u0627\u060c \u06cc\u06a9 \u062e\u0637"launcher\=/path/to/app" \u0628\u0647 preferences.txt \u0628\u06cc\u0627\u0641\u0632\u0627\u06cc\u06cc\u062f. + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0631\u0646\u06af \u0631\u0627 \u062e\u0648\u0627\u0646\u062f.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 Processing \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0646\u0635\u0628 \u0646\u0645\u0627\u06cc\u06cc\u062f. + +#: Preferences.java:80 +Browse=\u06cc\u0627\u0641\u062a\u0646 + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0631\u0627 \u062e\u0648\u0627\u0646\u062f.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a \u0631\u0627 \u0627\u0632 {0} \u062e\u0648\u0627\u0646\u062f + +#: Preferences.java:261 +Error\ reading\ preferences=\u062e\u0637\u0627\u06cc \u062e\u0648\u0627\u0646\u062f\u0646 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u062e\u0637\u0627\u06cc \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u062e\u0648\u0627\u0646\u062f\u0646 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u062a\u0631\u062c\u06cc\u062d\u0627\u062a. \u0644\u0637\u0641\u0627\u064b {0} \u0631\u0627 \u062d\u0630\u0641 (\u06cc\u0627 \u0627\u0646\u062a\u0641\u0627\u0644)\n\u0648 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u06a9\u0646\u06cc\u062f. + +#: Preferences.java:299 +Sketchbook\ location\:=\u0645\u0648\u0642\u0639\u06cc\u062a \u06a9\u062a\u0627\u0628 \u0637\u0631\u062d\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u0645\u0648\u0642\u0639\u06cc\u062a \u062c\u062f\u06cc\u062f \u06a9\u062a\u0627\u0628 \u0631\u0627 \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (\u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u0646\u0645\u0648\u062f\u0646 \u0627\u0631\u062f\u0626\u06cc\u0646\u0648) + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0642\u0644\u0645 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u0646\u0645\u0627\u06cc\u0634 \u062e\u0631\u0648\u062c\u06cc \u067e\u0631\u06af\u0648 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645\: + +#: Preferences.java:373 +compilation\ =\u06a9\u0627\u0645\u067e\u0627\u06cc\u0644\u200c\u0646\u0645\u0648\u062f\u0646 + +#: Preferences.java:375 +upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +Use\ external\ editor=\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0648\u06cc\u0631\u0627\u06cc\u0634\u200c\u06af\u0631 \u062e\u0627\u0631\u062c\u06cc + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u0628\u0631\u0631\u0633\u06cc \u0628\u0631\u0627\u06cc \u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc\u200c\u0647\u0627 \u062f\u0631 \u0627\u0628\u062a\u062f\u0627\u06cc \u0628\u0627\u0644\u0627 \u0622\u0645\u062f\u0646 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0628\u0647\u200c\u0631\u0648\u0632\u0631\u0633\u0627\u0646\u06cc \u067e\u0631\u0648\u0646\u062f\u0647 \u0637\u0631\u062d \u0628\u0647 \u06cc\u06a9 \u067e\u0633\u0648\u0646\u062f \u062c\u062f\u06cc\u062f \u0628\u0647 \u0647\u0646\u06af\u0627\u0645 \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=\u0627\u062e\u062a\u0635\u0627\u0635 \u062e\u0648\u062f\u06a9\u0627\u0631 \u067e\u0631\u0648\u0646\u062f\u0647\u200c\u0647\u0627\u06cc .ino \u0628\u0627 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u062a\u0631\u062c\u06cc\u062d\u0627\u062a \u0628\u06cc\u0634\u062a\u0631 \u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u0646\u062f \u0645\u0633\u062a\u0642\u06cc\u0645\u0627\u064b \u062f\u0631\u0648\u0646 \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u0648\u06cc\u0631\u0627\u06cc\u0634 \u06af\u0631\u062f\u0646\u062f + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0641\u0642\u0637 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u062f\u0631\u062d\u0627\u0644 \u0627\u062c\u0631\u0627 \u0646\u06cc\u0633\u062a) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u062f\u0631\u0646\u0638\u0631 \u0646\u06af\u0631\u0641\u062a\u0646 \u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0642\u0644\u0645 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 {0} diff --git a/app/src/processing/app/Resources_fr.po b/app/src/processing/app/Resources_fr.po new file mode 100644 index 000000000..10c917289 --- /dev/null +++ b/app/src/processing/app/Resources_fr.po @@ -0,0 +1,1694 @@ +# French translations for IDE_translations package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the IDE_translations package. +# Alexis Morin , 2012. +# Denis Barbier , 2012. +# Philippe Rivet , 2012 +# +# Lexique des termes utilisés dans cette traduction : +# - board : type de carte/carte +# - burn bootloader : graver la séquence d'initialisation +# - library : bibliothèque +# - look & feel : apparence +# - programmer : programmateur +# - sketch : croquis +# - sketchbook : carnet de croquis +# - upload : téléverser/téléversement +# +# La traduction des langues provient de +# http://anonscm.debian.org/gitweb/?p=iso-codes/iso-codes.git;a=blob;f=iso_639/fr.po +# +msgid "" +msgstr "" +"Project-Id-Version: IDE_translations 1.01\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-03 07:48+0200\n" +"PO-Revision-Date: 2012-04-17 15:31+0200\n" +"Last-Translator: Denis Barbier \n" +"Language-Team: French\n" +"Language: fr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n>1;\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Aucun fichier n'a été ajouté au croquis." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Un fichier ajouté au croquis." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} fichiers ajoutés au croquis." + +#: Editor.java:484 +msgid "File" +msgstr "Fichier" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nouveau" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Ouvrir..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Carnet de croquis" + +#: Editor.java:509 +msgid "Examples" +msgstr "Exemples" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Fermer" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Enregistrer" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Enregistrer sous..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Téléverser" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Téléverser avec un programmateur" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Mise en page" + +#: Editor.java:564 +msgid "Print" +msgstr "Imprimer" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Préférences" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Quitter" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Croquis" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Vérifier / Compiler" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importer bibliothèque..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Afficher le dossier des croquis" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Ajouter un fichier..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Outils" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Moniteur série" + +#: Editor.java:682 +msgid "Board" +msgstr "Type de carte" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Port série" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmateur" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Graver la séquence d'initialisation" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu est nul" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "nom est nul" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "erreur d'obtention de la liste des ports" + +#: Editor.java:1002 +msgid "Help" +msgstr "Aide" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Aide pour débuter" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Environnement" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Dépannage" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Référence" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Trouver dans la référence" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Foire aux questions" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Visiter Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "À propos d'Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Édition" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Annuler" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Rétablir" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Couper" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Coller" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copier pour le forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Copier en tant qu'HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Coller" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Tout sélectionner" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Commenter/Décommenter" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Augmenter l'indentation" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Réduire l'indentation" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Trouver..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Trouver prochain" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Trouver précédent" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Utiliser la sélection pour trouver" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Sélectionnez d'abord un mot à trouver dans la référence." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Aucune référence disponible pour « {0} »" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Compilation du croquis..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compilation terminée." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Enregistrer les changements dans « {0} » ? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Voulez-" +"vous enregistrer les changements
avant de fermer ?

Si " +"vous n'enregistrez pas, vos changements seront perdus." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Annuler" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Ne pas enregistrer" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Mauvais fichier sélectionné" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing ne peut ouvrir que ses propres croquis\n" +"ou les fichiers se terminant par .ino ou .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Le fichier « {0} » doit résider dans\n" +"un dossier de croquis nommé « {1} ».\n" +"Créer ce dossier, déplacer le fichier et continuer ?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Déplacement" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Erreur" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Un dossier nommé « {0} » existe déjà. Impossible d''ouvrir le croquis." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Impossible de créer le dossier de croquis." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Impossible de copier au bon emplacement." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Impossible de créer le croquis." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Enregistrement..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Enregistrement terminé." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Sauvegarde annulée." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Port série {0} introuvable.\n" +"Réessayer le téléversement à partir d''un autre port série ?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Téléversement vers la carte E/S..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Téléversement terminé" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Téléversement annulé." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Enregistrer les changements avant d'exporter ?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exportation annulée, les changements doivent d'abord être enregistrés." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "" +"Grave la séquence d'initialisation vers la carte E/S\n" +"(Cela pourrait prendre quelque temps)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Gravure de la séquence d'initialisation terminée." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Erreur lors de la gravure de la séquence d'initialisation." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Impression..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Impression terminée." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Erreur d'impression." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Impression annulée." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Erreur à la ligne : {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Ouvrir URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Une nouvelle version d'Arduino est disponible,\n" +"voulez-vous visiter la page de téléchargement ?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Oui" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Non" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Mise à jour" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Trouver :" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Remplacer par :" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignorer la casse" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Recherche circulaire" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Tout remplacer" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Remplacer" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Trouver & Remplacer" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Précédent" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Trouver" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Envoyer" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Défilement automatique" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Pas de fin de ligne" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Nouvelle ligne" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Retour chariot" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Port série « {0} » déjà utilisé. Essayez de quitter tout logiciel qui " +"pourrait s''en servir." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Erreur d''ouverture du port série « {0} »." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Port série « {0} » non trouvé. L''avez-vous bien sélectionné dans le menu " +"Outils > Port série ?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"Le tampon mémoire readBytesUntil() est trop petit pour les {0} octets " +"jusqu''au caractère {1} inclus" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Erreur dans Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Formatage automatique" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Aucun changement nécessaire pour le formatage automatique." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Formatage automatique annulé, trop de parenthèses fermantes." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Formatage automatique annulé, trop de parenthèses ouvrantes." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Formatage automatique annulé, trop d'accolades fermantes." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Formatage automatique annulé, trop d'accolades ouvrantes." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Formatage automatique terminé." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Réparer encodage & recharger" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Laisser tomber les changements et recharger le croquis ?" + +#: 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 "" +"Une erreur est survenue lors de la réparation de l'encodage du fichier.\n" +"Ne pas tenter d'enregistrer ce croquis, car cela pourrait écraser\n" +"l'ancienne version. Utiliser Ouvrir pour réouvrir le croquis et réessayer.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Archiver le croquis" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyyyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Impossible d'archiver le croquis" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"L'archivage du croquis a été annulé car\n" +"le croquis n'a pu s'enregistrer correctement." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Archiver le croquis sous :" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Archivage du croquis annulé" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Erreur lors du chargement du code {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"« {0} » contient des caractères non reconnus. Si le code a été créé avec une " +"vieille version de Processing, vous pouvez utiliser Outils -> Réparer " +"encodage & recharger pour mettre le croquis à jour en UTF-8. Sinon, vous " +"devrez supprimer les caractères invalides pour supprimer cet avertissement." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Le croquis est en lecture-seule" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Certains fichiers sont marqués « lecture-seule », vous devrez\n" +"réenregistrer le croquis à un autre emplacement,\n" +"et réessayer." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nom du nouveau fichier :" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Croquis sans nom" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Et si vous enregistriez le croquis\n" +"avant d'essayer de le renommer ?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problème de renommage" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Le nom ne peut commencer par un point." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "« .{0} » n''est pas une extension valide." + +#: Sketch.java:378 +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 "" +"Le fichier principal ne peut utiliser d'extension.\n" +"(Il est peut-être temps de migrer vers un\n" +"« vrai » environnement de programmation)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Non" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Un fichier nommé « {0} » existe déjà dans « {1} »" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Vous ne pouvez avoir de fichier .cpp avec le même nom que le croquis." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Vous ne pouvez renommer le croquis en « {0} »\n" +"car il existe déjà un fichier .cpp portant ce nom." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Impossible de renommer" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Désolé, un croquis (ou dossier) nommé « {0} » existe déjà." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Impossible de renommer le croquis. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Impossible de renommer « {0} » en « {1} »" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Impossible de renommer le croquis. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Impossible de renommer le croquis. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() a renvoyé false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Êtes-vous certain de vouloir supprimer ce croquis ?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Êtes-vous certain de vouloir supprimer « {0} » ?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Supprimer" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Impossible" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Impossible de supprimer « {0} »." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode : erreur interne.. n'a pu trouver le code" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Le croquis est en lecture-seule" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Certain fichiers sont marqués \"lecture-seule\", vous devrez\n" +"réenregistrer ce croquis à un autre emplacement." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"Dans Arduino 1.0, l'extension par défaut a changé\n" +"de .pde à .ino. Les nouveaux croquis (incluant ceux créés\n" +"par « Enregistrer sous » utiliseront la nouvelle extension. L'extension\n" +"des croquis existants sera mise à jour à la sauvegarde, mais vous pouvez\n" +"désactiver ceci dans les Préférences.\n" +"\n" +"Sauvegarder le croquis et mettre à jour son extension ?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Enregistrer le dossier des croquis sous..." + +#: Sketch.java:865 +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} »\n" +"Car il existe déjà un fichier .cpp portant ce nom." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Comme c'est Borges de votre part" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Vous ne pouvez enregistrer ce croquis dans son\n" +"propre dossier. Cela ferait une boucle infinie." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "" +"Sélectionner une image ou autre fichier de données à copier \n" +"dans votre croquis" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Remplacer la version existante de {0} ?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Erreur d'ajout de fichier" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Impossible de supprimer le fichier « {0} » existant." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Tu ne peux pas me tromper !" + +#: Sketch.java:1079 +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 "" +"Ce fichier a déjà été copié à\n" +"l'emplacement duquel vous essayez de l'ajouter.\n" +"J'frai rien dans ce cas-là." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Impossible d''ajouter « {0} » au croquis." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Dossier de compilation disparu ou n'a pas pu être créé" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Impossible de trouver la classe principale" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Exception non capturée de type : {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problème de déplacement de {0} vers le dossier de compilation" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Téléversement..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Taille binaire du croquis : {0} octets (d''un max de {1} octets)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Impossible de déterminer la taille du programme : {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Croquis trop gros ; vois http://www.arduino.cc/en/Guide/Troubleshooting#size " +"pour des conseils de réduction." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Il manque le */ sur la fin d'un /* commentaire */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Croquis disparu" + +#: Sketch.java:1797 +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 "" +"Le dossier croquis a disparu.\n" +"Nous allons essayer de réenregistrer au même emplacement,\n" +"mais seul le code sera conservé." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Impossible de réenregistrer le croquis" + +#: Sketch.java:1811 +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 "" +"Impossible de réenregistrer correctement le croquis. Pour éviter de perdre votre\n" +"travail, faites un copier-coller de votre code dans un autre éditeur texte." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Le nom du croquis doit être changé. Les noms de croquis doivent consister\n" +"de caractères ASCII et de chiffres (mais ne peuvent commencer par un " +"chiffre).\n" +"Ils doivent aussi être plus courts que 64 caractères." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Erreur de compilation, veuillez soumettre ce code à {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"le port série sélectionné {0} n''existe pas ou votre Arduino n''est pas connectée" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"L'appareil ne répond pas, vérifiez que le bon port série est sélectionné ou " +"réinitialisez (RESET) l'Arduino avant d'exporter" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Problème de téléversement vers la carte. Voir http://www.arduino.cc/en/" +"Guide/Troubleshooting#upload pour suggestions." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Mauvais microcontrôleur trouvé. Avez-vous sélectionné la bonne carte dans " +"le menu Outils > Type de carte ?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "" +"Aucune carte sélectionnée, veuillez choisir une carte dans le menu Outil > " +"Type de carte." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} a retourné {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Erreur de compilation." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "" +"Veuillez importer la bibliothèque SPI depuis le menu Croquis > Importer " +"bibliothèque." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Depuis Arduino 0019, la bibliothèque Ethernet dépend de la bibliothèque " +"SPI.\n" +"Vous semblez l'utiliser ou une autre bibliothèque qui dépend de la " +"bibliothèque SPI.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Le mot-clé « BYTE » n'est plus supporté." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Depuis Arduino 1.0, le mot-clé « BYTE » n'est plus supporté.\n" +"Veuillez utiliser Serial.write() à la place.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "La classe Server a été renommée EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Depuis Arduino 1.0, la classe Server de la bibliothèque Ethernet a été " +"renommée en EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "La classe Client a été renommée EthernetClient" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Depuis Arduino 1.0, la classe Client de la bibliothèque Ethernet a été " +"renommée en EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "La classe Udp a été renommée EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Depuis Arduino 1.0, la classe Udp de la bibliothèque Ethernet a été renommée " +"en EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() a été renommée Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Depuis Arduino 1.0, la fonction Wire.send() à été renommée en Wire.write() " +"pour maintenir une cohérence avec d'autres bibliothèques.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() a été renommée Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Depuis Arduino 1.0, la fonction Wire.receive() a été renommée en Wire.read() " +"pour maintenir une cohérence avec d'autres bibliothèques.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Erreur de console" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Un problème est survenu lors de l'ouverture\n" +"des fichiers contenant la sortie de console." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Erreur non fatale lors du changement d'apparence." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Le message d'erreur suit, mais Arduino devrait bien s'exécuter." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problème à configurer la plate-forme" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"Une erreur inconnue est survenue en essayant de charger\n" +"du code de spécifique à votre plate-forme." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Veuillez installer JDK 1.5 ou ultérieur" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino requiert le JDK complet (pas seulement un JRE)\n" +"afin de s'exécuter. Veuillez installer JDK 1.5 ou ultérieur.\n" +"Plus d'informations peuvent être trouvées dans la documentation." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Le dossier des croquis est disparu" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Le dossier des croquis n'existe plus.\n" +"Arduino va aller à l'emplacement\n" +"par défaut, et créer un nouveau dossier\n" +"si nécessaire. Arduino cessera ensuite\n" +"de parler de lui-même à la troisième personne." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "C'est l'heure d'une pause" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Tu as atteint la limite quotidienne de noms générés.\n" +"Et si tu allais te promener ?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Soleil" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Non vraiment, tu devrais aller prendre l'air." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Ouvrir un croquis Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Êtes-" +"vous certain de vouloir quitter ?

Fermer le dernier croquis quittera " +"l'environnement Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribué" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Ce croquis n'existe pas" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Le croquis sélectionné n'existe plus.\n" +"Vous devrez redémarrer Arduino pour mettre à jour\n" +"le menu Carnet de croquis." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Le croquis « {0} » ne peut être utilisé.\n" +"Les noms de croquis ne doivent contenir que des lettres et des chiffres\n" +"(ASCII seulement sans espace, et ne peuvent commencer par un chiffre)\n" +"Pour se débarrasser de ce message, retirer le croquis de\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignore un croquis mal nommé" + +#: Base.java:1202 +#, java-format +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 "" +"La bibliothèque « {0} » ne peut être utilisée.\n" +"Les noms de bibliothèques ne doivent contenir que des lettres et des " +"chiffres.\n" +"(ASCII seulement sans espace, et ne peuvent commencer par un chiffre)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignore la bibliothèque mal nommée" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problème d'obtention du dossier de données" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Problème d'obtention du dossier de données d'Arduino" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Problèmes de paramètres" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino ne peut s'exécuter car il\n" +"ne peut créer un dossier pour sauvegarder vos paramètres." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Vous avez oublié votre carnet de croquis" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino n'a pas pu s'exécuter car il n'a\n" +"pas pu créer de dossier pour enregistrer votre carnet de croquis." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Sélectionner (ou créer) un dossier de croquis..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problème de chargement d'URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Impossible d''ouvrir l''URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problème d'ouverture de dossier" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Impossible d''ouvrir le dossier\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "environnement" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Message" + +#: Base.java:1842 +msgid "Warning" +msgstr "Avertissement" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Impossible de retirer la vieille version de {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Impossible de remplacer {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Impossible de supprimer {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nouvel onglet" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Renommer" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Onglet précédent" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Onglet suivant" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Vérifier" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Ouvrir" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nouvelle fenêtre d'éditeur" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Ouvrir dans une nouvelle fenêtre" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Aucun lanceur disponible" + +#: 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 "" +"Plate-forme non spécifiée, aucun lanceur disponible.\n" +"Pour permettre l'ouverture d'URLs ou de dossiers, \n" +"ajouter une ligne « launcher=/chemin/vers/app » à preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Impossible de lire les paramètres du thème de couleurs.\n" +"Vous devrez réinstaller Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Parcourir" + +#: Preferences.java:83 +msgid "System Default" +msgstr "Langue du système" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "arabe" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "aragonais" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "catalan" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "chinois - simplifié" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "chinois - traditionnel" + +#: Preferences.java:89 +msgid "Danish" +msgstr "danois" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "néerlandais" + +#: Preferences.java:91 +msgid "English" +msgstr "anglais" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "estonien" + +#: Preferences.java:93 +msgid "French" +msgstr "français" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "filipino" + +#: Preferences.java:95 +msgid "Galician" +msgstr "galicien" + +#: Preferences.java:96 +msgid "German" +msgstr "allemand" + +#: Preferences.java:97 +msgid "Greek" +msgstr "grec" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "hongrois" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "indonésien" + +#: Preferences.java:100 +msgid "Italian" +msgstr "italien" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "japonais" + +#: Preferences.java:102 +msgid "Korean" +msgstr "coréen" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "letton" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "lituanien" + +#: Preferences.java:105 +msgid "Persian" +msgstr "persan" + +#: Preferences.java:106 +msgid "Polish" +msgstr "polonais" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "portugais" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "roumain" + +#: Preferences.java:110 +msgid "Russian" +msgstr "russe" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "espagnol" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Impossible de lire les paramètres par défaut.\n" +"Vous devrez réinstaller l'environnement Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Impossible de lire les préférences depuis {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Erreur de lecture des préférences" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Erreur de lecture du fichier de préférences. Veuillez supprimer (ou " +"déplacer)\n" +"{0} et redémarrer Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Emplacement du carnet de croquis" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Sélectionner un nouvel emplacement pour le carnet de croquis" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "Choix de la langue : " + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (nécessite un redémarrage d'Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Taille de police de l'éditeur : " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Afficher les résultats détaillés pendant : " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilation " + +#: Preferences.java:375 +msgid "upload" +msgstr "téléversement" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Vérifier le code après téléversement" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Utiliser un éditeur externe" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Vérifier les mises à jour au démarrage" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "" +"Mettre à jour vers la nouvelle extension lors de la " +"sauvegarde (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Associer automatiquement les fichiers .ino avec Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "" +"Davantage de préférences peuvent être éditées directement dans le fichier" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(éditer uniquement lorsque Arduino ne s'exécute pas)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignore la taille de police invalide {0}" diff --git a/app/src/processing/app/Resources_fr.properties b/app/src/processing/app/Resources_fr.properties new file mode 100644 index 000000000..f558f9413 --- /dev/null +++ b/app/src/processing/app/Resources_fr.properties @@ -0,0 +1,1049 @@ +# French translations for IDE_translations package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the IDE_translations package. +# Alexis Morin , 2012. +# Denis Barbier , 2012. +# Philippe Rivet , 2012 +# +# Lexique des termes utilis\u00e9s dans cette traduction : +# - board : type de carte/carte +# - burn bootloader : graver la s\u00e9quence d'initialisation +# - library : biblioth\u00e8que +# - look & feel : apparence +# - programmer : programmateur +# - sketch : croquis +# - sketchbook : carnet de croquis +# - upload : t\u00e9l\u00e9verser/t\u00e9l\u00e9versement +# +# La traduction des langues provient de +# http://anonscm.debian.org/gitweb/?p=iso-codes/iso-codes.git;a=blob;f=iso_639/fr.po +# +!=Project-Id-Version\: IDE_translations 1.01\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-03 07\:48+0200\nPO-Revision-Date\: 2012-04-17 15\:31+0200\nLast-Translator\: Denis Barbier \nLanguage-Team\: French\nLanguage\: fr\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=n>1;\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Aucun fichier n'a \u00e9t\u00e9 ajout\u00e9 au croquis. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Un fichier ajout\u00e9 au croquis. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} fichiers ajout\u00e9s au croquis. + +#: Editor.java:484 +File=Fichier + +#: Editor.java:486 EditorToolbar.java:41 +New=Nouveau + +#: Editor.java:494 Base.java:903 +Open...=Ouvrir... + +#: Editor.java:503 +Sketchbook=Carnet de croquis + +#: Editor.java:509 +Examples=Exemples + +#: Editor.java:514 Editor.java:1977 +Close=Fermer + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Enregistrer + +#: Editor.java:530 +Save\ As...=Enregistrer sous... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=T\u00e9l\u00e9verser + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=T\u00e9l\u00e9verser avec un programmateur + +#: Editor.java:556 +Page\ Setup=Mise en page + +#: Editor.java:564 +Print=Imprimer + +#: Editor.java:576 Preferences.java:279 +Preferences=Pr\u00e9f\u00e9rences + +#: Editor.java:586 Base.java:782 +Quit=Quitter + +#: Editor.java:600 +Sketch=Croquis + +#: Editor.java:602 +Verify\ /\ Compile=V\u00e9rifier / Compiler + +#: Editor.java:629 +Import\ Library...=Importer biblioth\u00e8que... + +#: Editor.java:634 +Show\ Sketch\ Folder=Afficher le dossier des croquis + +#: Editor.java:643 +Add\ File...=Ajouter un fichier... + +#: Editor.java:656 +Tools=Outils + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Moniteur s\u00e9rie + +#: Editor.java:682 +Board=Type de carte + +#: Editor.java:690 +Serial\ Port=Port s\u00e9rie + +#: Editor.java:695 +Programmer=Programmateur + +#: Editor.java:699 +Burn\ Bootloader=Graver la s\u00e9quence d'initialisation + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu est nul + +#: Editor.java:927 Editor.java:934 +name\ is\ null=nom est nul + +#: Editor.java:986 +error\ retrieving\ port\ list=erreur d'obtention de la liste des ports + +#: Editor.java:1002 +Help=Aide + +#: Editor.java:1041 +Getting\ Started=Aide pour d\u00e9buter + +#: Editor.java:1049 +Environment=Environnement + +#: Editor.java:1057 +Troubleshooting=D\u00e9pannage + +#: Editor.java:1065 +Reference=R\u00e9f\u00e9rence + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Trouver dans la r\u00e9f\u00e9rence + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Foire aux questions + +#: Editor.java:1091 +Visit\ Arduino.cc=Visiter Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u00c0 propos d'Arduino + +#: Editor.java:1116 +Edit=\u00c9dition + +#: Editor.java:1119 Editor.java:1341 +Undo=Annuler + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=R\u00e9tablir + +#: Editor.java:1135 Editor.java:2652 +Cut=Couper + +#: Editor.java:1143 Editor.java:2660 +Copy=Coller + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copier pour le forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Copier en tant qu'HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Coller + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Tout s\u00e9lectionner + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Commenter/D\u00e9commenter + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Augmenter l'indentation + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=R\u00e9duire l'indentation + +#: Editor.java:1220 +Find...=Trouver... + +#: Editor.java:1235 +Find\ Next=Trouver prochain + +#: Editor.java:1245 +Find\ Previous=Trouver pr\u00e9c\u00e9dent + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Utiliser la s\u00e9lection pour trouver + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=S\u00e9lectionnez d'abord un mot \u00e0 trouver dans la r\u00e9f\u00e9rence. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Aucune r\u00e9f\u00e9rence disponible pour \u00ab\u00a0{0}\u00a0\u00bb + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Compilation du croquis... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compilation termin\u00e9e. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Enregistrer les changements dans \u00ab\u00a0{0}\u00a0\u00bb\u00a0? + +#: Editor.java:2006 +\ \ 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. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Annuler + +#: Editor.java:2017 +Don't\ Save=Ne pas enregistrer + +#: Editor.java:2089 +Bad\ file\ selected=Mauvais fichier s\u00e9lectionn\u00e9 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing ne peut ouvrir que ses propres croquis\nou les fichiers se terminant par .ino ou .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Le fichier \u00ab\u00a0{0}\u00a0\u00bb doit r\u00e9sider dans\nun dossier de croquis nomm\u00e9 \u00ab\u00a0{1}\u00a0\u00bb.\nCr\u00e9er ce dossier, d\u00e9placer le fichier et continuer\u00a0? + +#: Editor.java:2109 +Moving=D\u00e9placement + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Erreur + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Un dossier nomm\u00e9 \u00ab\u00a0{0}\u00a0\u00bb existe d\u00e9j\u00e0. Impossible d''ouvrir le croquis. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Impossible de cr\u00e9er le dossier de croquis. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Impossible de copier au bon emplacement. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Impossible de cr\u00e9er le croquis. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Enregistrement... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Enregistrement termin\u00e9. + +#: Editor.java:2270 +Save\ Canceled.=Sauvegarde annul\u00e9e. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port s\u00e9rie {0} introuvable.\nR\u00e9essayer le t\u00e9l\u00e9versement \u00e0 partir d''un autre port s\u00e9rie\u00a0? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=T\u00e9l\u00e9versement vers la carte E/S... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=T\u00e9l\u00e9versement termin\u00e9 + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=T\u00e9l\u00e9versement annul\u00e9. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Enregistrer les changements avant d'exporter\u00a0? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportation annul\u00e9e, les changements doivent d'abord \u00eatre enregistr\u00e9s. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Grave la s\u00e9quence d'initialisation vers la carte E/S\n(Cela pourrait prendre quelque temps)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Gravure de la s\u00e9quence d'initialisation termin\u00e9e. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Erreur lors de la gravure de la s\u00e9quence d'initialisation. + +#: Editor.java:2500 +Printing...=Impression... + +#: Editor.java:2517 +Done\ printing.=Impression termin\u00e9e. + +#: Editor.java:2520 +Error\ while\ printing.=Erreur d'impression. + +#: Editor.java:2524 +Printing\ canceled.=Impression annul\u00e9e. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Erreur \u00e0 la ligne\u00a0\: {0} + +#: Editor.java:2641 +Open\ URL=Ouvrir URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Une nouvelle version d'Arduino est disponible,\nvoulez-vous visiter la page de t\u00e9l\u00e9chargement\u00a0? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Oui + +#: UpdateCheck.java:108 Preferences.java:77 +No=Non + +#: UpdateCheck.java:111 +Update=Mise \u00e0 jour + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Trouver\u00a0\: + +#: FindReplace.java:81 +Replace\ with\:=Remplacer par\u00a0\: + +#: FindReplace.java:96 +Ignore\ Case=Ignorer la casse + +#: FindReplace.java:105 +Wrap\ Around=Recherche circulaire + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Tout remplacer + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Remplacer + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Trouver & Remplacer + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Pr\u00e9c\u00e9dent + +#: FindReplace.java:124 FindReplace.java:127 +Find=Trouver + +#: SerialMonitor.java:93 +Send=Envoyer + +#: SerialMonitor.java:110 +Autoscroll=D\u00e9filement automatique + +#: SerialMonitor.java:112 +No\ line\ ending=Pas de fin de ligne + +#: SerialMonitor.java:112 +Newline=Nouvelle ligne + +#: SerialMonitor.java:112 +Carriage\ return=Retour chariot + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb d\u00e9j\u00e0 utilis\u00e9. Essayez de quitter tout logiciel qui pourrait s''en servir. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Erreur d''ouverture du port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb non trouv\u00e9. L''avez-vous bien s\u00e9lectionn\u00e9 dans le menu Outils > Port s\u00e9rie\u00a0? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Le tampon m\u00e9moire readBytesUntil() est trop petit pour les {0} octets jusqu''au caract\u00e8re {1} inclus + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Erreur dans Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Formatage automatique + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Aucun changement n\u00e9cessaire pour le formatage automatique. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Formatage automatique annul\u00e9, trop de parenth\u00e8ses fermantes. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Formatage automatique annul\u00e9, trop de parenth\u00e8ses ouvrantes. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Formatage automatique annul\u00e9, trop d'accolades fermantes. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Formatage automatique annul\u00e9, trop d'accolades ouvrantes. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Formatage automatique termin\u00e9. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=R\u00e9parer encodage & recharger + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Laisser tomber les changements et recharger le croquis\u00a0? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Une erreur est survenue lors de la r\u00e9paration de l'encodage du fichier.\nNe pas tenter d'enregistrer ce croquis, car cela pourrait \u00e9craser\nl'ancienne version. Utiliser Ouvrir pour r\u00e9ouvrir le croquis et r\u00e9essayer.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Archiver le croquis + +#: tools/Archiver.java:59 +yyMMdd=yyyyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Impossible d'archiver le croquis + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=L'archivage du croquis a \u00e9t\u00e9 annul\u00e9 car\nle croquis n'a pu s'enregistrer correctement. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Archiver le croquis sous\u00a0\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Archivage du croquis annul\u00e9 + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u00ab\u00a0{0}\u00a0\u00bb contient des caract\u00e8res non reconnus. Si le code a \u00e9t\u00e9 cr\u00e9\u00e9 avec une vieille version de Processing, vous pouvez utiliser Outils -> R\u00e9parer encodage & recharger pour mettre le croquis \u00e0 jour en UTF-8. Sinon, vous devrez supprimer les caract\u00e8res invalides pour supprimer cet avertissement. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Le croquis est en lecture-seule + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Certains fichiers sont marqu\u00e9s \u00ab\u00a0lecture-seule\u00a0\u00bb, vous devrez\nr\u00e9enregistrer le croquis \u00e0 un autre emplacement,\net r\u00e9essayer. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nom du nouveau fichier\u00a0\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Croquis sans nom + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Et si vous enregistriez le croquis\navant d'essayer de le renommer\u00a0? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Probl\u00e8me de renommage + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Le nom ne peut commencer par un point. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=\u00ab\u00a0.{0}\u00a0\u00bb n''est pas une extension valide. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Le fichier principal ne peut utiliser d'extension.\n(Il est peut-\u00eatre temps de migrer vers un\n\u00ab\u00a0vrai\u00a0\u00bb environnement de programmation) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Non + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Un fichier nomm\u00e9 \u00ab\u00a0{0}\u00a0\u00bb existe d\u00e9j\u00e0 dans \u00ab\u00a0{1}\u00a0\u00bb + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Vous ne pouvez avoir de fichier .cpp avec le m\u00eame nom que le croquis. + +#: Sketch.java:425 +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:459 +Cannot\ Rename=Impossible de renommer + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=D\u00e9sol\u00e9, un croquis (ou dossier) nomm\u00e9 \u00ab\u00a0{0}\u00a0\u00bb existe d\u00e9j\u00e0. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Impossible de renommer le croquis. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Impossible de renommer \u00ab\u00a0{0}\u00a0\u00bb en \u00ab\u00a0{1}\u00a0\u00bb + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Impossible de renommer le croquis. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Impossible de renommer le croquis. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() a renvoy\u00e9 false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u00cates-vous certain de vouloir supprimer ce croquis\u00a0? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u00cates-vous certain de vouloir supprimer \u00ab {0}\u00a0\u00bb\u00a0? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Supprimer + +#: Sketch.java:620 +Couldn't\ do\ it=Impossible + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Impossible de supprimer \u00ab\u00a0{0}\u00a0\u00bb. + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\u00a0\: erreur interne.. n'a pu trouver le code + +#: Sketch.java:724 +Sketch\ is\ read-only=Le croquis est en lecture-seule + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Certain fichiers sont marqu\u00e9s "lecture-seule", vous devrez\nr\u00e9enregistrer ce croquis \u00e0 un autre emplacement. + +#: Sketch.java:743 +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?=Dans Arduino 1.0, l'extension par d\u00e9faut a chang\u00e9\nde .pde \u00e0 .ino. Les nouveaux croquis (incluant ceux cr\u00e9\u00e9s\npar \u00ab\u00a0Enregistrer sous\u00a0\u00bb utiliseront la nouvelle extension. L'extension\ndes croquis existants sera mise \u00e0 jour \u00e0 la sauvegarde, mais vous pouvez\nd\u00e9sactiver ceci dans les Pr\u00e9f\u00e9rences.\n\nSauvegarder le croquis et mettre \u00e0 jour son extension\u00a0? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Enregistrer le dossier des croquis sous... + +#: Sketch.java:865 +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. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Comme c'est Borges de votre part + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=S\u00e9lectionner une image ou autre fichier de donn\u00e9es \u00e0 copier \ndans votre croquis + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Remplacer la version existante de {0}\u00a0? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Erreur d'ajout de fichier + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Impossible de supprimer le fichier \u00ab\u00a0{0}\u00a0\u00bb existant. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Tu ne peux pas me tromper\u00a0\! + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ce fichier a d\u00e9j\u00e0 \u00e9t\u00e9 copi\u00e9 \u00e0\nl'emplacement duquel vous essayez de l'ajouter.\nJ'frai rien dans ce cas-l\u00e0. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Impossible d''ajouter \u00ab\u00a0{0}\u00a0\u00bb au croquis. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Dossier de compilation disparu ou n'a pas pu \u00eatre cr\u00e9\u00e9 + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Impossible de trouver la classe principale + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Exception non captur\u00e9e de type\u00a0\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Probl\u00e8me de d\u00e9placement de {0} vers le dossier de compilation + +#: Sketch.java:1661 +Uploading...=T\u00e9l\u00e9versement... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Taille binaire du croquis\u00a0\: {0} octets (d''un max de {1} octets) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Impossible de d\u00e9terminer la taille du programme\u00a0\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Croquis trop gros\u00a0; vois http\://www.arduino.cc/en/Guide/Troubleshooting\#size pour des conseils de r\u00e9duction. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Il manque le */ sur la fin d'un /* commentaire */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Croquis disparu + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Le dossier croquis a disparu.\nNous allons essayer de r\u00e9enregistrer au m\u00eame emplacement,\nmais seul le code sera conserv\u00e9. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Impossible de r\u00e9enregistrer le croquis + +#: Sketch.java:1811 +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.=Impossible de r\u00e9enregistrer correctement le croquis. Pour \u00e9viter de perdre votre\ntravail, faites un copier-coller de votre code dans un autre \u00e9diteur texte. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Le nom du croquis doit \u00eatre chang\u00e9. Les noms de croquis doivent consister\nde caract\u00e8res ASCII et de chiffres (mais ne peuvent commencer par un chiffre).\nIls doivent aussi \u00eatre plus courts que 64 caract\u00e8res. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erreur de compilation, veuillez soumettre ce code \u00e0 {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=le port s\u00e9rie s\u00e9lectionn\u00e9 {0} n''existe pas ou votre Arduino n''est pas connect\u00e9e + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=L'appareil ne r\u00e9pond pas, v\u00e9rifiez que le bon port s\u00e9rie est s\u00e9lectionn\u00e9 ou r\u00e9initialisez (RESET) l'Arduino avant d'exporter + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probl\u00e8me de t\u00e9l\u00e9versement vers la carte. Voir http\://www.arduino.cc/en/Guide/Troubleshooting\#upload pour suggestions. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mauvais microcontr\u00f4leur trouv\u00e9. Avez-vous s\u00e9lectionn\u00e9 la bonne carte dans le menu Outils > Type de carte\u00a0? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Aucune carte s\u00e9lectionn\u00e9e, veuillez choisir une carte dans le menu Outil > Type de carte. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} a retourn\u00e9 {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Erreur de compilation. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Veuillez importer la biblioth\u00e8que SPI depuis le menu Croquis > Importer biblioth\u00e8que. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nDepuis Arduino 0019, la biblioth\u00e8que Ethernet d\u00e9pend de la biblioth\u00e8que SPI.\nVous semblez l'utiliser ou une autre biblioth\u00e8que qui d\u00e9pend de la biblioth\u00e8que SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Le mot-cl\u00e9 \u00ab\u00a0BYTE\u00a0\u00bb n'est plus support\u00e9. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nDepuis Arduino 1.0, le mot-cl\u00e9 \u00ab\u00a0BYTE\u00a0\u00bb n'est plus support\u00e9.\nVeuillez utiliser Serial.write() \u00e0 la place.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=La classe Server a \u00e9t\u00e9 renomm\u00e9e EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDepuis Arduino 1.0, la classe Server de la biblioth\u00e8que Ethernet a \u00e9t\u00e9 renomm\u00e9e en EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client a \u00e9t\u00e9 renomm\u00e9e EthernetClient + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDepuis Arduino 1.0, la classe Client de la biblioth\u00e8que Ethernet a \u00e9t\u00e9 renomm\u00e9e en EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=La classe Udp a \u00e9t\u00e9 renomm\u00e9e EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDepuis Arduino 1.0, la classe Udp de la biblioth\u00e8que Ethernet a \u00e9t\u00e9 renomm\u00e9e en EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() a \u00e9t\u00e9 renomm\u00e9e Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDepuis Arduino 1.0, la fonction Wire.send() \u00e0 \u00e9t\u00e9 renomm\u00e9e en Wire.write() pour maintenir une coh\u00e9rence avec d'autres biblioth\u00e8ques.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() a \u00e9t\u00e9 renomm\u00e9e Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDepuis Arduino 1.0, la fonction Wire.receive() a \u00e9t\u00e9 renomm\u00e9e en Wire.read() pour maintenir une coh\u00e9rence avec d'autres biblioth\u00e8ques.\n\n + +#: EditorConsole.java:152 +Console\ Error=Erreur de console + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Un probl\u00e8me est survenu lors de l'ouverture\ndes fichiers contenant la sortie de console. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erreur non fatale lors du changement d'apparence. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Le message d'erreur suit, mais Arduino devrait bien s'ex\u00e9cuter. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Probl\u00e8me \u00e0 configurer la plate-forme + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Une erreur inconnue est survenue en essayant de charger\ndu code de sp\u00e9cifique \u00e0 votre plate-forme. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Veuillez installer JDK 1.5 ou ult\u00e9rieur + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requiert le JDK complet (pas seulement un JRE)\nafin de s'ex\u00e9cuter. Veuillez installer JDK 1.5 ou ult\u00e9rieur.\nPlus d'informations peuvent \u00eatre trouv\u00e9es dans la documentation. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Le dossier des croquis est disparu + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Le dossier des croquis n'existe plus.\nArduino va aller \u00e0 l'emplacement\npar d\u00e9faut, et cr\u00e9er un nouveau dossier\nsi n\u00e9cessaire. Arduino cessera ensuite\nde parler de lui-m\u00eame \u00e0 la troisi\u00e8me personne. + +#: Base.java:532 +Time\ for\ a\ Break=C'est l'heure d'une pause + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Tu as atteint la limite quotidienne de noms g\u00e9n\u00e9r\u00e9s.\nEt si tu allais te promener\u00a0? + +#: Base.java:537 +Sunshine=Soleil + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Non vraiment, tu devrais aller prendre l'air. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Ouvrir un croquis Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u00cates-vous certain de vouloir quitter\u00a0?

Fermer le dernier croquis quittera l'environnement Arduino. + +#: Base.java:970 +Contributed=Contribu\u00e9 + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Ce croquis n'existe pas + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Le croquis s\u00e9lectionn\u00e9 n'existe plus.\nVous devrez red\u00e9marrer Arduino pour mettre \u00e0 jour\nle menu Carnet de croquis. + +#: Base.java:1125 +#, 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}=Le croquis \u00ab\u00a0{0}\u00a0\u00bb ne peut \u00eatre utilis\u00e9.\nLes noms de croquis ne doivent contenir que des lettres et des chiffres\n(ASCII seulement sans espace, et ne peuvent commencer par un chiffre)\nPour se d\u00e9barrasser de ce message, retirer le croquis de\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignore un croquis mal nomm\u00e9 + +#: Base.java:1202 +#, 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)=La biblioth\u00e8que \u00ab\u00a0{0}\u00a0\u00bb ne peut \u00eatre utilis\u00e9e.\nLes noms de biblioth\u00e8ques ne doivent contenir que des lettres et des chiffres.\n(ASCII seulement sans espace, et ne peuvent commencer par un chiffre) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignore la biblioth\u00e8que mal nomm\u00e9e + +#: Base.java:1432 +Problem\ getting\ data\ folder=Probl\u00e8me d'obtention du dossier de donn\u00e9es + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Probl\u00e8me d'obtention du dossier de donn\u00e9es d'Arduino + +#: Base.java:1440 +Settings\ issues=Probl\u00e8mes de param\u00e8tres + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino ne peut s'ex\u00e9cuter car il\nne peut cr\u00e9er un dossier pour sauvegarder vos param\u00e8tres. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Vous avez oubli\u00e9 votre carnet de croquis + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino n'a pas pu s'ex\u00e9cuter car il n'a\npas pu cr\u00e9er de dossier pour enregistrer votre carnet de croquis. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=S\u00e9lectionner (ou cr\u00e9er) un dossier de croquis... + +#: Base.java:1647 +Problem\ Opening\ URL=Probl\u00e8me de chargement d'URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Impossible d''ouvrir l''URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Probl\u00e8me d'ouverture de dossier + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Impossible d''ouvrir le dossier\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=environnement + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Message + +#: Base.java:1842 +Warning=Avertissement + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Impossible de retirer la vieille version de {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Impossible de remplacer {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Impossible de supprimer {0} + +#: EditorHeader.java:292 +New\ Tab=Nouvel onglet + +#: EditorHeader.java:300 +Rename=Renommer + +#: EditorHeader.java:326 +Previous\ Tab=Onglet pr\u00e9c\u00e9dent + +#: EditorHeader.java:340 +Next\ Tab=Onglet suivant + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=V\u00e9rifier + +#: EditorToolbar.java:41 +Open=Ouvrir + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nouvelle fen\u00eatre d'\u00e9diteur + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Ouvrir dans une nouvelle fen\u00eatre + +#: Platform.java:167 +No\ launcher\ available=Aucun lanceur disponible + +#: 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 + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Impossible de lire les param\u00e8tres du th\u00e8me de couleurs.\nVous devrez r\u00e9installer Processing. + +#: Preferences.java:80 +Browse=Parcourir + +#: Preferences.java:83 +System\ Default=Langue du syst\u00e8me + +#: Preferences.java:84 +Arabic=arabe + +#: Preferences.java:85 +Aragonese=aragonais + +#: Preferences.java:86 +Catalan=catalan + +#: Preferences.java:87 +Chinese\ Simplified=chinois - simplifi\u00e9 + +#: Preferences.java:88 +Chinese\ Traditional=chinois - traditionnel + +#: Preferences.java:89 +Danish=danois + +#: Preferences.java:90 +Dutch=n\u00e9erlandais + +#: Preferences.java:91 +English=anglais + +#: Preferences.java:92 +Estonian=estonien + +#: Preferences.java:93 +French=fran\u00e7ais + +#: Preferences.java:94 +Filipino=filipino + +#: Preferences.java:95 +Galician=galicien + +#: Preferences.java:96 +German=allemand + +#: Preferences.java:97 +Greek=grec + +#: Preferences.java:98 +Hungarian=hongrois + +#: Preferences.java:99 +Indonesian=indon\u00e9sien + +#: Preferences.java:100 +Italian=italien + +#: Preferences.java:101 +Japanese=japonais + +#: Preferences.java:102 +Korean=cor\u00e9en + +#: Preferences.java:103 +Latvian=letton + +#: Preferences.java:104 +Lithuaninan=lituanien + +#: Preferences.java:105 +Persian=persan + +#: Preferences.java:106 +Polish=polonais + +#: Preferences.java:107 Preferences.java:108 +Portuguese=portugais + +#: Preferences.java:109 +Romanian=roumain + +#: Preferences.java:110 +Russian=russe + +#: Preferences.java:111 +Spanish=espagnol + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer l'environnement Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Impossible de lire les pr\u00e9f\u00e9rences depuis {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Erreur de lecture des pr\u00e9f\u00e9rences + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Erreur de lecture du fichier de pr\u00e9f\u00e9rences. Veuillez supprimer (ou d\u00e9placer)\n{0} et red\u00e9marrer Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Emplacement du carnet de croquis + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=S\u00e9lectionner un nouvel emplacement pour le carnet de croquis + +#: Preferences.java:337 +Editor\ language\:\ =Choix de la langue \: + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Taille de police de l'\u00e9diteur\u00a0\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Afficher les r\u00e9sultats d\u00e9taill\u00e9s pendant\u00a0\: + +#: Preferences.java:373 +compilation\ =compilation + +#: Preferences.java:375 +upload=t\u00e9l\u00e9versement + +#: Preferences.java:384 +Verify\ code\ after\ upload=V\u00e9rifier le code apr\u00e8s t\u00e9l\u00e9versement + +#: Preferences.java:393 +Use\ external\ editor=Utiliser un \u00e9diteur externe + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=V\u00e9rifier les mises \u00e0 jour au d\u00e9marrage + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Mettre \u00e0 jour vers la nouvelle extension lors de la sauvegarde (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Associer automatiquement les fichiers .ino avec Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Davantage de pr\u00e9f\u00e9rences peuvent \u00eatre \u00e9dit\u00e9es directement dans le fichier + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e9diter uniquement lorsque Arduino ne s'ex\u00e9cute pas) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignore la taille de police invalide {0} diff --git a/app/src/processing/app/Resources_gl.po b/app/src/processing/app/Resources_gl.po new file mode 100644 index 000000000..0912b06d9 --- /dev/null +++ b/app/src/processing/app/Resources_gl.po @@ -0,0 +1,1670 @@ +# Galician translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Diego Prado Gesto <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-30 10:40+0100\n" +"PO-Revision-Date: 2012-04-03 15:00+0100\n" +"Last-Translator: Diego Prado Gesto <>\n" +"Language-Team: Galician\n" +"Language: gl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Non se agregou ningún arquivo ao sketch." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Un arquivo agregado ao sketch." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} arquivos agregados ao sketch." + +#: Editor.java:484 +msgid "File" +msgstr "Arquivo" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Novo" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Abrir..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "" + +#: Editor.java:509 +msgid "Examples" +msgstr "Exemplos" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Pechar" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Gardar" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Gardar como..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Cargar" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Cargar usando Programador" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Configuración de Páxina" + +#: Editor.java:564 +msgid "Print" +msgstr "Imprimir" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferencias" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Saír" + +#: Editor.java:600 +msgid "Sketch" +msgstr "" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verificar / Compilar" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importar Libraría..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Mostrar Carpeta de Sketch" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Agregar Arquivo..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Ferramentas" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitor Serie" + +#: Editor.java:682 +msgid "Board" +msgstr "Tarxeta" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Porto Serie" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programador" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Grabar Cargador de Inicio" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu é nulo" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "nome é nulo" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "erro recuperando a lista de portos" + +#: Editor.java:1002 +msgid "Help" +msgstr "Axuda" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Comezando" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Entorno" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Solución de problemas" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Documentación" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Buscar na Documentación" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Preguntas frecuentes" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Visitar Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Acerca de Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Editar" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Desfacer" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Refacer" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Cortar" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Copiar" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copiar para o Foro" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Copiar como HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Pegar" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Seleccionar Todo" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Comentar/Descomentar" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Incrementar Indentación" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Reducir Indentación" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Buscar..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Buscar Seguinte" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Buscar Anterior" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Utilizar Selección para buscar" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Primeiro selecciona unha palabra para buscar na documentación." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Non hai referencias dispoñibles para \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Compilando Sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compilación rematada" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Gardar cambios a \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Desexas " +"garda-los cambios a este sketch
antes de pechar?

Se non os " +"gardas, perderanse os cambios." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Cancelar" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Non Gardar" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Seleccionado arquivo incorrecto" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing só pode abrir os seus propios sketches\n" +"e outros arquivos rematados en .ino ou .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "Aceptar" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"O arquivo \"{0}\" necesita estar dentro\n" +"dunha carpeta de sketch chamada \"{1}\".\n" +"Crear esta carpeta, mover este arquivo e continuar?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Movendo" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Erro" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Xa existe unha carpeta chamada \"{0}\". Non se puido abri-lo sketch." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Non se puido crea-la carpeta do sketch." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Non se puido copiar a unha ubicación axeitada." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Non se puido crea-lo sketch." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Gardando..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Gardado rematado." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Gardado cancelado." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"O porto serie {0} non foi atopado\n" +"Volver a tenta-la carga con outro porto serie?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Cargando á Tarxeta de E/S..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Carga rematada." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Carga cancelada." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Gardar cambios antes de exportar?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exportación cancelada, primeiro débense garda-los cambios." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Grabando o cargador de inicio á Tarxeta E/S (Esto pode tardar " +"uns minutos)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Rematado o grabado do cargador de inicio." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Erro ao grabar o cargador de inicio." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Imprimindo..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Impresión rematada." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Erro na impresión." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Impresión cancelada." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Liña de erro incorrecta: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Abrir URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Está dispoñible unha nova versión de Arduino,\n" +"desexa visitar a páxina de descargas de Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Sí" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Non" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Actualizar" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Buscar:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Reemplazar con:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignorar maiúsculas e minúsculas" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Búsqueda cíclica" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Reemplazar Todo" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Reemplazar" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Reemplazar e Buscar" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Anterior" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Buscar" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Enviar" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Desprazamento automático" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Non hai fin de liña" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Nova liña" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Retorno de carro" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Ambos NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baudio" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"El porto serie ''{0}'' xa está en uso. Intenta pechar calquer outro programa " +"que o poida estar usando." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Erro abrindo o porto serie ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Porto serie ''{0}'' non atopado. Estás seguro de que seleccionaches o porto correcto " +"do menú Ferramentas > Porto Serie?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"O buffer de bytes de readBytesUntil() é demasiado pequeno para os {0} bytes " +"anteriores incluíndo o caracter {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Erro dentro de Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Formateado Automático" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Non se necesitan cambios para o Formateado Automático" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Formateado Automático Cancelado: demasiados paréntesis dereitos" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Formateado Automático Cancelado: demasiados paréntesis esquerdos" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Formateado Automático Cancelado: demasiadas chaves dereitas" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Formateado Automático Cancelado: demasiadas chaves esquerdas" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Formateado Automático rematado" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Amañar Codificación e Recargar" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Descartar tódolos cambios e recargar sketch?" + +#: 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 "" +"Ocorreu un erro mentres se intentaba amaña-la codificación do\n" +"arquivo. Non intentes gardar este sketch porque pode sobreescribir a\n" +"versión anterior. Utiliza Abrir para volver a abrir o sketch e intentalo de novo.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arquivar Sketch" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Non se pode arquivar o sketch" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"O arquivado do sketch foi cancelado porque\n" +"non foi posible garda-lo sketch correctamente." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arquivar sketch como:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Archivado de sketch cancelado" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Erro mentres se cargaba o código {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" contén caracteres irrecoñecibles. Se este código foi creado cunha " +"versión antiga de Processing, pode que necesites usar Ferramentas -> " +"Amañar Codificación e Recargar para actualizar o sketch para usar a codificación " +"UTF-8. Senón, pode que necesites borrar os caracteres erróneos para desfacerte " +"de este aviso." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "O sketch é de só lectura" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Algúns arquivos están marcados como de \"só lectura\",\n" +"así que necesitarás gardar de novo este sketch noutra ubicación,\n" +"e tentalo de novo." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nome para o novo arquivo:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "O sketch non ten nome" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Qué tal se gardas o sketch primeiro \n" +"antes de tentar renomealo?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problema ao renomear" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "O nome non pode comezar con un punto." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" non é unha extensión válida." + +#: Sketch.java:378 +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 "" +"O arquivo principal non pode usar unha extensión.\n" +"(Pode que sexa hora de que cambies pouco a pouco a un\n" +"entorno de desenrolo \"real\")" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Negativo" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Un arquivo chamado \"{0}\" xa existe en \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Non podes ter un arquivo .cpp co mesmo nome que o sketch." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Non podes renomear o sketch a \"{0}\"\n" +"porque o sketch xa ten un arquivo .cpp con ese nome." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Non se pode renomear" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Síntoo, xa existe un sketch (ou carpeta) chamado \"{0}\"." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Non se pode renomea-lo sketch. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Non se pode renomear \"{0}\" a \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Non se pode renomea-lo sketch. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Non se pode renomea-lo sketch. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() devolveu valor falso" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Estás seguro de que desexas borrar este sketch?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Estás seguro de que desexas borrar \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Borrar" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Non foi posible facelo" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Non se pode borrar \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: erro interno... non foi posible atopar o código" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "O sketch é de só lectura" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Algúns arquivos están marcados como de \"só lectura\",\n" +"así que necesitarás gardar de novo este sketch noutra ubicación." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"En Arduino 1.0, a extensión por defecto dos arquivos cambiou\n" +"de .pde a .ino. Os novos sketches (incluídos os creados\n" +"a partir de \"Gardar-como\") usarán a nova extensión. A extensión\n" +"dos sketches existentes actualizarase ao gardar, pero podes\n" +"deshabilitar esta opción no cadro de Preferencias.\n" +"\n" +"Gardar o sketch e actualizar a súa extensión?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr "" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Gardar a carpeta do sketch como..." + +#: Sketch.java:865 +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}\"\n" +"porque o sketch xa ten un arquivo .cpp con ese nome." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Parece que esto o fixo Borges" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Non podes gardar o sketch nunha carpeta\n" +"dentro de si mesma. Esto podería acabar nun bucle infinito." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Selecciona unha imaxe ou outro arquivo de datos para copiar " +"ao teu sketch" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Reemplazar a versión existente de {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Erro engadindo o arquivo" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Non se pode borrar o arquivo existente ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Non me podes enganar" + +#: Sketch.java:1079 +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 "" +"Este arquivo xa foi copiado na ubicación\n" +"dende a cal estás tentando engadilo.\n" +"Non vou faser nada." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Non se pode engadir ''{0}'' ao sketch." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "A carpeta de desplegue desapareceu ou non se pode escribir nela" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Non se pode atopar a clase principal" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Excepción non atrapada de tipo: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problema movendo {0} á carpeta de desplegue" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Cargando..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Tamaño binario do sketch: {0} bytes (dun máximo de {1} bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Non se pode determinar o tamaño do programa: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Sketch demasiado grande; ver http://www.arduino.cc/en/Guide/" +"Troubleshooting#size para obter consellos de cómo reducilo." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Falta o */ ao final dun comentario de tipo /* */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "O sketch desapareceu" + +#: Sketch.java:1797 +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 "" +"A carpeta do sketch desapareceu.\n" +"Tentarase gardar de novo na mesma ubicación,\n" +"pero calquera cousa aparte do código vaise perder." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Non se pode gardar de novo o sketch" + +#: Sketch.java:1811 +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 "" +"Non se pode gardar correctamente o sketch. Pode haber problemas neste punto,\n" +"e é aconsellable que copies e pegues o teu código noutro editor de textos." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Débese cambiar o nome do sketch. Os nomes de sketch só poden conter\n" +"caracteres ASCII e números (pero non pode comezar con un número).\n" +"Tamén deben conter menos de 64 caracteres." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Erro de compilación, por favor envía este código a {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"O porto serie seleccionado {0} non existe ou a tarxeta non está conectada" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"O dispositivo non responde, revisa que esté seleccionado o porto serie " +"correcto ou REINICIA a tarxeta xusto antes de exportar" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Problema cargando á tarjeta. Vea http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload para suxerencias." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Atopouse un microcontrolador equivocado. Seleccionaches a tarxeta correcta do " +"menú Ferramentas > Tarxeta?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Non hai tarxeta seleccionada; por favor escolle unha tarxeta do menú\n" +"Ferramentas > Tarxeta" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} devolveu {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Erro compilando" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Por favor importa a libraría SPI utilizando o menú\n" +"Sketch > Importar Libraría." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Desde Arduino 0019, a libraría de Ethernet depende da libraría SPI.\n" +"Parece que estás a usar esa libraría ou algunha outra libraría que " +"depende da libraría SPI.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "A palabra chave 'BYTE' xa non está soportada." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, a palabra chave 'BYTE' xa non está soportada.\n" +"Por favor utilice Serial.write() no seu lugar.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "A clase Server foi renomeada a EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, a clase Server na libraría Ethernet foi renomeada " +"a EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "A clase Client foi renomeada a EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, a clase Client na libraría Ethernet foi renomeada " +"a EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "A clase Udp foi renomeada a EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, a clase Udp na libraría Ethernet foi renomeada " +"a EthernetUdp.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() foi renomeado a Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, a función Wire.send() foi renomeada Wire.write() para " +"manter a consistencia con outras librarías.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() foi renomeada a Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Desde Arduino 1.0, a función Wire.receive() foi renomeada a Wire.read() " +"para manter a consistencia con outras librarías.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Erro de Consola" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Ocorreu un problema mentres se tentaba abri-los\n" +"arquivos utilizados para gardar a saída da consola." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Erro non grave mentres se configuraba a aparencia." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "A continuación móstrase a mensaxe de erro, pero Arduino debe continuar\n" +"funcionando ben." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problema Configurando a Plataforma" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Ocorreu un erro descoñecido mentres\n" +"se cargaba o código especifico para a súa plataforma." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Por favor instale o JDK 1.5 ou posterior" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino require o JDK completo (non só o JRE)\n" +"para funcionar. Por favor instale o JDK 1.5 ou superior.\n" +"Poderá atopar máis información na documentación." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "A carpeta Sketchbook desapareceu" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"A carpeta Sketchbook xa non existe.\n" +"Arduino cambiará á ubicación predeterminada\n" +"do Sketchbook, e creará unha nova carpeta Sketchbook\n" +"se fose necesario. Arduino despois deixará de falar de si mesmo\n" +"en terceira persoa." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Hora de descansar" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Alcanzaches o límite para o auto nomeamento de novos sketches\n" +"por hoxe. Qué tal se vas dar un paseo?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "O sol brilla" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "En serio, é hora de que tomes un pouco de aire fresco." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Abrir un sketch de Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Estás\n" +"seguro de que desexas Saír?

Cerrar o último sketch aberto fará que \n" +"Arduino se peche." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribución" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "O sketch non existe" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"O sketch seleccionado non existe.\n" +"É posible que necesites reiniciar Arduino\n" +"para actualizar o menú Sketchbook." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"O sketch \"{0}\" non se pode usar.\n" +"Os nomes de sketch deben conter soamente letras básicas e números\n" +"(Só ASCII sen espazos, e non pode comezar con un número).\n" +"Para desfacerte de esta mensaxe, elimina o sketch de\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignorando sketch con nome incorrecto" + +#: Base.java:1202 +#, java-format +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 "" +"A libraría \"{0}\" non se pode usar.\n" +"Os nomes de libraría deben conter soamente letras básicas e números\n" +"(Só ASCII sen espazos, e non pode comezar con un número).\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignorando nome incorrecto de libraría" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problema obtendo carpeta de datos" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Error obtendo a carpeta de datos de Arduino" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Problemas de configuración" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino non se pode executar porque non puido\n" +"crear unha carpeta para gardar a túa configuración." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Olvidaches o teu Sketchbook" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino non se pode executar porque no puido\n" +"crear unha carpeta para gardar o teu Sketchbook." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Selecciona (ou crea unha nova) carpeta para os sketches..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problema abrindo a URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Non se pode abrir a URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problema abrindo a carpeta" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Non se pode abrir a carpeta\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "" + +#: Base.java:1794 +msgid "index.html" +msgstr "" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "" + +#: Base.java:1804 +msgid "environment" +msgstr "entorno" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "" + +#: Base.java:1826 +msgid "Message" +msgstr "Mensaxe" + +#: Base.java:1842 +msgid "Warning" +msgstr "Alerta" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Non se pode eliminar a versión anterior de {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Non se pode reemplazar {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Non se pode borrar {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nova pestana" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Renomear" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Pestana anterior" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Pestana seguinte" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verificar" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Abrir" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nova Ventá de Edición" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Abrir noutra Ventá" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "No hai un lanzador dispoñible" + +#: 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 "" +"Plataforma non especificada, non hai un lanzador dispoñible.\n" +"Para habilita-la apertura de URLs ou carpetas, engada unha liña como \n" +"\"launcher=/ruta/de/app\" ao arquivo preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Non se pode ler a configuración do esquema de cor.\n" +"Necesitarás volver a instalar Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Navegar" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Non se poden ler as configuracións predeterminadas.\n" +"Necesitarás reinstalar Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "No se poden ler as preferencias de {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Erro lendo as preferencias" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Erro lendo o arquivo de preferencias. Por favor borra (ou move)\n" +"{0} e reinicie Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Ubicación do Sketchbook:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Selecciona a nova ubicación do Sketchbook" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (require reiniciar Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Tamaño do tipo de letra para o editor: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Mostrar resultado detallado durante: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilación " + +#: Preferences.java:375 +msgid "upload" +msgstr "carga" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Verificar o código despois de cargar" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Usar editor externo" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Buscar actualizacións ao iniciar" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Actualiza-los arquivos do sketch con unha nova extensión ao gardar " +"(.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Asociar automáticamente arquivos .ino con Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Pódense editar directamente máis preferencias no arquivo" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(editar só cando Arduino non se esté a executar)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignorando tamaño inválido de tipo de letra {0}" diff --git a/app/src/processing/app/Resources_gl.properties b/app/src/processing/app/Resources_gl.properties new file mode 100644 index 000000000..e6b48b662 --- /dev/null +++ b/app/src/processing/app/Resources_gl.properties @@ -0,0 +1,1034 @@ +# Galician translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Diego Prado Gesto <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-30 10\:40+0100\nPO-Revision-Date\: 2012-04-03 15\:00+0100\nLast-Translator\: Diego Prado Gesto <>\nLanguage-Team\: Galician\nLanguage\: gl\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Non se agregou ning\u00fan arquivo ao sketch. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Un arquivo agregado ao sketch. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} arquivos agregados ao sketch. + +#: Editor.java:484 +File=Arquivo + +#: Editor.java:486 EditorToolbar.java:41 +New=Novo + +#: Editor.java:494 Base.java:903 +Open...=Abrir... + +#: Editor.java:503 +!Sketchbook= + +#: Editor.java:509 +Examples=Exemplos + +#: Editor.java:514 Editor.java:1977 +Close=Pechar + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Gardar + +#: Editor.java:530 +Save\ As...=Gardar como... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Cargar + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Cargar usando Programador + +#: Editor.java:556 +Page\ Setup=Configuraci\u00f3n de P\u00e1xina + +#: Editor.java:564 +Print=Imprimir + +#: Editor.java:576 Preferences.java:279 +Preferences=Preferencias + +#: Editor.java:586 Base.java:782 +Quit=Sa\u00edr + +#: Editor.java:600 +!Sketch= + +#: Editor.java:602 +Verify\ /\ Compile=Verificar / Compilar + +#: Editor.java:629 +Import\ Library...=Importar Librar\u00eda... + +#: Editor.java:634 +Show\ Sketch\ Folder=Mostrar Carpeta de Sketch + +#: Editor.java:643 +Add\ File...=Agregar Arquivo... + +#: Editor.java:656 +Tools=Ferramentas + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitor Serie + +#: Editor.java:682 +Board=Tarxeta + +#: Editor.java:690 +Serial\ Port=Porto Serie + +#: Editor.java:695 +Programmer=Programador + +#: Editor.java:699 +Burn\ Bootloader=Grabar Cargador de Inicio + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu \u00e9 nulo + +#: Editor.java:927 Editor.java:934 +name\ is\ null=nome \u00e9 nulo + +#: Editor.java:986 +error\ retrieving\ port\ list=erro recuperando a lista de portos + +#: Editor.java:1002 +Help=Axuda + +#: Editor.java:1041 +Getting\ Started=Comezando + +#: Editor.java:1049 +Environment=Entorno + +#: Editor.java:1057 +Troubleshooting=Soluci\u00f3n de problemas + +#: Editor.java:1065 +Reference=Documentaci\u00f3n + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Buscar na Documentaci\u00f3n + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Preguntas frecuentes + +#: Editor.java:1091 +Visit\ Arduino.cc=Visitar Arduino.cc + +#: Editor.java:1094 +!http\://arduino.cc/= + +#: Editor.java:1102 +About\ Arduino=Acerca de Arduino + +#: Editor.java:1116 +Edit=Editar + +#: Editor.java:1119 Editor.java:1341 +Undo=Desfacer + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Refacer + +#: Editor.java:1135 Editor.java:2652 +Cut=Cortar + +#: Editor.java:1143 Editor.java:2660 +Copy=Copiar + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copiar para o Foro + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Copiar como HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Pegar + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Seleccionar Todo + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Comentar/Descomentar + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Incrementar Indentaci\u00f3n + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Reducir Indentaci\u00f3n + +#: Editor.java:1220 +Find...=Buscar... + +#: Editor.java:1235 +Find\ Next=Buscar Seguinte + +#: Editor.java:1245 +Find\ Previous=Buscar Anterior + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Utilizar Selecci\u00f3n para buscar + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Primeiro selecciona unha palabra para buscar na documentaci\u00f3n. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Non hai referencias dispo\u00f1ibles para "{0}" + +#: Editor.java:1826 +#, java-format +!{0}.html= + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Compilando Sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compilaci\u00f3n rematada + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Gardar cambios a "{0}"? + +#: Editor.java:2006 +\ \ 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.= Desexas garda-los cambios a este sketch
antes de pechar?

Se non os gardas, perderanse os cambios. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Cancelar + +#: Editor.java:2017 +Don't\ Save=Non Gardar + +#: Editor.java:2089 +Bad\ file\ selected=Seleccionado arquivo incorrecto + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing s\u00f3 pode abrir os seus propios sketches\ne outros arquivos rematados en .ino ou .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=Aceptar + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O arquivo "{0}" necesita estar dentro\ndunha carpeta de sketch chamada "{1}".\nCrear esta carpeta, mover este arquivo e continuar? + +#: Editor.java:2109 +Moving=Movendo + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Erro + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Xa existe unha carpeta chamada "{0}". Non se puido abri-lo sketch. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Non se puido crea-la carpeta do sketch. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Non se puido copiar a unha ubicaci\u00f3n axeitada. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Non se puido crea-lo sketch. + +#: Editor.java:2166 +#, java-format +!{0}\ |\ Arduino\ {1}= + +#: Editor.java:2223 Editor.java:2261 +Saving...=Gardando... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Gardado rematado. + +#: Editor.java:2270 +Save\ Canceled.=Gardado cancelado. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=O porto serie {0} non foi atopado\nVolver a tenta-la carga con outro porto serie? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Cargando \u00e1 Tarxeta de E/S... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Carga rematada. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Carga cancelada. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Gardar cambios antes de exportar? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3n cancelada, primeiro d\u00e9bense garda-los cambios. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Grabando o cargador de inicio \u00e1 Tarxeta E/S (Esto pode tardar uns minutos)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Rematado o grabado do cargador de inicio. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Erro ao grabar o cargador de inicio. + +#: Editor.java:2500 +Printing...=Imprimindo... + +#: Editor.java:2517 +Done\ printing.=Impresi\u00f3n rematada. + +#: Editor.java:2520 +Error\ while\ printing.=Erro na impresi\u00f3n. + +#: Editor.java:2524 +Printing\ canceled.=Impresi\u00f3n cancelada. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Li\u00f1a de erro incorrecta\: {0} + +#: Editor.java:2641 +Open\ URL=Abrir URL + +#: UpdateCheck.java:53 +!http\://www.arduino.cc/latest.txt= + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Est\u00e1 dispo\u00f1ible unha nova versi\u00f3n de Arduino,\ndesexa visitar a p\u00e1xina de descargas de Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=S\u00ed + +#: UpdateCheck.java:108 Preferences.java:77 +No=Non + +#: UpdateCheck.java:111 +Update=Actualizar + +#: UpdateCheck.java:118 +!http\://www.arduino.cc/en/Main/Software= + +#: FindReplace.java:80 +Find\:=Buscar\: + +#: FindReplace.java:81 +Replace\ with\:=Reemplazar con\: + +#: FindReplace.java:96 +Ignore\ Case=Ignorar mai\u00fasculas e min\u00fasculas + +#: FindReplace.java:105 +Wrap\ Around=B\u00fasqueda c\u00edclica + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Reemplazar Todo + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Reemplazar + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Reemplazar e Buscar + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Anterior + +#: FindReplace.java:124 FindReplace.java:127 +Find=Buscar + +#: SerialMonitor.java:93 +Send=Enviar + +#: SerialMonitor.java:110 +Autoscroll=Desprazamento autom\u00e1tico + +#: SerialMonitor.java:112 +No\ line\ ending=Non hai fin de li\u00f1a + +#: SerialMonitor.java:112 +Newline=Nova li\u00f1a + +#: SerialMonitor.java:112 +Carriage\ return=Retorno de carro + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Ambos NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baudio + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=El porto serie ''{0}'' xa est\u00e1 en uso. Intenta pechar calquer outro programa que o poida estar usando. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Erro abrindo o porto serie ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porto serie ''{0}'' non atopado. Est\u00e1s seguro de que seleccionaches o porto correcto do men\u00fa Ferramentas > Porto Serie? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=O buffer de bytes de readBytesUntil() \u00e9 demasiado pequeno para os {0} bytes anteriores inclu\u00edndo o caracter {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Erro dentro de Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Formateado Autom\u00e1tico + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Non se necesitan cambios para o Formateado Autom\u00e1tico + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Formateado Autom\u00e1tico Cancelado\: demasiados par\u00e9ntesis dereitos + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Formateado Autom\u00e1tico Cancelado\: demasiados par\u00e9ntesis esquerdos + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Formateado Autom\u00e1tico Cancelado\: demasiadas chaves dereitas + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Formateado Autom\u00e1tico Cancelado\: demasiadas chaves esquerdas + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Formateado Autom\u00e1tico rematado + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Ama\u00f1ar Codificaci\u00f3n e Recargar + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Descartar t\u00f3dolos cambios e recargar sketch? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ocorreu un erro mentres se intentaba ama\u00f1a-la codificaci\u00f3n do\narquivo. Non intentes gardar este sketch porque pode sobreescribir a\nversi\u00f3n anterior. Utiliza Abrir para volver a abrir o sketch e intentalo de novo.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Arquivar Sketch + +#: tools/Archiver.java:59 +!yyMMdd= + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Non se pode arquivar o sketch + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=O arquivado do sketch foi cancelado porque\nnon foi posible garda-lo sketch correctamente. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arquivar sketch como\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Archivado de sketch cancelado + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Erro mentres se cargaba o c\u00f3digo {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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\u00e9n caracteres irreco\u00f1ecibles. Se este c\u00f3digo foi creado cunha versi\u00f3n antiga de Processing, pode que necesites usar Ferramentas -> Ama\u00f1ar Codificaci\u00f3n e Recargar para actualizar o sketch para usar a codificaci\u00f3n UTF-8. Sen\u00f3n, pode que necesites borrar os caracteres err\u00f3neos para desfacerte de este aviso. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=O sketch \u00e9 de s\u00f3 lectura + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alg\u00fans arquivos est\u00e1n marcados como de "s\u00f3 lectura",\nas\u00ed que necesitar\u00e1s gardar de novo este sketch noutra ubicaci\u00f3n,\ne tentalo de novo. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nome para o novo arquivo\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=O sketch non ten nome + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Qu\u00e9 tal se gardas o sketch primeiro \nantes de tentar renomealo? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Problema ao renomear + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=O nome non pode comezar con un punto. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" non \u00e9 unha extensi\u00f3n v\u00e1lida. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O arquivo principal non pode usar unha extensi\u00f3n.\n(Pode que sexa hora de que cambies pouco a pouco a un\nentorno de desenrolo "real") + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Negativo + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Un arquivo chamado "{0}" xa existe en "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Non podes ter un arquivo .cpp co mesmo nome que o sketch. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes renomear o sketch a "{0}"\nporque o sketch xa ten un arquivo .cpp con ese nome. + +#: Sketch.java:459 +Cannot\ Rename=Non se pode renomear + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=S\u00edntoo, xa existe un sketch (ou carpeta) chamado "{0}". + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Non se pode renomea-lo sketch. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Non se pode renomear "{0}" a "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Non se pode renomea-lo sketch. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Non se pode renomea-lo sketch. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() devolveu valor falso + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Est\u00e1s seguro de que desexas borrar este sketch? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Est\u00e1s seguro de que desexas borrar "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Borrar + +#: Sketch.java:620 +Couldn't\ do\ it=Non foi posible facelo + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Non se pode borrar "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno... non foi posible atopar o c\u00f3digo + +#: Sketch.java:724 +Sketch\ is\ read-only=O sketch \u00e9 de s\u00f3 lectura + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alg\u00fans arquivos est\u00e1n marcados como de "s\u00f3 lectura",\nas\u00ed que necesitar\u00e1s gardar de novo este sketch noutra ubicaci\u00f3n. + +#: Sketch.java:743 +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En Arduino 1.0, a extensi\u00f3n por defecto dos arquivos cambiou\nde .pde a .ino. Os novos sketches (inclu\u00eddos os creados\na partir de "Gardar-como") usar\u00e1n a nova extensi\u00f3n. A extensi\u00f3n\ndos sketches existentes actualizarase ao gardar, pero podes\ndeshabilitar esta opci\u00f3n no cadro de Preferencias.\n\nGardar o sketch e actualizar a s\u00faa extensi\u00f3n? + +#: Sketch.java:750 +!.pde\ ->\ .ino= + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Gardar a carpeta do sketch como... + +#: Sketch.java:865 +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 "{0}"\nporque o sketch xa ten un arquivo .cpp con ese nome. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Parece que esto o fixo Borges + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Non podes gardar o sketch nunha carpeta\ndentro de si mesma. Esto poder\u00eda acabar nun bucle infinito. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecciona unha imaxe ou outro arquivo de datos para copiar ao teu sketch + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Reemplazar a versi\u00f3n existente de {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Erro engadindo o arquivo + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Non se pode borrar o arquivo existente ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Non me podes enganar + +#: Sketch.java:1079 +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 xa foi copiado na ubicaci\u00f3n\ndende a cal est\u00e1s tentando engadilo.\nNon vou faser nada. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Non se pode engadir ''{0}'' ao sketch. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=A carpeta de desplegue desapareceu ou non se pode escribir nela + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Non se pode atopar a clase principal + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Excepci\u00f3n non atrapada de tipo\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problema movendo {0} \u00e1 carpeta de desplegue + +#: Sketch.java:1661 +Uploading...=Cargando... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Tama\u00f1o binario do sketch\: {0} bytes (dun m\u00e1ximo de {1} bytes) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Non se pode determinar o tama\u00f1o do programa\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch demasiado grande; ver http\://www.arduino.cc/en/Guide/Troubleshooting\#size para obter consellos de c\u00f3mo reducilo. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ ao final dun comentario de tipo /* */ + +#: Sketch.java:1796 +Sketch\ Disappeared=O sketch desapareceu + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A carpeta do sketch desapareceu.\nTentarase gardar de novo na mesma ubicaci\u00f3n,\npero calquera cousa aparte do c\u00f3digo vaise perder. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Non se pode gardar de novo o sketch + +#: Sketch.java:1811 +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.=Non se pode gardar correctamente o sketch. Pode haber problemas neste punto,\ne \u00e9 aconsellable que copies e pegues o teu c\u00f3digo noutro editor de textos. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=D\u00e9bese cambiar o nome do sketch. Os nomes de sketch s\u00f3 poden conter\ncaracteres ASCII e n\u00fameros (pero non pode comezar con un n\u00famero).\nTam\u00e9n deben conter menos de 64 caracteres. + +#: debug/Uploader.java:52 +!https\://developer.berlios.de/bugs/?group_id\=3590= + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro de compilaci\u00f3n, por favor env\u00eda este c\u00f3digo a {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=O porto serie seleccionado {0} non existe ou a tarxeta non est\u00e1 conectada + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo non responde, revisa que est\u00e9 seleccionado o porto serie correcto ou REINICIA a tarxeta xusto antes de exportar + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema cargando \u00e1 tarjeta. Vea http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para suxerencias. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Atopouse un microcontrolador equivocado. Seleccionaches a tarxeta correcta do men\u00fa Ferramentas > Tarxeta? + +#: debug/Compiler.java:41 +!http\://code.google.com/p/arduino/issues/list= + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Non hai tarxeta seleccionada; por favor escolle unha tarxeta do men\u00fa\nFerramentas > Tarxeta + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} devolveu {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Erro compilando + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importa a librar\u00eda SPI utilizando o men\u00fa\nSketch > Importar Librar\u00eda. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nDesde Arduino 0019, a librar\u00eda de Ethernet depende da librar\u00eda SPI.\nParece que est\u00e1s a usar esa librar\u00eda ou algunha outra librar\u00eda que depende da librar\u00eda SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palabra chave 'BYTE' xa non est\u00e1 soportada. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nDesde Arduino 1.0, a palabra chave 'BYTE' xa non est\u00e1 soportada.\nPor favor utilice Serial.write() no seu lugar.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A clase Server foi renomeada a EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDesde Arduino 1.0, a clase Server na librar\u00eda Ethernet foi renomeada a EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A clase Client foi renomeada a EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDesde Arduino 1.0, a clase Client na librar\u00eda Ethernet foi renomeada a EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp foi renomeada a EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDesde Arduino 1.0, a clase Udp na librar\u00eda Ethernet foi renomeada a EthernetUdp.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() foi renomeado a Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde Arduino 1.0, a funci\u00f3n Wire.send() foi renomeada Wire.write() para manter a consistencia con outras librar\u00edas.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() foi renomeada a Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde Arduino 1.0, a funci\u00f3n Wire.receive() foi renomeada a Wire.read() para manter a consistencia con outras librar\u00edas.\n\n + +#: EditorConsole.java:152 +Console\ Error=Erro de Consola + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ocorreu un problema mentres se tentaba abri-los\narquivos utilizados para gardar a sa\u00edda da consola. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erro non grave mentres se configuraba a aparencia. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=A continuaci\u00f3n m\u00f3strase a mensaxe de erro, pero Arduino debe continuar\nfuncionando ben. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problema Configurando a Plataforma + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ocorreu un erro desco\u00f1ecido mentres\nse cargaba o c\u00f3digo especifico para a s\u00faa plataforma. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Por favor instale o JDK 1.5 ou posterior + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino require o JDK completo (non s\u00f3 o JRE)\npara funcionar. Por favor instale o JDK 1.5 ou superior.\nPoder\u00e1 atopar m\u00e1is informaci\u00f3n na documentaci\u00f3n. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=A carpeta Sketchbook desapareceu + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A carpeta Sketchbook xa non existe.\nArduino cambiar\u00e1 \u00e1 ubicaci\u00f3n predeterminada\ndo Sketchbook, e crear\u00e1 unha nova carpeta Sketchbook\nse fose necesario. Arduino despois deixar\u00e1 de falar de si mesmo\nen terceira persoa. + +#: Base.java:532 +Time\ for\ a\ Break=Hora de descansar + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Alcanzaches o l\u00edmite para o auto nomeamento de novos sketches\npor hoxe. Qu\u00e9 tal se vas dar un paseo? + +#: Base.java:537 +Sunshine=O sol brilla + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=En serio, \u00e9 hora de que tomes un pouco de aire fresco. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Abrir un sketch de Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Est\u00e1s\nseguro de que desexas Sa\u00edr?

Cerrar o \u00faltimo sketch aberto far\u00e1 que \nArduino se peche. + +#: Base.java:970 +Contributed=Contribuci\u00f3n + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=O sketch non existe + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=O sketch seleccionado non existe.\n\u00c9 posible que necesites reiniciar Arduino\npara actualizar o men\u00fa Sketchbook. + +#: Base.java:1125 +#, 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}=O sketch "{0}" non se pode usar.\nOs nomes de sketch deben conter soamente letras b\u00e1sicas e n\u00fameros\n(S\u00f3 ASCII sen espazos, e non pode comezar con un n\u00famero).\nPara desfacerte de esta mensaxe, elimina o sketch de\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignorando sketch con nome incorrecto + +#: Base.java:1202 +#, 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)=A librar\u00eda "{0}" non se pode usar.\nOs nomes de librar\u00eda deben conter soamente letras b\u00e1sicas e n\u00fameros\n(S\u00f3 ASCII sen espazos, e non pode comezar con un n\u00famero).\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignorando nome incorrecto de librar\u00eda + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problema obtendo carpeta de datos + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Error obtendo a carpeta de datos de Arduino + +#: Base.java:1440 +Settings\ issues=Problemas de configuraci\u00f3n + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino non se pode executar porque non puido\ncrear unha carpeta para gardar a t\u00faa configuraci\u00f3n. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Olvidaches o teu Sketchbook + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino non se pode executar porque no puido\ncrear unha carpeta para gardar o teu Sketchbook. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecciona (ou crea unha nova) carpeta para os sketches... + +#: Base.java:1647 +Problem\ Opening\ URL=Problema abrindo a URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Non se pode abrir a URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problema abrindo a carpeta + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Non se pode abrir a carpeta\n{0} + +#: Base.java:1785 +!Guide_MacOSX.html= + +#: Base.java:1787 +!Guide_Windows.html= + +#: Base.java:1789 +!http\://www.arduino.cc/playground/Learning/Linux= + +#: Base.java:1794 +!index.html= + +#: Base.java:1799 +!Guide_Environment.html= + +#: Base.java:1804 +environment=entorno + +#: Base.java:1804 +!platforms.html= + +#: Base.java:1809 +!Guide_Troubleshooting.html= + +#: Base.java:1814 +!FAQ.html= + +#: Base.java:1826 +Message=Mensaxe + +#: Base.java:1842 +Warning=Alerta + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Non se pode eliminar a versi\u00f3n anterior de {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Non se pode reemplazar {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Non se pode borrar {0} + +#: EditorHeader.java:292 +New\ Tab=Nova pestana + +#: EditorHeader.java:300 +Rename=Renomear + +#: EditorHeader.java:326 +Previous\ Tab=Pestana anterior + +#: EditorHeader.java:340 +Next\ Tab=Pestana seguinte + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verificar + +#: EditorToolbar.java:41 +Open=Abrir + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nova Vent\u00e1 de Edici\u00f3n + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Abrir noutra Vent\u00e1 + +#: Platform.java:167 +No\ launcher\ available=No hai un lanzador dispo\u00f1ible + +#: 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 non especificada, non hai un lanzador dispo\u00f1ible.\nPara habilita-la apertura de URLs ou carpetas, engada unha li\u00f1a como \n"launcher\=/ruta/de/app" ao arquivo preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Non se pode ler a configuraci\u00f3n do esquema de cor.\nNecesitar\u00e1s volver a instalar Processing. + +#: Preferences.java:80 +Browse=Navegar + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Non se poden ler as configuraci\u00f3ns predeterminadas.\nNecesitar\u00e1s reinstalar Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=No se poden ler as preferencias de {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Erro lendo as preferencias + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Erro lendo o arquivo de preferencias. Por favor borra (ou move)\n{0} e reinicie Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Ubicaci\u00f3n do Sketchbook\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Selecciona a nova ubicaci\u00f3n do Sketchbook + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (require reiniciar Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Tama\u00f1o do tipo de letra para o editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Mostrar resultado detallado durante\: + +#: Preferences.java:373 +compilation\ =compilaci\u00f3n + +#: Preferences.java:375 +upload=carga + +#: Preferences.java:384 +Verify\ code\ after\ upload=Verificar o c\u00f3digo despois de cargar + +#: Preferences.java:393 +Use\ external\ editor=Usar editor externo + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Buscar actualizaci\u00f3ns ao iniciar + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Actualiza-los arquivos do sketch con unha nova extensi\u00f3n ao gardar (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Asociar autom\u00e1ticamente arquivos .ino con Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=P\u00f3dense editar directamente m\u00e1is preferencias no arquivo + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3 cando Arduino non se est\u00e9 a executar) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignorando tama\u00f1o inv\u00e1lido de tipo de letra {0} diff --git a/app/src/processing/app/Resources_hi.po b/app/src/processing/app/Resources_hi.po new file mode 100644 index 000000000..9f21f8707 --- /dev/null +++ b/app/src/processing/app/Resources_hi.po @@ -0,0 +1,1604 @@ +# Hindi translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Nishant Sood , 2012. +# Parimal Naigaonkar , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-04 15:20+0530\n" +"PO-Revision-Date: 2012-05-11 13:15+0530\n" +"Last-Translator: Parimal Naigaonkar \n" +"Language-Team: Hindi\n" +"Language: hi\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "" + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "स्केत्च में एक फाइल जोड़ी गई " + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "स्केत्च में {0} फाइल्स जोड़ी गईँ" + +#: Editor.java:484 +msgid "File" +msgstr "फाइल" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "नया" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "खोलिए..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "स्केत्चबुक" + +#: Editor.java:509 +msgid "Examples" +msgstr "उदाहरण" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "बंद करें" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "सहेजेँ" + +#: Editor.java:530 +msgid "Save As..." +msgstr "दूसरी फाइल के रूप में सहेजें" + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "अपलोड" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "प्रोग्रामर द्वारा अपलोड करेँ" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "पृष्ठ सेटअप" + +#: Editor.java:564 +msgid "Print" +msgstr "प्रिंट" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "प्राथमिकताएं" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "छोडिये" + +#: Editor.java:600 +msgid "Sketch" +msgstr "स्केच" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "वेरिफाय/कम्पाइल" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "आयात लायब्रेरी" + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "स्केच फोल्डर दिखाइये" + +#: Editor.java:643 +msgid "Add File..." +msgstr "फाइल जोङिये" + +#: Editor.java:656 +msgid "Tools" +msgstr "टूल्स" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "सीरियल मोनिटर" + +#: Editor.java:682 +msgid "Board" +msgstr "बोर्ड" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "सीरियल पोर्ट" + +#: Editor.java:695 +msgid "Programmer" +msgstr "प्रोग्रामर" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "बूटलोडर को जलाइये" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "सीरियलमेनू मे कुछ नही है" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "नाम मे कुछ नही है" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "पोर्ट सूची वापस लाने मे त्रुटि" + +#: Editor.java:1002 +msgid "Help" +msgstr "मदद" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "प्रारंभ करना" + +#: Editor.java:1049 +msgid "Environment" +msgstr "वातावरण" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "समस्या निवारण" + +#: Editor.java:1065 +msgid "Reference" +msgstr "संदर्भ" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "संदर्भ में प्राप्त करें" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "अकसर पूछे जाने वाले प्रश्न" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Arduino.cc देखिये" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "आर्डुइनो के बारे मे" + +#: Editor.java:1116 +msgid "Edit" +msgstr "संपादित करें" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "अन्डू" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "रीडू" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "कट" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "कॉपी " + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "फोरम के लिये कॉपी " + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "HTML के रूप में कॉपी" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "पेस्ट" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "सभी का चयन करें" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "कमेन्ट/अनकमेन्ट" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "इन्डेन्ट बढाइये" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "इन्डेन्ट कम कीजिये" + +#: Editor.java:1220 +msgid "Find..." +msgstr "ढूँढिये" + +#: Editor.java:1235 +msgid "Find Next" +msgstr "अगला ढूँढिये" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "पिछला ढूँढिये" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "ढूँढने के लिये सिलेक्शन का उपयोग कीजिये" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "सन्दर्भ मे ढूँढने के लिये पहले शब्द को चुनिये" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "\"{0}\" के लिये कोई सन्दर्भ उपलब्ध नही है" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "स्केच को कम्पाइल किया जा रहा है ...." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "कम्पाइल हो चुका है" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "परिवर्तनों को \"{0}\" मे सहेजेँ" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" क्या आप " +"इस स्केच मे बदलाव सहेजना चाहते हैं
बंद करने से पहले?

अगर आप नही " +"सहेजते हैं, आपके परिवर्तन खो जाएँगे" + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "रद्द" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "न सहेजें" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "खराब फाइल चुनी गई" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"प्रोसेसिंग केवल अपने ही स्केचेस खोल सकता है\n" +"और दूसरी फाइल्स जिनका अंत .ino अथवा .pde से होता है" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "ओके" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"यह फाइल \"{0}\" को \n" +"इस स्केत्च पुस्तिका \"{1}\" के अन्दर होना चाहिए .\n" +"इस पुस्तिका को बनाईये , फाइल को उसके अन्दर डालिए , और फिरर आगे बढिए ?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "गतिशील" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "त्रुटि" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr " \"{0}\" इस नाम की पुस्तिका पहले से ही बना दी गयी है . स्केत्च खोला नहीं जा सका ." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "स्केत्च पुस्तिका नहीं बन सकी" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "सही जगह पेय कॉपी नहीं हो पाया " + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "स्केत्च नहीं बन पाई " + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | अर्दुइनो {1} " + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "सेविंग....." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "सेव पूरा हो गया " + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "सेव रद्द कर दिया गया " + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"सीरियल पोर्ट नंबर {0} नहीं मिला \n" +"उपलोड को जारी रखें किसी और पोर्ट को सेलेक्ट करके ?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "इ/ओ बोर्ड पर उपलोड हो रहा है....." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "उपलोड हो गया " + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "उपलोड रद्द कर दिया गया " + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "निर्यात से पहले बदलाव सेव करें ?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "निर्यात रद्द कर दिया गया, बदलाव पहले सेव कीजिये " + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "इ/ओ बोर्ड पर बूटलोडर डाला जा रहा है (इस प्रक्रिया में मिनट लग सकता है.....)" + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "बूटलोडर डाला जा चूका है " + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "बूटलोडर डालते समय त्रुटी " + +#: Editor.java:2500 +msgid "Printing..." +msgstr "प्रिंटिंग....." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "प्रिंटिंग समाप्त " + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "प्रिंटिंग करते समय त्रुटी " + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "प्रिंटिंग रद्द कर दी गयी " + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Bad error line: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "URL खोलिए " + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"नया अर्दुइनो सॉफ्टवेर उपलभ्द है\n" +"क्या आप अर्दुइनो डाउनलोड पेज पे जाना चाहेंगे ? " + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "हाँ " + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "नहीं " + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "अद्यतन" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "खोजें:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "की जगह:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "इग्नोर केस" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "आसपास लपेटें " + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "सबकी जगह " + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "बदलें " + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "बदलें और खोजें " + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "पिछला " + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "खोजें " + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "भेजें" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "स्वेयम पत्रिका" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "कोई रेखा समाप्ति नहीं" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "नयी रेखा" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Carriage return" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "दोनों NL और CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr "बौड" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"सीरियल पोर्ट ''{0}'' पहले ही इस्तेमाल में .कोशिश कीजिये उन सॉफ्टवेर को बंद करने \n " +"की जो इस सीरियल पोर्ट को इस्तेमाल कर रहे हों" + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "सीरियल पोर्ट खुल नहीं प् रहा ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"सीरियल पोर्ट ''{0}'' नहीं मिला. क्या अपने सही सीरियल पोर्ट चुना है टूल्स > " +"सीरियल पोर्ट मेनू में से ?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() byte बुफ्फेर काफी छोटा है की यह {0} bytes आ जायें और " +"including char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "सीरियल के अन्दर त्रुटी {0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "स्वत: स्वरूप" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "ऑटो फॉर्मेट के लिए कोई बदलाव जरुरी नहीं हैं " + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "ऑटो फॉर्मेट रद्द कर दिया गया : बोहोत सारे right कोष्टक छूटें हैं" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "ऑटो फॉर्मेट रद्द कर दिया गया : बोहोत सारे left कोष्टक छूटें हैं " + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "ऑटो फॉर्मेट रद्द कर दिया गया : बोहोत सारे right करली ब्रच्केट छूटें हैं " + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "ऑटो फॉर्मेट रद्द कर दिया गया : बोहोत सारे left करली ब्रच्केट छूटें हैं " + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "ऑटो फॉर्मेट ख़तम " + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "एन्कोडिंग फिक्स और फिर पुनः लोड" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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" +"ओपन आप्शन को इस्तेमाल कीजिये और फिर से कोशिश कीजिये " + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "संग्रह स्केच" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "स्केच संग्रह नहीं किया जा सका" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"स्केच संग्रह कारण रद्द कर दिया गया\n" +"स्केच ठीक से नहीं save हुआ " + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "संग्रह के रूप में संक्षिप्त वर्णन:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "संग्रह स्केच रद्द" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "कोड लोड करते समय त्रुटी" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\"अपरिचित अक्षर ,अगर कोड प्रोसस्सिंग के पुराने संकरण में लिखा गया है " +"आपको टूल्स खोलना पड़ेगा उसमे -> फिक्स एन्कोडिंग और रीलोड कीजिये ताकि UTF-8 एन्कोडिंग इस्तेमाल हो सके " +"अगर ये सब नहीं करना तो आपको वो अक्षर मिटाने होंगे ताकि यह चेतावनी ना आये " + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "स्केत्च सिर्फ पढ़ी जा सकती है " + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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" +"स्केत्च री-सेव करनी होगी किसी और जगह पर ,\n" +"और फिर से प्रयास किजिएय ." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "नयी फाइल का नाम " + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "स्केत्च का कोई शीर्षक नहीं है " + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"पहले स्केत्च को सेव कर लिया जाये \n" +"इससे पहले की उसका नाम बदला जाये ?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "नाम बदलने में मुश्किल " + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "विराम से नाम नहीं शुरू हो सकता " + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" एक वैध एक्ष्तेन्सिओन नहीं है " + +#: Sketch.java:378 +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 "" +"मुख्य फाइल को एक्ष्तेन्सिओन नहीं दिया जा सकता \n" +"(It may be time for your to graduate to a\n" +"\"real\" programming environment)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "नहीं " + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr " \"{0}\" इस नाम की फाइल पहले से ही \"{1}\" में उपस्थित है " + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "स्केत्च और .cpp फाइल का नाम एक नहीं हो सकता " + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"स्केत्च का नाम बदल के \"{0}\" नहीं रखा जा सकता \n" +"क्यूंकि इस नाम की .cpp फाइल पहले से hai" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "नाम बदला नहीं जा सकता " + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "माफ़ कीजिये , इस नाम की स्केत्च (या पुस्तिका ) \"{0}\" पहले से ही उपस्थित है" + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "स्केत्च का नाम नहीं बदला जा सका (०)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "नाम बदला नहीं जा सका \"{0}\" to \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "स्केत्च का नाम नहीं बदला जा सका (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "स्केत्च का नाम नहीं बदला जा सका (2 )" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() गलत रिटर्न " + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "क्या आप सुनिश्चित करते हैं की यह स्केत्च मिटा दिया जाये ?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "क्या आप सुनिश्चित करतें हैं की यह मिटा दिया जाये \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "रद्द करें " + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "यह किया नहीं जा सका " + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "हटाया नहीं जा सका \"{0}\"" + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "कोड हटायें : अंदरूनी त्रुटी.....कोड खोजा नहीं जा सका " + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "स्केत्च केवल पढ़ी जा सकती है " + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "कुछ फ़ाइलें \"केवल पढ़ने\" के लिए चिह्नित कर रहे हैं,\n" +"तो आप किसी अन्य स्थान पर फिर से इस स्केच बचाने की आवश्यकता होगी" + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"अर्दुइनो 1 .0 के अन्दर डिफौल्ट फाइल एक्ष्तेन्सिओन बदल गयी है\n" +"अब यह .pde से .ino बन गया है .नयी स्केत्च जो की सेव-एस की जाती है \n" +"उनका एक्ष्तेन्सिओन .ino हो जायगा, पर आप यह बदल सकते हैं प्रेफेरेंसस में जाके " + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "स्केत्च पुस्तिका को इस नाम से सेव करें " + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"आप स्केत्च को {०} की तरह नहीं सेव कर सकते\n" +"क्यूंकि इस नाम की .cpp फाइल पहले ही वहां है " + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "How very Borges of you" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"आप एक स्केत्च की पुसितका के अन्दर ही उस स्केत्च को सेव नहीं कर सकते \n" +"यह नहीं हो सकता ,इसका कोई अंत नहीं" + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "कोई चित्र या फाइल स्केत्च में कॉपी करने के लिए चुनें " + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "मौजूदा संस्करण बदलें {0}" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "फाइल जोडने में त्रुटी " + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "इस \"{०}\"मौजूदा फाइल को मिटाया नहीं जा सका " + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "आप मुझे बेवक़ूफ़ नहीं बना सकते " + +#: Sketch.java:1079 +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 "" +"यह फाइल पहले ही उस जगह पर है " +"जिस जगह पर आप इसे कॉपी कर रहे हैं \n" +"कुछ नहीं किया जायगा" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "यह ''{0}'' स्केत्च में जोड़ा नहीं जा सका " + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "बिल्ड पुस्तिका गायब हो गयी या उसमे प्रवेश निषेधात्मक है " + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "मेन क्लास को खोज नहीं पाये " + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "नहीं पकड़ा जा सकने वाला अपवाद: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "{०} को बिल्ड पुस्तिका में डालने में समस्या " + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "अपलोड हो रहा है ....." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "बाईनरी स्केत्च आकार: {0} बाईटस (जिसमे {1} अधिकतम )" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "कार्य क्रम का आकार नहीं जान पाया गया {}0" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "स्केत्च बहुत बड़ी है -> http://www.arduino.cc/en/Guide/Troubleshooting#size देखिये इसे छोटा करने के उपाए के लिए " + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "*/ खो गया /* के अंत तक " + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "स्केत्च खो गयी " + +#: Sketch.java:1797 +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 "" +"स्केत्च पुस्तिका खो गयी है \n" +"पर फिर भी उसी जगह पे सेव करने की कोशिश होगी " +"अन्यथा कोड खो जायगा " + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "आपकी स्केत्च री-सेव नहीं हो पाई है " + +#: Sketch.java:1811 +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 "" +"आपकी स्केत्च री-सेव नहीं हो पाई है, हो सकता है आप परेशानी में पढ़ जायें " +"इस्सलिये अपना कोड कॉपी और पेस्ट कीजिये किसी और जगह " + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"स्केत्च का नाम बदलना होगा ,स्केत्च के नाम में \n" +"सिर्फ अक्षर और अंकों का इस्तेमाल कीजिये \n" +"और यह भी ध्यान रखें की 64 अक्षर से ज्यादा ना हो " + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "संकलक त्रुटि {0} इस कोड को भेजें" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "चुना गया सीरियल पोर्ट {0} मौजूद नहीं है या बोर्ड नहीं जुड़ा हुआ है" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "डिवाइस जवाब नही दे रहा है, जांच लीजिये कि सही सीरियल पोर्ट का चयन किया है या बोर्ड को एक्सपोर्ट करने से पहले रीसेट कीजिये" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "बोर्ड मे अपलोड करने मे समस्या, सुझाव के लिये http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload देखेँ" + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "गलत माइक्रोकंट्रोलर मिला| क्या आपने टूल्स >बोर्ड मेनू से सही बोर्ड चुना है?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "कोई बोर्ड चयनित नही, उपकरण से एक बोर्ड का चयन करें> बोर्ड मेनू" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} लौटाया {1} " + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "संकलन त्रुटि" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "स्केच से एस पी आई लायब्रेरी का आयात करें" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"आर्दुइनो उन्नीस तक, ईथरनेट लायब्रेरी एस पी आई लायब्रेरी पर निर्भर करती है" +"आप यह अथवा दूसरी लायब्रेरी उपयोग करते हुए दिखाई दे रहे हैं जो एस पी आई पर निर्भर करती है " +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "'बाइट' कीवर्ड अब समर्थित नहीं है" + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "कृपया Serial.write() का उपयोग करें" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "सर्वर वर्ग का पुनः नामकरण ईथरनेटसर्वर किया गया है" + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "आर्दुइनो एक तक, ईथरनेट लायब्रेरी मे सर्वर वर्ग का पुनः नामकरण ईथरनेटसर्वर किया गया है" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "क्लाइंट क्लास का नामकरण ईथरनेट क्लाइंट हो गया है" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "आर्दुइनो 1.0 से, ईथरनेट लायब्रेरी की क्लाइंट क्लास का नामकरण ईथरनेट क्लाइंट हो गया है" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "यूडीपी क्लास का नामकरण ईथरनेट यूडीपी हो गया है" + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "आर्दुइनो 1.0 से, ईथरनेट लायब्रेरी की यूडीपी क्लास का नामकरण ईथरनेट यूडीपी हो गया है" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() का नामकरण Wire.write() हो गया है" + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "आर्दुइनो 1.0 से, Wire.send() फ़ंक्शन का नामकरण Wire.write() दूसरी लायब्रेरीज़ के साथ स्थिरता के लिये किया गया था" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() का नामकरण Wire.read() हो गया है" + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "आर्दुइनो 1.0 से, Wire.receive() फ़ंक्शन का नामकरण Wire.read() दूसरी लायब्रेरीज़ के साथ स्थिरता के लिये किया गया था" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "कंसोल में त्रुटी " + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"कंसोल आउट पुट को जमा करने वाली \n" +"फिल्स में त्रुटी " + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "रूप और महसूस है की स्थापना करते हुए गैर घातक त्रुटि" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "त्रुटि संदेश इस प्रकार है, लेकिन आर्दुइनो ठीक चलाना चाहिए" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "प्लेटफार्म की स्थापना मे समस्या " + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "मशीन के लिए विशिष्ट कोड लोड करने का प्रयास करते समय एक अज्ञात त्रुटि हुई\n" + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "कृपया जेडीके 1.5 या बाद का स्थापित करेंं" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "आर्दुइनो को काम करने के लिए पूर्ण जे.डी.के. चाहिए(सिर्फ एक जे.आर.ई. नही)| कृपया पहले जेडीके 1.5 या बाद का स्थापित करें| अधिक जानकारी संदर्भ में पाई जा सकती है|" + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "स्केत्चबुक फोल्डर गायब हो गया है" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "स्केत्चबुक फ़ोल्डर अब मौजूद नहीं है| आर्दुइनो डिफ़ॉल्ट स्केत्चबुक स्थान पर स्विच जाएगा, और यदि आवश्यक एक नया स्केत्चबुक फ़ोल्डर बनाएगा| आर्दुइनो तब तीसरे व्यक्ति में खुद के बारे में बात करना बंद कर देंगे." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "ब्रेक का समय" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"आप आज के दिन के नए स्केच के स्वत: नामकरण की सीमा तक पहुँच गए हैं\n" +"इसके बजाय टहलने जाने के बारे मे क्या खयाल है?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "सूर्य किरन" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "नहीं, वास्तव में, आप के लिए कुछ ताजा हवा के लिए समय है." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "आर्दुइनो स्केच खोलिए " + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr " क्या आप " +"सच में छोड़ कर जाना चाहते हैं ?

आखिरी खुला स्केच बंद करने से आर्दुइनो बंद हो जाएगा |" + +#: Base.java:970 +msgid "Contributed" +msgstr "योगदान दिया" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "स्केच मौजूद नहीं है" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"चयनित स्केच अब मौजूद नहीं है|\n" +"आपको स्केचबुक मेनू को अपडेट करने के लिए अर्दुइनो को पुनः आरम्भ करने की आवश्यकता है " + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"स्केच का \"{0}\" इस्तेमाल नहीं कर सकते|\n" +"स्केच नामों में केवल मूल अक्षरों और संख्याओं को शामिल होना चाहिए\n" +"(कोई स्पेस के बिना केवल ASCII, और यह एक संख्या के साथ शुरू नहीं कर सकते)\n" +"इस संदेश से छुटकारा पाने के लिए स्केच को {1} से हटायें\n" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "बुरा नाम के कारण स्केच की अनदेखी" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"लैब्ररी को \"{0}\" इस्तेमाल नहीं किया जा सकता है\n" +"लैब्ररी के नाम मे केवल मूल अक्षर और संख्याएँ शामिल होना चाहिए |\n" +"(केवल आस्की और रिक्त स्थान नहीं, और यह एक संख्या के साथ शुरू नहीं कर सकते)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "बुरी लायब्रेरी नाम की अनदेखी" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "डेटा फ़ोल्डर को लेने में समस्या है " + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "आर्दुइनो डेटा फ़ोल्डर प्राप्त करने में त्रुटि" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "मुद्दे की स्थापना" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"आर्दुइनो को नहीं चला सकते क्योकि अपनी सेटिंग्स को स्टोर करने के लिए फ़ोल्डर नहीं बना सकता" + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "आप अपनी स्केचबुक भूल गए " + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "आर्दुइनो को नहीं चला सकते क्योकि अपनी सेटिंग्स को स्टोर करने के लिए फ़ोल्डर नहीं बना सकता" + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "स्केच बनाने के लिए फ़ोल्डर का चयन करें अथवा नया बनाएँ" + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "यूआरएल खोलने में समस्या है" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "यूआरएल नहीं खोल सका\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "फ़ोल्डर खोलने में समस्या है" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "फ़ोल्डर नहीं खोल सका\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "वातावरण " + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "संदेश" + +#: Base.java:1842 +msgid "Warning" +msgstr "चेतावनी" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "{0} के पुराने संस्करण को दूर नहीं किया जा सका" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "{0} की जगह नहीं कर सका" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "{0} को नष्ट नहीं कर सका" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "नया टैब " + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "नाम बदलें " + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "पिछला टैब " + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "अगला टैब " + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "जांच करें " + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "खोलें " + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "नयी संपादक खिड़की " + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "अलग टैब में खोलें " + +#: Platform.java:167 +msgid "No launcher available" +msgstr "कोई प्रारंभ करता उपलभ्द नहीं " + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" +"अनिर्दिष्ट प्लात्फोर्म , कोई प्रारंभ करता उपलभ्द नहीं \n" +"URL और पुसितका खोलने के लिए जोडीये\"launcher=/path/to/app\" लाइन को preferences .txt में" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "आपको processing इन्स्टाल करनी पड़ेगा " + +#: Preferences.java:80 +msgid "Browse" +msgstr "ब्राउज़ करें" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"डिफौल्ट सेत्तिंग्स स्तापित नहीं हो सकी \n" +"अर्दुइनो फिर से इन्स्टाल कीजिये" + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "{०} से प्रेफेरेंसस पढ़ी नहीं जा सकी " + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "प्रेफेरेंसस पढने में त्रुटी " + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"प्रेफेरेंसस पढने में त्रुटी ,कृप्या \n" +"{0} को मिटायें या हटायें और अर्दुइनो पुन्हें चालू करें " + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "स्केत्च किताब का स्थान " + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "स्केत्च किताब की नयी जगह चुनिए " + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr "अर्दुइनो को फिर से चालू करें " + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "एडिटर फॉण्ट साइज़:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "वाचाल आउट पुट दिखाएं:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "संकलन " + +#: Preferences.java:375 +msgid "upload" +msgstr "उपलोड " + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "बाहरी एडिटर इस्तेमाल करें " + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "शुरुआत में अद्यतन के लिए जांचें " + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "स्केत्च फिल्स को पुराने एक्ष्तेन्सिओन से नए में अपडेट कीजिये(.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "स्वत: .INO फाइल का सहयोगी अर्दुइनो को बनाये " + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "और बोहोत सी प्रेफेरेंसस सीधा फाइल में सम्पादित की जा सकती हैं " + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(तभी सम्पादित करें जब अर्दुइनो चल न रहा हो)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "अवैध फॉण्ट आकार को नज़रंदाज़ करें " diff --git a/app/src/processing/app/Resources_hi.properties b/app/src/processing/app/Resources_hi.properties new file mode 100644 index 000000000..4391a6c06 --- /dev/null +++ b/app/src/processing/app/Resources_hi.properties @@ -0,0 +1,1035 @@ +# Hindi translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Nishant Sood , 2012. +# Parimal Naigaonkar , 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-04 15\:20+0530\nPO-Revision-Date\: 2012-05-11 13\:15+0530\nLast-Translator\: Parimal Naigaonkar \nLanguage-Team\: Hindi\nLanguage\: hi\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +!No\ files\ were\ added\ to\ the\ sketch.= + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 \u090f\u0915 \u092b\u093e\u0907\u0932 \u091c\u094b\u095c\u0940 \u0917\u0908 + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 {0} \u092b\u093e\u0907\u0932\u094d\u0938 \u091c\u094b\u095c\u0940 \u0917\u0908\u0901 + +#: Editor.java:484 +File=\u092b\u093e\u0907\u0932 + +#: Editor.java:486 EditorToolbar.java:41 +New=\u0928\u092f\u093e + +#: Editor.java:494 Base.java:903 +Open...=\u0916\u094b\u0932\u093f\u090f... + +#: Editor.java:503 +Sketchbook=\u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 + +#: Editor.java:509 +Examples=\u0909\u0926\u093e\u0939\u0930\u0923 + +#: Editor.java:514 Editor.java:1977 +Close=\u092c\u0902\u0926 \u0915\u0930\u0947\u0902 + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u0938\u0939\u0947\u091c\u0947\u0901 + +#: Editor.java:530 +Save\ As...=\u0926\u0942\u0938\u0930\u0940 \u092b\u093e\u0907\u0932 \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u0938\u0939\u0947\u091c\u0947\u0902 + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u0905\u092a\u0932\u094b\u0921 + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u093e\u092e\u0930 \u0926\u094d\u0935\u093e\u0930\u093e \u0905\u092a\u0932\u094b\u0921 \u0915\u0930\u0947\u0901 + +#: Editor.java:556 +Page\ Setup=\u092a\u0943\u0937\u094d\u0920 \u0938\u0947\u091f\u0905\u092a + +#: Editor.java:564 +Print=\u092a\u094d\u0930\u093f\u0902\u091f + +#: Editor.java:576 Preferences.java:279 +Preferences=\u092a\u094d\u0930\u093e\u0925\u092e\u093f\u0915\u0924\u093e\u090f\u0902 + +#: Editor.java:586 Base.java:782 +Quit=\u091b\u094b\u0921\u093f\u092f\u0947 + +#: Editor.java:600 +Sketch=\u0938\u094d\u0915\u0947\u091a + +#: Editor.java:602 +Verify\ /\ Compile=\u0935\u0947\u0930\u093f\u092b\u093e\u092f/\u0915\u092e\u094d\u092a\u093e\u0907\u0932 + +#: Editor.java:629 +Import\ Library...=\u0906\u092f\u093e\u0924 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 + +#: Editor.java:634 +Show\ Sketch\ Folder=\u0938\u094d\u0915\u0947\u091a \u092b\u094b\u0932\u094d\u0921\u0930 \u0926\u093f\u0916\u093e\u0907\u092f\u0947 + +#: Editor.java:643 +Add\ File...=\u092b\u093e\u0907\u0932 \u091c\u094b\u0919\u093f\u092f\u0947 + +#: Editor.java:656 +Tools=\u091f\u0942\u0932\u094d\u0938 + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u0938\u0940\u0930\u093f\u092f\u0932 \u092e\u094b\u0928\u093f\u091f\u0930 + +#: Editor.java:682 +Board=\u092c\u094b\u0930\u094d\u0921 + +#: Editor.java:690 +Serial\ Port=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f + +#: Editor.java:695 +Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u093e\u092e\u0930 + +#: Editor.java:699 +Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0915\u094b \u091c\u0932\u093e\u0907\u092f\u0947 + +#: Editor.java:923 +serialMenu\ is\ null=\u0938\u0940\u0930\u093f\u092f\u0932\u092e\u0947\u0928\u0942 \u092e\u0947 \u0915\u0941\u091b \u0928\u0939\u0940 \u0939\u0948 + +#: Editor.java:927 Editor.java:934 +name\ is\ null=\u0928\u093e\u092e \u092e\u0947 \u0915\u0941\u091b \u0928\u0939\u0940 \u0939\u0948 + +#: Editor.java:986 +error\ retrieving\ port\ list=\u092a\u094b\u0930\u094d\u091f \u0938\u0942\u091a\u0940 \u0935\u093e\u092a\u0938 \u0932\u093e\u0928\u0947 \u092e\u0947 \u0924\u094d\u0930\u0941\u091f\u093f + +#: Editor.java:1002 +Help=\u092e\u0926\u0926 + +#: Editor.java:1041 +Getting\ Started=\u092a\u094d\u0930\u093e\u0930\u0902\u092d \u0915\u0930\u0928\u093e + +#: Editor.java:1049 +Environment=\u0935\u093e\u0924\u093e\u0935\u0930\u0923 + +#: Editor.java:1057 +Troubleshooting=\u0938\u092e\u0938\u094d\u092f\u093e \u0928\u093f\u0935\u093e\u0930\u0923 + +#: Editor.java:1065 +Reference=\u0938\u0902\u0926\u0930\u094d\u092d + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u0938\u0902\u0926\u0930\u094d\u092d \u092e\u0947\u0902 \u092a\u094d\u0930\u093e\u092a\u094d\u0924 \u0915\u0930\u0947\u0902 + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u0905\u0915\u0938\u0930 \u092a\u0942\u091b\u0947 \u091c\u093e\u0928\u0947 \u0935\u093e\u0932\u0947 \u092a\u094d\u0930\u0936\u094d\u0928 + +#: Editor.java:1091 +Visit\ Arduino.cc=Arduino.cc \u0926\u0947\u0916\u093f\u092f\u0947 + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u0906\u0930\u094d\u0921\u0941\u0907\u0928\u094b \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947 + +#: Editor.java:1116 +Edit=\u0938\u0902\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u0905\u0928\u094d\u0921\u0942 + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u0930\u0940\u0921\u0942 + +#: Editor.java:1135 Editor.java:2652 +Cut=\u0915\u091f + +#: Editor.java:1143 Editor.java:2660 +Copy=\u0915\u0949\u092a\u0940 + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u0949\u092a\u0940 + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=HTML \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u0915\u0949\u092a\u0940 + +#: Editor.java:1175 Editor.java:2684 +Paste=\u092a\u0947\u0938\u094d\u091f + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u0938\u092d\u0940 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u0915\u092e\u0947\u0928\u094d\u091f/\u0905\u0928\u0915\u092e\u0947\u0928\u094d\u091f + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u0907\u0928\u094d\u0921\u0947\u0928\u094d\u091f \u092c\u0922\u093e\u0907\u092f\u0947 + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u0907\u0928\u094d\u0921\u0947\u0928\u094d\u091f \u0915\u092e \u0915\u0940\u091c\u093f\u092f\u0947 + +#: Editor.java:1220 +Find...=\u0922\u0942\u0901\u0922\u093f\u092f\u0947 + +#: Editor.java:1235 +Find\ Next=\u0905\u0917\u0932\u093e \u0922\u0942\u0901\u0922\u093f\u092f\u0947 + +#: Editor.java:1245 +Find\ Previous=\u092a\u093f\u091b\u0932\u093e \u0922\u0942\u0901\u0922\u093f\u092f\u0947 + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u0922\u0942\u0901\u0922\u0928\u0947 \u0915\u0947 \u0932\u093f\u092f\u0947 \u0938\u093f\u0932\u0947\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0940\u091c\u093f\u092f\u0947 + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u0938\u0928\u094d\u0926\u0930\u094d\u092d \u092e\u0947 \u0922\u0942\u0901\u0922\u0928\u0947 \u0915\u0947 \u0932\u093f\u092f\u0947 \u092a\u0939\u0932\u0947 \u0936\u092c\u094d\u0926 \u0915\u094b \u091a\u0941\u0928\u093f\u092f\u0947 + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"="{0}" \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u094b\u0908 \u0938\u0928\u094d\u0926\u0930\u094d\u092d \u0909\u092a\u0932\u092c\u094d\u0927 \u0928\u0939\u0940 \u0939\u0948 + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u0938\u094d\u0915\u0947\u091a \u0915\u094b \u0915\u092e\u094d\u092a\u093e\u0907\u0932 \u0915\u093f\u092f\u093e \u091c\u093e \u0930\u0939\u093e \u0939\u0948 .... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u0915\u092e\u094d\u092a\u093e\u0907\u0932 \u0939\u094b \u091a\u0941\u0915\u093e \u0939\u0948 + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u094b\u0902 \u0915\u094b "{0}" \u092e\u0947 \u0938\u0939\u0947\u091c\u0947\u0901 + +#: Editor.java:2006 +\ \ 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.= \u0915\u094d\u092f\u093e \u0906\u092a \u0907\u0938 \u0938\u094d\u0915\u0947\u091a \u092e\u0947 \u092c\u0926\u0932\u093e\u0935 \u0938\u0939\u0947\u091c\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u0948\u0902
\u092c\u0902\u0926 \u0915\u0930\u0928\u0947 \u0938\u0947 \u092a\u0939\u0932\u0947?

\u0905\u0917\u0930 \u0906\u092a \u0928\u0939\u0940 \u0938\u0939\u0947\u091c\u0924\u0947 \u0939\u0948\u0902, \u0906\u092a\u0915\u0947 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928 \u0916\u094b \u091c\u093e\u090f\u0901\u0917\u0947 + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u0930\u0926\u094d\u0926 + +#: Editor.java:2017 +Don't\ Save=\u0928 \u0938\u0939\u0947\u091c\u0947\u0902 + +#: Editor.java:2089 +Bad\ file\ selected=\u0916\u0930\u093e\u092c \u092b\u093e\u0907\u0932 \u091a\u0941\u0928\u0940 \u0917\u0908 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u092a\u094d\u0930\u094b\u0938\u0947\u0938\u093f\u0902\u0917 \u0915\u0947\u0935\u0932 \u0905\u092a\u0928\u0947 \u0939\u0940 \u0938\u094d\u0915\u0947\u091a\u0947\u0938 \u0916\u094b\u0932 \u0938\u0915\u0924\u093e \u0939\u0948\n\u0914\u0930 \u0926\u0942\u0938\u0930\u0940 \u092b\u093e\u0907\u0932\u094d\u0938 \u091c\u093f\u0928\u0915\u093e \u0905\u0902\u0924 .ino \u0905\u0925\u0935\u093e .pde \u0938\u0947 \u0939\u094b\u0924\u093e \u0939\u0948 + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=\u0913\u0915\u0947 + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u092f\u0939 \u092b\u093e\u0907\u0932 "{0}" \u0915\u094b \n\u0907\u0938 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e "{1}" \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0939\u094b\u0928\u093e \u091a\u093e\u0939\u093f\u090f .\n\u0907\u0938 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0915\u094b \u092c\u0928\u093e\u0908\u092f\u0947 , \u092b\u093e\u0907\u0932 \u0915\u094b \u0909\u0938\u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0921\u093e\u0932\u093f\u090f , \u0914\u0930 \u092b\u093f\u0930\u0930 \u0906\u0917\u0947 \u092c\u0922\u093f\u090f ? + +#: Editor.java:2109 +Moving=\u0917\u0924\u093f\u0936\u0940\u0932 + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u0924\u094d\u0930\u0941\u091f\u093f + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\ "{0}" \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u092a\u0939\u0932\u0947 \u0938\u0947 \u0939\u0940 \u092c\u0928\u093e \u0926\u0940 \u0917\u092f\u0940 \u0939\u0948 . \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0916\u094b\u0932\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e . + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0928\u0939\u0940\u0902 \u092c\u0928 \u0938\u0915\u0940 + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u0938\u0939\u0940 \u091c\u0917\u0939 \u092a\u0947\u092f \u0915\u0949\u092a\u0940 \u0928\u0939\u0940\u0902 \u0939\u094b \u092a\u093e\u092f\u093e + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0928\u0939\u0940\u0902 \u092c\u0928 \u092a\u093e\u0908 + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\u0938\u0947\u0935\u093f\u0902\u0917..... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\u0938\u0947\u0935 \u092a\u0942\u0930\u093e \u0939\u094b \u0917\u092f\u093e + +#: Editor.java:2270 +Save\ Canceled.=\u0938\u0947\u0935 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0928\u0902\u092c\u0930 {0} \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e \n\u0909\u092a\u0932\u094b\u0921 \u0915\u094b \u091c\u093e\u0930\u0940 \u0930\u0916\u0947\u0902 \u0915\u093f\u0938\u0940 \u0914\u0930 \u092a\u094b\u0930\u094d\u091f \u0915\u094b \u0938\u0947\u0932\u0947\u0915\u094d\u091f \u0915\u0930\u0915\u0947 ? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u0907/\u0913 \u092c\u094b\u0930\u094d\u0921 \u092a\u0930 \u0909\u092a\u0932\u094b\u0921 \u0939\u094b \u0930\u0939\u093e \u0939\u0948..... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u0909\u092a\u0932\u094b\u0921 \u0939\u094b \u0917\u092f\u093e + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u0909\u092a\u0932\u094b\u0921 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u0928\u093f\u0930\u094d\u092f\u093e\u0924 \u0938\u0947 \u092a\u0939\u0932\u0947 \u092c\u0926\u0932\u093e\u0935 \u0938\u0947\u0935 \u0915\u0930\u0947\u0902 ? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0928\u093f\u0930\u094d\u092f\u093e\u0924 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e, \u092c\u0926\u0932\u093e\u0935 \u092a\u0939\u0932\u0947 \u0938\u0947\u0935 \u0915\u0940\u091c\u093f\u092f\u0947 + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0907/\u0913 \u092c\u094b\u0930\u094d\u0921 \u092a\u0930 \u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u0930\u0939\u093e \u0939\u0948 (\u0907\u0938 \u092a\u094d\u0930\u0915\u094d\u0930\u093f\u092f\u093e \u092e\u0947\u0902 \u092e\u093f\u0928\u091f \u0932\u0917 \u0938\u0915\u0924\u093e \u0939\u0948.....) + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0921\u093e\u0932\u093e \u091c\u093e \u091a\u0942\u0915\u093e \u0939\u0948 + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u0921\u093e\u0932\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940 + +#: Editor.java:2500 +Printing...=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917..... + +#: Editor.java:2517 +Done\ printing.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \u0938\u092e\u093e\u092a\u094d\u0924 + +#: Editor.java:2520 +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 + +#: Editor.java:2524 +Printing\ canceled.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u0940 \u0917\u092f\u0940 + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Bad error line\: {0} + +#: Editor.java:2641 +Open\ URL=URL \u0916\u094b\u0932\u093f\u090f + +#: UpdateCheck.java:53 +!http\://www.arduino.cc/latest.txt= + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0928\u092f\u093e \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0938\u0949\u092b\u094d\u091f\u0935\u0947\u0930 \u0909\u092a\u0932\u092d\u094d\u0926 \u0939\u0948\n\u0915\u094d\u092f\u093e \u0906\u092a \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0921\u093e\u0909\u0928\u0932\u094b\u0921 \u092a\u0947\u091c \u092a\u0947 \u091c\u093e\u0928\u093e \u091a\u093e\u0939\u0947\u0902\u0917\u0947 ? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u0939\u093e\u0901 + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u0928\u0939\u0940\u0902 + +#: UpdateCheck.java:111 +Update=\u0905\u0926\u094d\u092f\u0924\u0928 + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\u0916\u094b\u091c\u0947\u0902\: + +#: FindReplace.java:81 +Replace\ with\:=\u0915\u0940 \u091c\u0917\u0939\: + +#: FindReplace.java:96 +Ignore\ Case=\u0907\u0917\u094d\u0928\u094b\u0930 \u0915\u0947\u0938 + +#: FindReplace.java:105 +Wrap\ Around=\u0906\u0938\u092a\u093e\u0938 \u0932\u092a\u0947\u091f\u0947\u0902 + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u0938\u092c\u0915\u0940 \u091c\u0917\u0939 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u092c\u0926\u0932\u0947\u0902 + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u092c\u0926\u0932\u0947\u0902 \u0914\u0930 \u0916\u094b\u091c\u0947\u0902 + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u092a\u093f\u091b\u0932\u093e + +#: FindReplace.java:124 FindReplace.java:127 +Find=\u0916\u094b\u091c\u0947\u0902 + +#: SerialMonitor.java:93 +Send=\u092d\u0947\u091c\u0947\u0902 + +#: SerialMonitor.java:110 +Autoscroll=\u0938\u094d\u0935\u0947\u092f\u092e \u092a\u0924\u094d\u0930\u093f\u0915\u093e + +#: SerialMonitor.java:112 +No\ line\ ending=\u0915\u094b\u0908 \u0930\u0947\u0916\u093e \u0938\u092e\u093e\u092a\u094d\u0924\u093f \u0928\u0939\u0940\u0902 + +#: SerialMonitor.java:112 +Newline=\u0928\u092f\u0940 \u0930\u0947\u0916\u093e + +#: SerialMonitor.java:112 +Carriage\ return=Carriage return + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=\u0926\u094b\u0928\u094b\u0902 NL \u0914\u0930 CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\u092c\u094c\u0921 + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f ''{0}'' \u092a\u0939\u0932\u0947 \u0939\u0940 \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u092e\u0947\u0902 .\u0915\u094b\u0936\u093f\u0936 \u0915\u0940\u091c\u093f\u092f\u0947 \u0909\u0928 \u0938\u0949\u092b\u094d\u091f\u0935\u0947\u0930 \u0915\u094b \u092c\u0902\u0926 \u0915\u0930\u0928\u0947 \n \u0915\u0940 \u091c\u094b \u0907\u0938 \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0915\u094b \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0930 \u0930\u0939\u0947 \u0939\u094b\u0902 + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0916\u0941\u0932 \u0928\u0939\u0940\u0902 \u092a\u094d \u0930\u0939\u093e ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f ''{0}'' \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e. \u0915\u094d\u092f\u093e \u0905\u092a\u0928\u0947 \u0938\u0939\u0940 \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u091a\u0941\u0928\u093e \u0939\u0948 \u091f\u0942\u0932\u094d\u0938 > \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u092e\u0947\u0928\u0942 \u092e\u0947\u0902 \u0938\u0947 ? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte \u092c\u0941\u092b\u094d\u092b\u0947\u0930 \u0915\u093e\u092b\u0940 \u091b\u094b\u091f\u093e \u0939\u0948 \u0915\u0940 \u092f\u0939 {0} bytes \u0906 \u091c\u093e\u092f\u0947\u0902 \u0914\u0930 including char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=\u0938\u0940\u0930\u093f\u092f\u0932 \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0924\u094d\u0930\u0941\u091f\u0940 {0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=\u0938\u094d\u0935\u0924\: \u0938\u094d\u0935\u0930\u0942\u092a + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0915\u0947 \u0932\u093f\u090f \u0915\u094b\u0908 \u092c\u0926\u0932\u093e\u0935 \u091c\u0930\u0941\u0930\u0940 \u0928\u0939\u0940\u0902 \u0939\u0948\u0902 + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \: \u092c\u094b\u0939\u094b\u0924 \u0938\u093e\u0930\u0947 right \u0915\u094b\u0937\u094d\u091f\u0915 \u091b\u0942\u091f\u0947\u0902 \u0939\u0948\u0902 + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \: \u092c\u094b\u0939\u094b\u0924 \u0938\u093e\u0930\u0947 left \u0915\u094b\u0937\u094d\u091f\u0915 \u091b\u0942\u091f\u0947\u0902 \u0939\u0948\u0902 + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \: \u092c\u094b\u0939\u094b\u0924 \u0938\u093e\u0930\u0947 right \u0915\u0930\u0932\u0940 \u092c\u094d\u0930\u091a\u094d\u0915\u0947\u091f \u091b\u0942\u091f\u0947\u0902 \u0939\u0948\u0902 + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e \: \u092c\u094b\u0939\u094b\u0924 \u0938\u093e\u0930\u0947 left \u0915\u0930\u0932\u0940 \u092c\u094d\u0930\u091a\u094d\u0915\u0947\u091f \u091b\u0942\u091f\u0947\u0902 \u0939\u0948\u0902 + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0916\u093c\u0924\u092e + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u092b\u093f\u0915\u094d\u0938 \u0914\u0930 \u092b\u093f\u0930 \u092a\u0941\u0928\u0903 \u0932\u094b\u0921 + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u0938\u092d \u092c\u0926\u0932\u093e\u0935 \u0930\u0926\u094d\u0926 \u0915\u0930\u0947 \u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u091a\u0932\u093e\u092f\u0947\u0902 + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u092b\u093e\u0907\u0932 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u092b\u093f\u0915\u094d\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u092a\u094d\u0930\u0949\u092c\u094d\u0932\u092e \u0939\u094b \u0917\u092f\u0940 \n\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u092e\u0924 \u0915\u0930\u093f\u090f \u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0935\u094b \u092a\u0941\u0930\u093e\u0923\u0940 \u092b\u093e\u0907\u0932 \u0915\u094b \u092c\u0926\u0932 \u0926\u0947\u0917\u0940 \n\u0913\u092a\u0928 \u0906\u092a\u094d\u0936\u0928 \u0915\u094b \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 \u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0915\u094b\u0936\u093f\u0936 \u0915\u0940\u091c\u093f\u092f\u0947 + +#: tools/Archiver.java:48 +Archive\ Sketch=\u0938\u0902\u0917\u094d\u0930\u0939 \u0938\u094d\u0915\u0947\u091a + +#: tools/Archiver.java:59 +!yyMMdd= + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u0938\u094d\u0915\u0947\u091a \u0938\u0902\u0917\u094d\u0930\u0939 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u093e + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0938\u094d\u0915\u0947\u091a \u0938\u0902\u0917\u094d\u0930\u0939 \u0915\u093e\u0930\u0923 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e\n\u0938\u094d\u0915\u0947\u091a \u0920\u0940\u0915 \u0938\u0947 \u0928\u0939\u0940\u0902 save \u0939\u0941\u0906 + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\u0938\u0902\u0917\u094d\u0930\u0939 \u0915\u0947 \u0930\u0942\u092a \u092e\u0947\u0902 \u0938\u0902\u0915\u094d\u0937\u093f\u092a\u094d\u0924 \u0935\u0930\u094d\u0923\u0928\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\u0938\u0902\u0917\u094d\u0930\u0939 \u0938\u094d\u0915\u0947\u091a \u0930\u0926\u094d\u0926 + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940 + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\u0905\u092a\u0930\u093f\u091a\u093f\u0924 \u0905\u0915\u094d\u0937\u0930 ,\u0905\u0917\u0930 \u0915\u094b\u0921 \u092a\u094d\u0930\u094b\u0938\u0938\u094d\u0938\u093f\u0902\u0917 \u0915\u0947 \u092a\u0941\u0930\u093e\u0928\u0947 \u0938\u0902\u0915\u0930\u0923 \u092e\u0947\u0902 \u0932\u093f\u0916\u093e \u0917\u092f\u093e \u0939\u0948 \u0906\u092a\u0915\u094b \u091f\u0942\u0932\u094d\u0938 \u0916\u094b\u0932\u0928\u093e \u092a\u095c\u0947\u0917\u093e \u0909\u0938\u092e\u0947 -> \u092b\u093f\u0915\u094d\u0938 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u0914\u0930 \u0930\u0940\u0932\u094b\u0921 \u0915\u0940\u091c\u093f\u092f\u0947 \u0924\u093e\u0915\u093f UTF-8 \u090f\u0928\u094d\u0915\u094b\u0921\u093f\u0902\u0917 \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0939\u094b \u0938\u0915\u0947 \u0905\u0917\u0930 \u092f\u0947 \u0938\u092c \u0928\u0939\u0940\u0902 \u0915\u0930\u0928\u093e \u0924\u094b \u0906\u092a\u0915\u094b \u0935\u094b \u0905\u0915\u094d\u0937\u0930 \u092e\u093f\u091f\u093e\u0928\u0947 \u0939\u094b\u0902\u0917\u0947 \u0924\u093e\u0915\u093f \u092f\u0939 \u091a\u0947\u0924\u093e\u0935\u0928\u0940 \u0928\u093e \u0906\u092f\u0947 + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0938\u093f\u0930\u094d\u092b \u092a\u095d\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948 + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u0915\u0941\u091b \u092b\u093f\u0932\u094d\u0938 "\u0938\u093f\u0930\u094d\u092b \u092a\u095d\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948\u0902 ", \u0924\u094b \u0906\u092a\u0915\u094b \n\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0930\u0940-\u0938\u0947\u0935 \u0915\u0930\u0928\u0940 \u0939\u094b\u0917\u0940 \u0915\u093f\u0938\u0940 \u0914\u0930 \u091c\u0917\u0939 \u092a\u0930 ,\n\u0914\u0930 \u092b\u093f\u0930 \u0938\u0947 \u092a\u094d\u0930\u092f\u093e\u0938 \u0915\u093f\u091c\u093f\u090f\u092f . + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u0928\u092f\u0940 \u092b\u093e\u0907\u0932 \u0915\u093e \u0928\u093e\u092e + +#: Sketch.java:298 +Sketch\ is\ Untitled=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0915\u094b\u0908 \u0936\u0940\u0930\u094d\u0937\u0915 \u0928\u0939\u0940\u0902 \u0939\u0948 + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u092a\u0939\u0932\u0947 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u0915\u0930 \u0932\u093f\u092f\u093e \u091c\u093e\u092f\u0947 \n\u0907\u0938\u0938\u0947 \u092a\u0939\u0932\u0947 \u0915\u0940 \u0909\u0938\u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932\u093e \u091c\u093e\u092f\u0947 ? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\u0928\u093e\u092e \u092c\u0926\u0932\u0928\u0947 \u092e\u0947\u0902 \u092e\u0941\u0936\u094d\u0915\u093f\u0932 + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=\u0935\u093f\u0930\u093e\u092e \u0938\u0947 \u0928\u093e\u092e \u0928\u0939\u0940\u0902 \u0936\u0941\u0930\u0942 \u0939\u094b \u0938\u0915\u0924\u093e + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \u090f\u0915 \u0935\u0948\u0927 \u090f\u0915\u094d\u0937\u094d\u0924\u0947\u0928\u094d\u0938\u093f\u0913\u0928 \u0928\u0939\u0940\u0902 \u0939\u0948 + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u092e\u0941\u0916\u094d\u092f \u092b\u093e\u0907\u0932 \u0915\u094b \u090f\u0915\u094d\u0937\u094d\u0924\u0947\u0928\u094d\u0938\u093f\u0913\u0928 \u0928\u0939\u0940\u0902 \u0926\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u0924\u093e \n(It may be time for your to graduate to a\n"real" programming environment) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\u0928\u0939\u0940\u0902 + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\ "{0}" \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0938\u0947 \u0939\u0940 "{1}" \u092e\u0947\u0902 \u0909\u092a\u0938\u094d\u0925\u093f\u0924 \u0939\u0948 + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0914\u0930 .cpp \u092b\u093e\u0907\u0932 \u0915\u093e \u0928\u093e\u092e \u090f\u0915 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0924\u093e + +#: Sketch.java:425 +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:459 +Cannot\ Rename=\u0928\u093e\u092e \u092c\u0926\u0932\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u0924\u093e + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u092e\u093e\u092b\u093c \u0915\u0940\u091c\u093f\u092f\u0947 , \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a (\u092f\u093e \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e ) "{0}" \u092a\u0939\u0932\u0947 \u0938\u0947 \u0939\u0940 \u0909\u092a\u0938\u094d\u0925\u093f\u0924 \u0939\u0948 + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u0928\u0939\u0940\u0902 \u092c\u0926\u0932\u093e \u091c\u093e \u0938\u0915\u093e (\u0966) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0928\u093e\u092e \u092c\u0926\u0932\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e "{0}" to "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u0928\u0939\u0940\u0902 \u092c\u0926\u0932\u093e \u091c\u093e \u0938\u0915\u093e (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u0928\u0939\u0940\u0902 \u092c\u0926\u0932\u093e \u091c\u093e \u0938\u0915\u093e (2 ) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() \u0917\u0932\u0924 \u0930\u093f\u091f\u0930\u094d\u0928 + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0915\u094d\u092f\u093e \u0906\u092a \u0938\u0941\u0928\u093f\u0936\u094d\u091a\u093f\u0924 \u0915\u0930\u0924\u0947 \u0939\u0948\u0902 \u0915\u0940 \u092f\u0939 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u093f\u091f\u093e \u0926\u093f\u092f\u093e \u091c\u093e\u092f\u0947 ? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0915\u094d\u092f\u093e \u0906\u092a \u0938\u0941\u0928\u093f\u0936\u094d\u091a\u093f\u0924 \u0915\u0930\u0924\u0947\u0902 \u0939\u0948\u0902 \u0915\u0940 \u092f\u0939 \u092e\u093f\u091f\u093e \u0926\u093f\u092f\u093e \u091c\u093e\u092f\u0947 "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u0930\u0926\u094d\u0926 \u0915\u0930\u0947\u0902 + +#: Sketch.java:620 +Couldn't\ do\ it=\u092f\u0939 \u0915\u093f\u092f\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=\u0939\u091f\u093e\u092f\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e "{0}" + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=\u0915\u094b\u0921 \u0939\u091f\u093e\u092f\u0947\u0902 \: \u0905\u0902\u0926\u0930\u0942\u0928\u0940 \u0924\u094d\u0930\u0941\u091f\u0940.....\u0915\u094b\u0921 \u0916\u094b\u091c\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e + +#: Sketch.java:724 +Sketch\ is\ read-only=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u0947\u0935\u0932 \u092a\u095d\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948 + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u0915\u0941\u091b \u092b\u093c\u093e\u0907\u0932\u0947\u0902 "\u0915\u0947\u0935\u0932 \u092a\u0922\u093c\u0928\u0947" \u0915\u0947 \u0932\u093f\u090f \u091a\u093f\u0939\u094d\u0928\u093f\u0924 \u0915\u0930 \u0930\u0939\u0947 \u0939\u0948\u0902,\n\u0924\u094b \u0906\u092a \u0915\u093f\u0938\u0940 \u0905\u0928\u094d\u092f \u0938\u094d\u0925\u093e\u0928 \u092a\u0930 \u092b\u093f\u0930 \u0938\u0947 \u0907\u0938 \u0938\u094d\u0915\u0947\u091a \u092c\u091a\u093e\u0928\u0947 \u0915\u0940 \u0906\u0935\u0936\u094d\u092f\u0915\u0924\u093e \u0939\u094b\u0917\u0940 + +#: Sketch.java:743 +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?=\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1 .0 \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0921\u093f\u092b\u094c\u0932\u094d\u091f \u092b\u093e\u0907\u0932 \u090f\u0915\u094d\u0937\u094d\u0924\u0947\u0928\u094d\u0938\u093f\u0913\u0928 \u092c\u0926\u0932 \u0917\u092f\u0940 \u0939\u0948\n\u0905\u092c \u092f\u0939 .pde \u0938\u0947 .ino \u092c\u0928 \u0917\u092f\u093e \u0939\u0948 .\u0928\u092f\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u091c\u094b \u0915\u0940 \u0938\u0947\u0935-\u090f\u0938 \u0915\u0940 \u091c\u093e\u0924\u0940 \u0939\u0948 \n\u0909\u0928\u0915\u093e \u090f\u0915\u094d\u0937\u094d\u0924\u0947\u0928\u094d\u0938\u093f\u0913\u0928 .ino \u0939\u094b \u091c\u093e\u092f\u0917\u093e, \u092a\u0930 \u0906\u092a \u092f\u0939 \u092c\u0926\u0932 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902 \u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092e\u0947\u0902 \u091c\u093e\u0915\u0947 + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0915\u094b \u0907\u0938 \u0928\u093e\u092e \u0938\u0947 \u0938\u0947\u0935 \u0915\u0930\u0947\u0902 + +#: Sketch.java:865 +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 + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=How very Borges of you + +#: Sketch.java:887 +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 + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0915\u094b\u0908 \u091a\u093f\u0924\u094d\u0930 \u092f\u093e \u092b\u093e\u0907\u0932 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 \u0915\u0949\u092a\u0940 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u091a\u0941\u0928\u0947\u0902 + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=\u092e\u094c\u091c\u0942\u0926\u093e \u0938\u0902\u0938\u094d\u0915\u0930\u0923 \u092c\u0926\u0932\u0947\u0902 {0} + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=\u092b\u093e\u0907\u0932 \u091c\u094b\u0921\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0907\u0938 "{\u0966}"\u092e\u094c\u091c\u0942\u0926\u093e \u092b\u093e\u0907\u0932 \u0915\u094b \u092e\u093f\u091f\u093e\u092f\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e + +#: Sketch.java:1078 +You\ can't\ fool\ me=\u0906\u092a \u092e\u0941\u091d\u0947 \u092c\u0947\u0935\u0958\u0942\u095e \u0928\u0939\u0940\u0902 \u092c\u0928\u093e \u0938\u0915\u0924\u0947 + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u092f\u0939 \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0939\u0940 \u0909\u0938 \u091c\u0917\u0939 \u092a\u0930 \u0939\u0948 \u091c\u093f\u0938 \u091c\u0917\u0939 \u092a\u0930 \u0906\u092a \u0907\u0938\u0947 \u0915\u0949\u092a\u0940 \u0915\u0930 \u0930\u0939\u0947 \u0939\u0948\u0902 \n\u0915\u0941\u091b \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e\u092f\u0917\u093e + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u092f\u0939 ''{0}'' \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092e\u0947\u0902 \u091c\u094b\u095c\u093e \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u093e + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u092c\u093f\u0932\u094d\u0921 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0917\u093e\u092f\u092c \u0939\u094b \u0917\u092f\u0940 \u092f\u093e \u0909\u0938\u092e\u0947 \u092a\u094d\u0930\u0935\u0947\u0936 \u0928\u093f\u0937\u0947\u0927\u093e\u0924\u094d\u092e\u0915 \u0939\u0948 + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\u092e\u0947\u0928 \u0915\u094d\u0932\u093e\u0938 \u0915\u094b \u0916\u094b\u091c \u0928\u0939\u0940\u0902 \u092a\u093e\u092f\u0947 + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=\u0928\u0939\u0940\u0902 \u092a\u0915\u095c\u093e \u091c\u093e \u0938\u0915\u0928\u0947 \u0935\u093e\u0932\u093e \u0905\u092a\u0935\u093e\u0926\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder={\u0966} \u0915\u094b \u092c\u093f\u0932\u094d\u0921 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u092e\u0947\u0902 \u0921\u093e\u0932\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e + +#: Sketch.java:1661 +Uploading...=\u0905\u092a\u0932\u094b\u0921 \u0939\u094b \u0930\u0939\u093e \u0939\u0948 ..... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u092c\u093e\u0908\u0928\u0930\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0906\u0915\u093e\u0930\: {0} \u092c\u093e\u0908\u091f\u0938 (\u091c\u093f\u0938\u092e\u0947 {1} \u0905\u0927\u093f\u0915\u0924\u092e ) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\u0915\u093e\u0930\u094d\u092f \u0915\u094d\u0930\u092e \u0915\u093e \u0906\u0915\u093e\u0930 \u0928\u0939\u0940\u0902 \u091c\u093e\u0928 \u092a\u093e\u092f\u093e \u0917\u092f\u093e {}0 + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092c\u0939\u0941\u0924 \u092c\u0921\u093c\u0940 \u0939\u0948 -> http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0926\u0947\u0916\u093f\u092f\u0947 \u0907\u0938\u0947 \u091b\u094b\u091f\u093e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0909\u092a\u093e\u090f \u0915\u0947 \u0932\u093f\u090f + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=*/ \u0916\u094b \u0917\u092f\u093e /* \u0915\u0947 \u0905\u0902\u0924 \u0924\u0915 + +#: Sketch.java:1796 +Sketch\ Disappeared=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0916\u094b \u0917\u092f\u0940 + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0916\u094b \u0917\u092f\u0940 \u0939\u0948 \n\u092a\u0930 \u092b\u093f\u0930 \u092d\u0940 \u0909\u0938\u0940 \u091c\u0917\u0939 \u092a\u0947 \u0938\u0947\u0935 \u0915\u0930\u0928\u0947 \u0915\u0940 \u0915\u094b\u0936\u093f\u0936 \u0939\u094b\u0917\u0940 \u0905\u0928\u094d\u092f\u0925\u093e \u0915\u094b\u0921 \u0916\u094b \u091c\u093e\u092f\u0917\u093e + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\u0906\u092a\u0915\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0930\u0940-\u0938\u0947\u0935 \u0928\u0939\u0940\u0902 \u0939\u094b \u092a\u093e\u0908 \u0939\u0948 + +#: Sketch.java:1811 +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.=\u0906\u092a\u0915\u0940 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0930\u0940-\u0938\u0947\u0935 \u0928\u0939\u0940\u0902 \u0939\u094b \u092a\u093e\u0908 \u0939\u0948, \u0939\u094b \u0938\u0915\u0924\u093e \u0939\u0948 \u0906\u092a \u092a\u0930\u0947\u0936\u093e\u0928\u0940 \u092e\u0947\u0902 \u092a\u095d \u091c\u093e\u092f\u0947\u0902 \u0907\u0938\u094d\u0938\u0932\u093f\u092f\u0947 \u0905\u092a\u0928\u093e \u0915\u094b\u0921 \u0915\u0949\u092a\u0940 \u0914\u0930 \u092a\u0947\u0938\u094d\u091f \u0915\u0940\u091c\u093f\u092f\u0947 \u0915\u093f\u0938\u0940 \u0914\u0930 \u091c\u0917\u0939 + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932\u0928\u093e \u0939\u094b\u0917\u093e ,\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u0947 \u0928\u093e\u092e \u092e\u0947\u0902 \n\u0938\u093f\u0930\u094d\u092b \u0905\u0915\u094d\u0937\u0930 \u0914\u0930 \u0905\u0902\u0915\u094b\u0902 \u0915\u093e \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 \n\u0914\u0930 \u092f\u0939 \u092d\u0940 \u0927\u094d\u092f\u093e\u0928 \u0930\u0916\u0947\u0902 \u0915\u0940 64 \u0905\u0915\u094d\u0937\u0930 \u0938\u0947 \u091c\u094d\u092f\u093e\u0926\u093e \u0928\u093e \u0939\u094b + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u0938\u0902\u0915\u0932\u0915 \u0924\u094d\u0930\u0941\u091f\u093f {0} \u0907\u0938 \u0915\u094b\u0921 \u0915\u094b \u092d\u0947\u091c\u0947\u0902 + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u091a\u0941\u0928\u093e \u0917\u092f\u093e \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f {0} \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948 \u092f\u093e \u092c\u094b\u0930\u094d\u0921 \u0928\u0939\u0940\u0902 \u091c\u0941\u0921\u093c\u093e \u0939\u0941\u0906 \u0939\u0948 + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u0921\u093f\u0935\u093e\u0907\u0938 \u091c\u0935\u093e\u092c \u0928\u0939\u0940 \u0926\u0947 \u0930\u0939\u093e \u0939\u0948, \u091c\u093e\u0902\u091a \u0932\u0940\u091c\u093f\u092f\u0947 \u0915\u093f \u0938\u0939\u0940 \u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0915\u093e \u091a\u092f\u0928 \u0915\u093f\u092f\u093e \u0939\u0948 \u092f\u093e \u092c\u094b\u0930\u094d\u0921 \u0915\u094b \u090f\u0915\u094d\u0938\u092a\u094b\u0930\u094d\u091f \u0915\u0930\u0928\u0947 \u0938\u0947 \u092a\u0939\u0932\u0947 \u0930\u0940\u0938\u0947\u091f \u0915\u0940\u091c\u093f\u092f\u0947 + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u092c\u094b\u0930\u094d\u0921 \u092e\u0947 \u0905\u092a\u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u092e\u0947 \u0938\u092e\u0938\u094d\u092f\u093e, \u0938\u0941\u091d\u093e\u0935 \u0915\u0947 \u0932\u093f\u092f\u0947 http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0926\u0947\u0916\u0947\u0901 + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0917\u0932\u0924 \u092e\u093e\u0907\u0915\u094d\u0930\u094b\u0915\u0902\u091f\u094d\u0930\u094b\u0932\u0930 \u092e\u093f\u0932\u093e| \u0915\u094d\u092f\u093e \u0906\u092a\u0928\u0947 \u091f\u0942\u0932\u094d\u0938 >\u092c\u094b\u0930\u094d\u0921 \u092e\u0947\u0928\u0942 \u0938\u0947 \u0938\u0939\u0940 \u092c\u094b\u0930\u094d\u0921 \u091a\u0941\u0928\u093e \u0939\u0948? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0915\u094b\u0908 \u092c\u094b\u0930\u094d\u0921 \u091a\u092f\u0928\u093f\u0924 \u0928\u0939\u0940, \u0909\u092a\u0915\u0930\u0923 \u0938\u0947 \u090f\u0915 \u092c\u094b\u0930\u094d\u0921 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902> \u092c\u094b\u0930\u094d\u0921 \u092e\u0947\u0928\u0942 + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} \u0932\u094c\u091f\u093e\u092f\u093e {1} + +#: debug/Compiler.java:426 +Error\ compiling.=\u0938\u0902\u0915\u0932\u0928 \u0924\u094d\u0930\u0941\u091f\u093f + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u0938\u094d\u0915\u0947\u091a \u0938\u0947 \u090f\u0938 \u092a\u0940 \u0906\u0908 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0915\u093e \u0906\u092f\u093e\u0924 \u0915\u0930\u0947\u0902 + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0909\u0928\u094d\u0928\u0940\u0938 \u0924\u0915, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u090f\u0938 \u092a\u0940 \u0906\u0908 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u092a\u0930 \u0928\u093f\u0930\u094d\u092d\u0930 \u0915\u0930\u0924\u0940 \u0939\u0948\u0906\u092a \u092f\u0939 \u0905\u0925\u0935\u093e \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0924\u0947 \u0939\u0941\u090f \u0926\u093f\u0916\u093e\u0908 \u0926\u0947 \u0930\u0939\u0947 \u0939\u0948\u0902 \u091c\u094b \u090f\u0938 \u092a\u0940 \u0906\u0908 \u092a\u0930 \u0928\u093f\u0930\u094d\u092d\u0930 \u0915\u0930\u0924\u0940 \u0939\u0948 \n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='\u092c\u093e\u0907\u091f' \u0915\u0940\u0935\u0930\u094d\u0921 \u0905\u092c \u0938\u092e\u0930\u094d\u0925\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u0948 + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\u0915\u0943\u092a\u092f\u093e Serial.write() \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0930\u0947\u0902 + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0938\u0930\u094d\u0935\u0930 \u0935\u0930\u094d\u0917 \u0915\u093e \u092a\u0941\u0928\u0903 \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f\u0938\u0930\u094d\u0935\u0930 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0939\u0948 + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u090f\u0915 \u0924\u0915, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u092e\u0947 \u0938\u0930\u094d\u0935\u0930 \u0935\u0930\u094d\u0917 \u0915\u093e \u092a\u0941\u0928\u0903 \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f\u0938\u0930\u094d\u0935\u0930 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0939\u0948 + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0939\u094b \u0917\u092f\u093e \u0939\u0948 + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0915\u0940 \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u0915\u094d\u0932\u093e\u0907\u0902\u091f \u0939\u094b \u0917\u092f\u093e \u0939\u0948 + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u092f\u0942\u0921\u0940\u092a\u0940 \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u092f\u0942\u0921\u0940\u092a\u0940 \u0939\u094b \u0917\u092f\u093e \u0939\u0948 + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, \u0908\u0925\u0930\u0928\u0947\u091f \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0915\u0940 \u092f\u0942\u0921\u0940\u092a\u0940 \u0915\u094d\u0932\u093e\u0938 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 \u0908\u0925\u0930\u0928\u0947\u091f \u092f\u0942\u0921\u0940\u092a\u0940 \u0939\u094b \u0917\u092f\u093e \u0939\u0948 + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.write() \u0939\u094b \u0917\u092f\u093e \u0939\u0948 + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, Wire.send() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.write() \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940\u091c\u093c \u0915\u0947 \u0938\u093e\u0925 \u0938\u094d\u0925\u093f\u0930\u0924\u093e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0925\u093e + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.read() \u0939\u094b \u0917\u092f\u093e \u0939\u0948 + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b 1.0 \u0938\u0947, Wire.receive() \u092b\u093c\u0902\u0915\u094d\u0936\u0928 \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.read() \u0926\u0942\u0938\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940\u091c\u093c \u0915\u0947 \u0938\u093e\u0925 \u0938\u094d\u0925\u093f\u0930\u0924\u093e \u0915\u0947 \u0932\u093f\u092f\u0947 \u0915\u093f\u092f\u093e \u0917\u092f\u093e \u0925\u093e + +#: EditorConsole.java:152 +Console\ Error=\u0915\u0902\u0938\u094b\u0932 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940 + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u0915\u0902\u0938\u094b\u0932 \u0906\u0909\u091f \u092a\u0941\u091f \u0915\u094b \u091c\u092e\u093e \u0915\u0930\u0928\u0947 \u0935\u093e\u0932\u0940 \n\u092b\u093f\u0932\u094d\u0938 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940 + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u0930\u0942\u092a \u0914\u0930 \u092e\u0939\u0938\u0942\u0938 \u0939\u0948 \u0915\u0940 \u0938\u094d\u0925\u093e\u092a\u0928\u093e \u0915\u0930\u0924\u0947 \u0939\u0941\u090f \u0917\u0948\u0930 \u0918\u093e\u0924\u0915 \u0924\u094d\u0930\u0941\u091f\u093f + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u0924\u094d\u0930\u0941\u091f\u093f \u0938\u0902\u0926\u0947\u0936 \u0907\u0938 \u092a\u094d\u0930\u0915\u093e\u0930 \u0939\u0948, \u0932\u0947\u0915\u093f\u0928 \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0920\u0940\u0915 \u091a\u0932\u093e\u0928\u093e \u091a\u093e\u0939\u093f\u090f + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u092a\u094d\u0932\u0947\u091f\u092b\u093e\u0930\u094d\u092e \u0915\u0940 \u0938\u094d\u0925\u093e\u092a\u0928\u093e \u092e\u0947 \u0938\u092e\u0938\u094d\u092f\u093e + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u092e\u0936\u0940\u0928 \u0915\u0947 \u0932\u093f\u090f \u0935\u093f\u0936\u093f\u0937\u094d\u091f \u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0930\u0928\u0947 \u0915\u093e \u092a\u094d\u0930\u092f\u093e\u0938 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u090f\u0915 \u0905\u091c\u094d\u091e\u093e\u0924 \u0924\u094d\u0930\u0941\u091f\u093f \u0939\u0941\u0908\n + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=\u0915\u0943\u092a\u092f\u093e \u091c\u0947\u0921\u0940\u0915\u0947 1.5 \u092f\u093e \u092c\u093e\u0926 \u0915\u093e \u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902\u0902 + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u0915\u093e\u092e \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f\u00a0\u092a\u0942\u0930\u094d\u0923 \u091c\u0947.\u0921\u0940.\u0915\u0947. \u091a\u093e\u0939\u093f\u090f(\u0938\u093f\u0930\u094d\u092b \u090f\u0915 \u091c\u0947.\u0906\u0930.\u0908. \u0928\u0939\u0940)|\u00a0\u0915\u0943\u092a\u092f\u093e \u092a\u0939\u0932\u0947\u00a0\u091c\u0947\u0921\u0940\u0915\u0947 1.5 \u092f\u093e \u092c\u093e\u0926 \u0915\u093e \u0938\u094d\u0925\u093e\u092a\u093f\u0924 \u0915\u0930\u0947\u0902|\u00a0\u0905\u0927\u093f\u0915\u00a0\u091c\u093e\u0928\u0915\u093e\u0930\u0940\u00a0\u0938\u0902\u0926\u0930\u094d\u092d\u00a0\u092e\u0947\u0902 \u092a\u093e\u0908 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948| + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u092b\u094b\u0932\u094d\u0921\u0930 \u0917\u093e\u092f\u092c \u0939\u094b \u0917\u092f\u093e \u0939\u0948 + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0905\u092c \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948| \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0921\u093f\u092b\u093c\u0949\u0932\u094d\u091f \u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u0938\u094d\u0925\u093e\u0928 \u092a\u0930 \u0938\u094d\u0935\u093f\u091a \u091c\u093e\u090f\u0917\u093e, \u0914\u0930 \u092f\u0926\u093f \u0906\u0935\u0936\u094d\u092f\u0915 \u090f\u0915 \u0928\u092f\u093e \u0938\u094d\u0915\u0947\u0924\u094d\u091a\u092c\u0941\u0915 \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u092c\u0928\u093e\u090f\u0917\u093e| \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0924\u092c \u0924\u0940\u0938\u0930\u0947 \u0935\u094d\u092f\u0915\u094d\u0924\u093f \u092e\u0947\u0902 \u0916\u0941\u0926 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947\u0902 \u092c\u093e\u0924 \u0915\u0930\u0928\u093e \u092c\u0902\u0926 \u0915\u0930 \u0926\u0947\u0902\u0917\u0947. + +#: Base.java:532 +Time\ for\ a\ Break=\u092c\u094d\u0930\u0947\u0915 \u0915\u093e \u0938\u092e\u092f + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0906\u092a \u0906\u091c \u0915\u0947 \u0926\u093f\u0928 \u0915\u0947 \u0928\u090f \u0938\u094d\u0915\u0947\u091a \u0915\u0947 \u0938\u094d\u0935\u0924\: \u0928\u093e\u092e\u0915\u0930\u0923 \u0915\u0940 \u0938\u0940\u092e\u093e \u0924\u0915 \u092a\u0939\u0941\u0901\u091a \u0917\u090f \u0939\u0948\u0902\n\u0907\u0938\u0915\u0947 \u092c\u091c\u093e\u092f \u091f\u0939\u0932\u0928\u0947 \u091c\u093e\u0928\u0947 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947 \u0915\u094d\u092f\u093e \u0916\u092f\u093e\u0932 \u0939\u0948? + +#: Base.java:537 +Sunshine=\u0938\u0942\u0930\u094d\u092f \u0915\u093f\u0930\u0928 + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0928\u0939\u0940\u0902, \u0935\u093e\u0938\u094d\u0924\u0935 \u092e\u0947\u0902, \u0906\u092a \u0915\u0947 \u0932\u093f\u090f \u0915\u0941\u091b \u0924\u093e\u091c\u093e \u0939\u0935\u093e \u0915\u0947 \u0932\u093f\u090f \u0938\u092e\u092f \u0939\u0948. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0938\u094d\u0915\u0947\u091a \u0916\u094b\u0932\u093f\u090f + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0915\u094d\u092f\u093e \u0906\u092a \u0938\u091a \u092e\u0947\u0902 \u091b\u094b\u0921\u093c \u0915\u0930 \u091c\u093e\u0928\u093e \u091a\u093e\u0939\u0924\u0947 \u0939\u0948\u0902 ?

\u0906\u0916\u093f\u0930\u0940 \u0916\u0941\u0932\u093e \u0938\u094d\u0915\u0947\u091a \u092c\u0902\u0926 \u0915\u0930\u0928\u0947 \u0938\u0947 \u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092c\u0902\u0926 \u0939\u094b \u091c\u093e\u090f\u0917\u093e | + +#: Base.java:970 +Contributed=\u092f\u094b\u0917\u0926\u093e\u0928 \u0926\u093f\u092f\u093e + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u0938\u094d\u0915\u0947\u091a \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948 + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u091a\u092f\u0928\u093f\u0924 \u0938\u094d\u0915\u0947\u091a \u0905\u092c \u092e\u094c\u091c\u0942\u0926 \u0928\u0939\u0940\u0902 \u0939\u0948|\n\u0906\u092a\u0915\u094b \u0938\u094d\u0915\u0947\u091a\u092c\u0941\u0915 \u092e\u0947\u0928\u0942 \u0915\u094b \u0905\u092a\u0921\u0947\u091f \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092a\u0941\u0928\u0903 \u0906\u0930\u092e\u094d\u092d \u0915\u0930\u0928\u0947 \u0915\u0940 \u0906\u0935\u0936\u094d\u092f\u0915\u0924\u093e \u0939\u0948 + +#: Base.java:1125 +#, 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}=\u0938\u094d\u0915\u0947\u091a \u0915\u093e "{0}" \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947|\n\u0938\u094d\u0915\u0947\u091a \u0928\u093e\u092e\u094b\u0902 \u092e\u0947\u0902 \u0915\u0947\u0935\u0932 \u092e\u0942\u0932 \u0905\u0915\u094d\u0937\u0930\u094b\u0902 \u0914\u0930 \u0938\u0902\u0916\u094d\u092f\u093e\u0913\u0902 \u0915\u094b \u0936\u093e\u092e\u093f\u0932 \u0939\u094b\u0928\u093e \u091a\u093e\u0939\u093f\u090f\n(\u0915\u094b\u0908 \u0938\u094d\u092a\u0947\u0938 \u0915\u0947 \u092c\u093f\u0928\u093e \u0915\u0947\u0935\u0932 ASCII, \u0914\u0930 \u092f\u0939 \u090f\u0915 \u0938\u0902\u0916\u094d\u092f\u093e \u0915\u0947 \u0938\u093e\u0925 \u0936\u0941\u0930\u0942 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947)\n\u0907\u0938 \u0938\u0902\u0926\u0947\u0936 \u0938\u0947 \u091b\u0941\u091f\u0915\u093e\u0930\u093e \u092a\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u0938\u094d\u0915\u0947\u091a \u0915\u094b {1} \u0938\u0947 \u0939\u091f\u093e\u092f\u0947\u0902\n + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\u092c\u0941\u0930\u093e \u0928\u093e\u092e \u0915\u0947 \u0915\u093e\u0930\u0923 \u0938\u094d\u0915\u0947\u091a \u0915\u0940 \u0905\u0928\u0926\u0947\u0916\u0940 + +#: Base.java:1202 +#, 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)=\u0932\u0948\u092c\u094d\u0930\u0930\u0940 \u0915\u094b "{0}" \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u0924\u093e \u0939\u0948\n\u0932\u0948\u092c\u094d\u0930\u0930\u0940 \u0915\u0947 \u0928\u093e\u092e \u092e\u0947 \u0915\u0947\u0935\u0932 \u092e\u0942\u0932 \u0905\u0915\u094d\u0937\u0930 \u0914\u0930 \u0938\u0902\u0916\u094d\u092f\u093e\u090f\u0901 \u0936\u093e\u092e\u093f\u0932 \u0939\u094b\u0928\u093e \u091a\u093e\u0939\u093f\u090f |\n(\u0915\u0947\u0935\u0932 \u0906\u0938\u094d\u0915\u0940 \u0914\u0930 \u0930\u093f\u0915\u094d\u0924 \u0938\u094d\u0925\u093e\u0928 \u0928\u0939\u0940\u0902, \u0914\u0930 \u092f\u0939 \u090f\u0915 \u0938\u0902\u0916\u094d\u092f\u093e \u0915\u0947 \u0938\u093e\u0925 \u0936\u0941\u0930\u0942 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u092c\u0941\u0930\u0940 \u0932\u093e\u092f\u092c\u094d\u0930\u0947\u0930\u0940 \u0928\u093e\u092e \u0915\u0940 \u0905\u0928\u0926\u0947\u0916\u0940 + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u0921\u0947\u091f\u093e \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0915\u094b \u0932\u0947\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e \u0939\u0948 + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0921\u0947\u091f\u093e \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u092a\u094d\u0930\u093e\u092a\u094d\u0924 \u0915\u0930\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u093f + +#: Base.java:1440 +Settings\ issues=\u092e\u0941\u0926\u094d\u0926\u0947 \u0915\u0940 \u0938\u094d\u0925\u093e\u092a\u0928\u093e + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u0928\u0939\u0940\u0902 \u091a\u0932\u093e \u0938\u0915\u0924\u0947 \u0915\u094d\u092f\u094b\u0915\u093f \u0905\u092a\u0928\u0940 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938 \u0915\u094b \u0938\u094d\u091f\u094b\u0930 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0928\u0939\u0940\u0902 \u092c\u0928\u093e \u0938\u0915\u0924\u093e + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u0906\u092a \u0905\u092a\u0928\u0940 \u0938\u094d\u0915\u0947\u091a\u092c\u0941\u0915 \u092d\u0942\u0932 \u0917\u090f + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u0906\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u0928\u0939\u0940\u0902 \u091a\u0932\u093e \u0938\u0915\u0924\u0947 \u0915\u094d\u092f\u094b\u0915\u093f \u0905\u092a\u0928\u0940 \u0938\u0947\u091f\u093f\u0902\u0917\u094d\u0938 \u0915\u094b \u0938\u094d\u091f\u094b\u0930 \u0915\u0930\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0928\u0939\u0940\u0902 \u092c\u0928\u093e \u0938\u0915\u0924\u093e + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0938\u094d\u0915\u0947\u091a \u092c\u0928\u093e\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902 \u0905\u0925\u0935\u093e \u0928\u092f\u093e \u092c\u0928\u093e\u090f\u0901 + +#: Base.java:1647 +Problem\ Opening\ URL=\u092f\u0942\u0906\u0930\u090f\u0932 \u0916\u094b\u0932\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e \u0939\u0948 + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=\u092f\u0942\u0906\u0930\u090f\u0932 \u0928\u0939\u0940\u0902 \u0916\u094b\u0932 \u0938\u0915\u093e\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=\u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0916\u094b\u0932\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e \u0939\u0948 + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0928\u0939\u0940\u0902 \u0916\u094b\u0932 \u0938\u0915\u093e\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u0935\u093e\u0924\u093e\u0935\u0930\u0923 + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u0938\u0902\u0926\u0947\u0936 + +#: Base.java:1842 +Warning=\u091a\u0947\u0924\u093e\u0935\u0928\u0940 + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}={0} \u0915\u0947 \u092a\u0941\u0930\u093e\u0928\u0947 \u0938\u0902\u0938\u094d\u0915\u0930\u0923 \u0915\u094b \u0926\u0942\u0930 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u093e + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}={0} \u0915\u0940 \u091c\u0917\u0939 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u093e + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}={0} \u0915\u094b \u0928\u0937\u094d\u091f \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u093e + +#: EditorHeader.java:292 +New\ Tab=\u0928\u092f\u093e \u091f\u0948\u092c + +#: EditorHeader.java:300 +Rename=\u0928\u093e\u092e \u092c\u0926\u0932\u0947\u0902 + +#: EditorHeader.java:326 +Previous\ Tab=\u092a\u093f\u091b\u0932\u093e \u091f\u0948\u092c + +#: EditorHeader.java:340 +Next\ Tab=\u0905\u0917\u0932\u093e \u091f\u0948\u092c + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u091c\u093e\u0902\u091a \u0915\u0930\u0947\u0902 + +#: EditorToolbar.java:41 +Open=\u0916\u094b\u0932\u0947\u0902 + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u0928\u092f\u0940 \u0938\u0902\u092a\u093e\u0926\u0915 \u0916\u093f\u0921\u093c\u0915\u0940 + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u0905\u0932\u0917 \u091f\u0948\u092c \u092e\u0947\u0902 \u0916\u094b\u0932\u0947\u0902 + +#: Platform.java:167 +No\ launcher\ available=\u0915\u094b\u0908 \u092a\u094d\u0930\u093e\u0930\u0902\u092d \u0915\u0930\u0924\u093e \u0909\u092a\u0932\u092d\u094d\u0926 \u0928\u0939\u0940\u0902 + +#: 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=\u0905\u0928\u093f\u0930\u094d\u0926\u093f\u0937\u094d\u091f \u092a\u094d\u0932\u093e\u0924\u094d\u092b\u094b\u0930\u094d\u092e , \u0915\u094b\u0908 \u092a\u094d\u0930\u093e\u0930\u0902\u092d \u0915\u0930\u0924\u093e \u0909\u092a\u0932\u092d\u094d\u0926 \u0928\u0939\u0940\u0902 \nURL \u0914\u0930 \u092a\u0941\u0938\u093f\u0924\u0915\u093e \u0916\u094b\u0932\u0928\u0947 \u0915\u0947 \u0932\u093f\u090f \u091c\u094b\u0921\u0940\u092f\u0947"launcher\=/path/to/app" \u0932\u093e\u0907\u0928 \u0915\u094b preferences .txt \u092e\u0947\u0902 + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u0906\u092a\u0915\u094b processing \u0907\u0928\u094d\u0938\u094d\u091f\u093e\u0932 \u0915\u0930\u0928\u0940 \u092a\u095c\u0947\u0917\u093e + +#: Preferences.java:80 +Browse=\u092c\u094d\u0930\u093e\u0909\u091c\u093c \u0915\u0930\u0947\u0902 + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0921\u093f\u092b\u094c\u0932\u094d\u091f \u0938\u0947\u0924\u094d\u0924\u093f\u0902\u0917\u094d\u0938 \u0938\u094d\u0924\u093e\u092a\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0940 \n\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092b\u093f\u0930 \u0938\u0947 \u0907\u0928\u094d\u0938\u094d\u091f\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}={\u0966} \u0938\u0947 \u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u095d\u0940 \u0928\u0939\u0940\u0902 \u091c\u093e \u0938\u0915\u0940 + +#: Preferences.java:261 +Error\ reading\ preferences=\u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u0922\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940 + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u092a\u0922\u0928\u0947 \u092e\u0947\u0902 \u0924\u094d\u0930\u0941\u091f\u0940 ,\u0915\u0943\u092a\u094d\u092f\u093e \n{0} \u0915\u094b \u092e\u093f\u091f\u093e\u092f\u0947\u0902 \u092f\u093e \u0939\u091f\u093e\u092f\u0947\u0902 \u0914\u0930 \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092a\u0941\u0928\u094d\u0939\u0947\u0902 \u091a\u093e\u0932\u0942 \u0915\u0930\u0947\u0902 + +#: Preferences.java:299 +Sketchbook\ location\:=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093f\u0924\u093e\u092c \u0915\u093e \u0938\u094d\u0925\u093e\u0928 + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093f\u0924\u093e\u092c \u0915\u0940 \u0928\u092f\u0940 \u091c\u0917\u0939 \u091a\u0941\u0928\u093f\u090f + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092b\u093f\u0930 \u0938\u0947 \u091a\u093e\u0932\u0942 \u0915\u0930\u0947\u0902 + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u090f\u0921\u093f\u091f\u0930 \u092b\u0949\u0923\u094d\u091f \u0938\u093e\u0907\u091c\u093c\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u0935\u093e\u091a\u093e\u0932 \u0906\u0909\u091f \u092a\u0941\u091f \u0926\u093f\u0916\u093e\u090f\u0902\: + +#: Preferences.java:373 +compilation\ =\u0938\u0902\u0915\u0932\u0928 + +#: Preferences.java:375 +upload=\u0909\u092a\u0932\u094b\u0921 + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +Use\ external\ editor=\u092c\u093e\u0939\u0930\u0940 \u090f\u0921\u093f\u091f\u0930 \u0907\u0938\u094d\u0924\u0947\u092e\u093e\u0932 \u0915\u0930\u0947\u0902 + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u0936\u0941\u0930\u0941\u0906\u0924 \u092e\u0947\u0902 \u0905\u0926\u094d\u092f\u0924\u0928 \u0915\u0947 \u0932\u093f\u090f \u091c\u093e\u0902\u091a\u0947\u0902 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u092b\u093f\u0932\u094d\u0938 \u0915\u094b \u092a\u0941\u0930\u093e\u0928\u0947 \u090f\u0915\u094d\u0937\u094d\u0924\u0947\u0928\u094d\u0938\u093f\u0913\u0928 \u0938\u0947 \u0928\u090f \u092e\u0947\u0902 \u0905\u092a\u0921\u0947\u091f \u0915\u0940\u091c\u093f\u092f\u0947(.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=\u0938\u094d\u0935\u0924\: .INO \u092b\u093e\u0907\u0932 \u0915\u093e \u0938\u0939\u092f\u094b\u0917\u0940 \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092c\u0928\u093e\u092f\u0947 + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0914\u0930 \u092c\u094b\u0939\u094b\u0924 \u0938\u0940 \u092a\u094d\u0930\u0947\u092b\u0947\u0930\u0947\u0902\u0938\u0938 \u0938\u0940\u0927\u093e \u092b\u093e\u0907\u0932 \u092e\u0947\u0902 \u0938\u092e\u094d\u092a\u093e\u0926\u093f\u0924 \u0915\u0940 \u091c\u093e \u0938\u0915\u0924\u0940 \u0939\u0948\u0902 + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(\u0924\u092d\u0940 \u0938\u092e\u094d\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902 \u091c\u092c \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u091a\u0932 \u0928 \u0930\u0939\u093e \u0939\u094b) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u0905\u0935\u0948\u0927 \u092b\u0949\u0923\u094d\u091f \u0906\u0915\u093e\u0930 \u0915\u094b \u0928\u091c\u093c\u0930\u0902\u0926\u093e\u091c\u093c \u0915\u0930\u0947\u0902 diff --git a/app/src/processing/app/Resources_hu.po b/app/src/processing/app/Resources_hu.po new file mode 100644 index 000000000..d4a7b41eb --- /dev/null +++ b/app/src/processing/app/Resources_hu.po @@ -0,0 +1,1646 @@ +# Hungarian translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Robert Cseh , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: Robert Cseh\n" +"POT-Creation-Date: 2012-04-03 10:24-0400\n" +"PO-Revision-Date: 2012-04-11 23:15-0400\n" +"Last-Translator: Robert Cseh \n" +"Language-Team: Hungarian\n" +"Language: hu\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Nem lett file hozzáadva a Sketch-hez." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Egy file a Sketch-hez hozzáadásra került." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} file a Sketch-hez hozzáadásra került." + +#: Editor.java:484 +msgid "File" +msgstr "File" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Új" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Megnyit..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "SketchBook" + +#: Editor.java:509 +msgid "Examples" +msgstr "Minták" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Kilépés" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Mentés" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Mentés másként..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Feltöltés" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Feltöltés programozóval" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Oldalbeállítás" + +#: Editor.java:564 +msgid "Print" +msgstr "Nyomtatás" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Beállítások" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Kilépés" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Ellenőrzés / Fordítás" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Függvény importálás..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Sketch mappa mutatása" + +#: Editor.java:643 +msgid "Add File..." +msgstr "File hozzáadása..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Eszközök" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Soros monitor" + +#: Editor.java:682 +msgid "Board" +msgstr "Alappanel" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Soros port" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programozó" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Bootloader beégetése" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "Üres a serialMenü" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "a név: üres(nincs megadva)" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "hiba a portlista lekérésekor" + +#: Editor.java:1002 +msgid "Help" +msgstr "Súgó" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Első lépések" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Környezet" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Hibaelhárítás" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referencia" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Keresés a Referenciák közt" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Gyakran Ismételt Kérdések" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "arduino.cc honlap megnyitása" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Arduino névjegye" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Szerkesztés" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Mégse" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Mégis" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Kivágás" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Másolás" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Másolás a Fórumhoz" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Másolás HTML-ként" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Beillesztés" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Minden kijelölése" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Megjegyzés/Mégsem" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Behúzás növelése" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Behúzás csökkentése" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Keresés..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Következő keresése" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Előző keresése" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Kiválasztás használata kereséshez" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Először egy szót kell választani a Referenciák közti kereséshez." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Referencia nem található a {0} bejegyzéshez" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Sketch fordítása..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Fordítás kész." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Mentés a {0} állományba? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Változtatás " +"mentése a kilépés előtt a Sketch-be?

Mentés nékül a változtatások elvesznek." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Mégse" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Nincs mentés" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Hibás file lett kiválasztva" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing csak a saját állományát tudja megnyitni\n" +"vagy az .ino vagy .pde kiterjesztésűeket" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"A \"{0}\" file-nak a(z) {1} mappán belül kell lennie.\n" +"Mi legyen?\n" +"Mappa létrehozása, file mozgatása és folytatás?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Átmozgatás" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Hiba" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "A {0} mappa már létezik. Sketch nem nyitható meg." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Sketch mappája nem hozható létre." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Nem másolható a megfelelő helyre." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Sketch nem hozható létre." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Mentés..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Mentés kész." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Mentés megszakítva." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"{0} soros port nem található.\n" +"Másik soros porton megismételjük?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Feltöltés alappanelre..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Feltöltés kész." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Feltöltés megszakítva." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Exportálás előtt mentés?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exportálás megszakítva. Először menteni kell!" + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Bootloader égetése (néhány percet vesz igénybe)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Bootloader égetés kész." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Hiba lépett fel a bootloader égetésekor." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Nyomtatás..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Nyomtatás kész." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Hiba a nyomtatás során." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Nyomtatás megszakítva." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Hibás sor: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "URL megnyitása" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Új kiadás jelent meg Arduino-ból,\n" +"megmutassam a letöltési oldalt?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Igen" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Nem" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Frissítés" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Keresés:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Csere erre:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Kisbetű-nagybetű független" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Teljesen szövegben" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Mindent cserél" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Cserél" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Keres és cserél" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Előző" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Keres" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Küld" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Autogörgetés" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Nincs sorlezárás" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Soremelés" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Kocsi-vissza" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Soremelés és Kocsi-vissza" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"A {0} soros port használatban van. A programból való" +"kilépés után próbálja újra." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Hiba a {0} soros port megnyitása során." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"A {0} soros port nem található. Választani az Eszközök > " +"Soros port alatt lehetséges." + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() byte buffer túl kicsi {0} byte befogadására " +"és ideértve a {1} karaktert" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Hiba a Serial.{0}()-ban" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Autoformázás" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Nem szükséges semmilyen változtatás autoformázáshoz." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Autoformázás megszakítva: túl sok a záró zárójel." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Autoformázás megszakítva: túl sok a nyitó zárójel." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Autoformázás megszakítva: túl sok záró kapcsos-zárójel." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Autoformázás megszakítva: túl sok nyitó kapcsos-zárójel." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Autoformázás befejeződött." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Betöltéskor autoformázás" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Módosítások elvetése és Sketch újratöltése?" + +#: 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 "" +"Hiba lépett fel a file fixálása/javítása során.\n" +"Nem javasolt a felülírásos mentés.\n" +"A Sketch újra-megnyitása talán megoldja a problémát.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Sketch archiválás" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Sketch nem archiválható" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"A Sketch archiválása megszakadt, mivel\n" +"a Sketch pontos mentése nem volt lehetséges." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Sketch archiválása, mint:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Sketch archiválás megszakítva." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Hiba a kód betöltése közben: {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,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 "" +"A {0} nem felismerhető karaktert tartalmaz. Ha a kód régebbi verziójú " +"Processing-gel készült, akkor az Eszközök -> Betöltéskor autoformázás " +"menüpont megoldja az UTF-8 kódolást. Ha mégsem, akkor a hibás karaktert " +"ki kell törölni az állományból." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Sketch csak olvasható" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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.\n" +"\n" + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Új file neve:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "A Sketch most Névtelen (Untitled)" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"A Sketch csak mentés után\n" +"nevezhető át!" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Hiba az átnevezés során" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "A név nem kezdődhet periódus-jellel." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" nem megfelelő kiterjesztés." + +#: Sketch.java:378 +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 "" +"A fő-file nem tartalmazhat kiterjesztést.\n" +"(Talán itt az idő, hogy megismerje a\n" +"\"valódi\" programozási környezetet)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Dehogy, nem" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "A \"{0}\" file már létezik a \"{1}\" mappában!" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Nem lehet azonos néven a .cpp állomány, mint a Sketch." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Nem nevezhető át a Sketch, mert létezik a \"{0}\"\n" +"nevű .cpp állomány." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Átnevezési hiba" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Hiba: Sketch (vagy mappa) már létezik \"{0}\" néven." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "A Sketch nem nevezhető át: (0)." + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Nem nevezhető át: \"{0}\" -> \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Nem nevezhető át a Sketch: (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Nem nevezhető át a Sketch: (2)." + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "a createNewFile() hibát jelzett" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Tényleg törölni kell a Sketch-et? Biztosan?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "A(z) \"{0}\" állomány tényleg törlésre kerüljön?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Törlés" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Nem tudom megtenni" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Nem törölhető file: \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: belső hiba... Kód nem található" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "A Sketch csak olvasható" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Néhány file csak olvasható, így el kell menteni a\n" +"Sketch-et egy másik mappába." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"Az Arduino 1.0-ban az alappértelmezett kiterjesztés megváltozott\n" +".pde-ről .ino-ra. Az új Sketck-ek (ideértve a Mentés másként... létrehozottakat is)\n" +"már az új kiterjesztést használják. A mentés\n" +"közbeni átnevezés tiltható a Beállítások menüpontban.\n" +"\n" +"Sketch mentése és kiterjesztés frissítése?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Sketch mentése, mint..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Sketch nem menthető, mint \"{0}\"\n" +"mert már van ilyen .cpp állomány." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Nono!" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Sketch nem menthető a mappába.\n" +"Így egy végtelen történetté alakulna." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Kép vagy egyéb adat választása a Sketch-be másoláshoz" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "A meglevő {0} cseréje?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "File hozzáadási hiba" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Nem törölhető a meglevő {0} file." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Ne bolondozzon velem" + +#: Sketch.java:1079 +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 "" +"A file már másolásra került a mappába\n" +"ahonnan hozzá próbálta adni.\n" +"Még mindig nem végrehajtható." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "A {0} nem adható hozzá a Sketch-hez." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "A fordítási mappa elérhetetlen vagy írásvédett." + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "A fő programosztály (main class) nem található" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Hibás kivétel típus: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Hiba a {0} fordítási mappába mozgatása során" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Feltöltés..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Sketch mérete: {0} byte (maximálisan lehetséges: {1} byte)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Nem meghatározható a {0} program mérete" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "Túl nagy a Sketch: méret csökkentéséhez a http://www.arduino.cc/en/Guide/Troubleshooting#size oldalon találhatóak tippek." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Hiányzik a megjegyzést záró */ jel" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "A Sketch elveszett" + +#: Sketch.java:1797 +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 "" +"A Sketch mappája elveszett.\n" +"A Sketch újramentésre kerül,\n" +"a kód egyes részei megsemmisülhettek." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Nem lehetséges a Sketch újramentése" + +#: Sketch.java:1811 +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 "" +"Tökéletesen nem lehetséges a Sketch újramentése. A megoldás jelen helyzetben, hogy\n" +"a szerkesztőből a kódot kimásolja egy másik szerkesztőprogramba." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"A Sketch neve módosításra került. Az elnevezése csak\n" +"ASCII betűket, számokat tartalmazhat (de nem kezdődhet számmal).\n" +"Valamint a név hossza nem haladhatja meg a 64 karaktert." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Fordítási hiba, ezt a kódot kérem küldje el a {0} címre" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "kiválasztott {0} port nem elérhető vagy az alappanel nincs csatlakoztatva" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Eszköz nem válaszol: talán hibás port lett kiválasztva, vagy a panel" +"újraindítása szükséges exportálás előtt" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Hiba a feltöltés során. A hiba elhárítása a " +"http://www.arduino.cc/en/Guide/ oldalon a Troubleshooting#upload alatt került leírásra." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Nem megfelelő mikrokontroller lett kiválasztva. Pontosítani az Eszközök " +"> Alappanelek menüben lehet." + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Nincs alappanel kiválasztva. Választani az Eszközök > Alappanel menüből lehet." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} eredménye {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Hiba a fordítás során." + +#: debug/Compiler.java:465 +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." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Az Arduino-0019 óta az Ethernet függvények kapcsolódnak az SPI függvényekhez.\n" +"Ez így használható, vagy másik függvény alkalmazható az SPI kezelésére.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "A 'BYTE' kulcsszó nem támogatott." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Az Arduino 1.0 alatt a 'BYTE' kulcsszó nem támogatott.\n" +"Helyette a Serial.write() használható.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "A Server függvényosztály EthernetServer névre hallgat." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Az Arduino 1.0-ban, az Ethernet függvény Server osztálya EthernetServer-re változott.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "A Client osztály új neve: EthernetClient" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Az Arduino 1.0-ban az Ethernet függvény Client osztály új neve: EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Az Udp osztály új neve: EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Az Arduino 1.0-ban az Ethernet függvény Udp osztály új neve: EthernetUdp.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "A Wire.send() új neve: Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Az Arduino 1.0-ban a Wire.send() funkció ún neve: Wire.write(), az egyéb függvényekkel analóg módon.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "A Wire.receive() új neve: Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Az Arduino 1.0-ban a Wire.receive() funkció ún neve: Wire.read(), az egyéb függvényekkel analóg módon.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Konzol hiba" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Hiba lépett fel, miközben a megnyitott file\n" +"a konzolt használta volna." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Nem-végzetes hiba a kinézet beállítása során (a program férfi géneket hordoz)." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "A hibaüzenetet követően az Arduino megfelelően működik." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "A keretrendszer konfigurálása során hiba lépett fel" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Rendszerfüggő kód betöltése során\n " +"hiba lépett fel (A hiba az Ön gépében van.)" + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "A futtatáshoz telepített Java 1.5 vagy újabb szoftverkörnyezet szükséges" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "Az Arduino futtatásához teljes telepítésű JDK (Java Fejlesztői Környezet)" +"szükséges, nem elegendő csak a JRE (Java futtatókörnyezet)" +"A JDK 1.5 vagy újabb szofver telepítése szükséges" +"Bővebb információ a Referenciák közt található." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "A SketchBook mappa elérhetetlen" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"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.\n" +"Az alapértelmezett hely lesz kiválasztva, és\n" +"itt létrehozva a sketch mappa." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Itt az idő szünetet tartani" + +#: Base.java:533 +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 " +"számát. Nem kéne sétálni egyet - pihenésül?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Napfény" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Hoppá, itt az idő levegőznöd egyet." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Arduino Sketch megnyitása..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Biztosan ki akarsz lépni?

Az utolsó Sketch bezárásával az Arduino kilép." + +#: Base.java:970 +msgid "Contributed" +msgstr "Hozzáadás" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Sketch nem megnyitható" + +#: Base.java:1096 +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.\n" +"A SketchBook menü frissítéséhez az Arduino\n" +"újraindítása szükséges." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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ó.\n" +"A Sketch neve csak angol abc betűit, számokat\n" +"tartalmazhat, szóköz nélkül és az első betűje nem lehet szám.\n" +"A hibás Sketch-et távolítsd el\n" +"a(z) {1} mappából!" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Hibás Sketch név kihagyása" + +#: Base.java:1202 +#, java-format +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 "" +"A \"{0}\" könyvtár nem használható.\n" +"A neve az angol abc betűit és számokat tartalmazhat\n" +"(szóköz nem lehet benne és nem kezdődhet számmal)." + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Hibás könyvtárnév kihagyása" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Probléma a könyvtár elérésekor" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Hiba az Arduino data könyvtár elérésekor." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Kimenetek beállítása" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino nem futtatható, mert nem hozható létre\n" +"a felhasználói beállítások mappája." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Felejtsd el a SketchBook-ot" + +#: Base.java:1603 +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\n" +"a felhasználói Sketch mentések mappája." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Válassz (vagy hozz létre) mappát a Sketch-eknek..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Hiba az URL megnyitásakor" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Nem nyitható meg az URL:\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Hiba a mappa megnyitásakor" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Nem nyitható meg a mappa:\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "környezet" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Üzenet" + +#: Base.java:1842 +msgid "Warning" +msgstr "Figyelmeztetés" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Nem törölhető a {0} régi verziója" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Nem cserélhető: {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Nem törölhető: {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Új fül" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Átnevezés" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Előző fül" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Következő fül" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Ellenőrzés" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Megnyitás" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Új szerkesztőablak" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Megnyitás új ablakban" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Nem indítható" + +#: 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 "" +"Nem ismert platform, indítás nem lehetséges.\n" +"Az URL vagy mappa megnyitásához a preferences.txt-ben a\n" +"\"launcher=/path/to/app\" sor hozzáadása szükséges" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Nem olvasható a színséma,\n" +"a Processing újratelepítésére van szükség." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Tallóz" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Katalán" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Egyszerüsített kínai" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Dán" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Holland" + +#: Preferences.java:91 +msgid "English" +msgstr "Angol" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Francia" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Fülöp-szigetek" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Gall" + +#: Preferences.java:96 +msgid "German" +msgstr "Német" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Görög" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Magyar" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Olasz" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Japán" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Lett" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Perzsa" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Román" + +#: Preferences.java:110 +msgid "Russian" +msgstr "Orosz" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Spanyol" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Az alapértelezett beállítások nem olvashatóak\n" +"Az Arduino újratelepítése szükséges." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "A beállítások nem olvashatóak: {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Alapbeállítások olvasása közben hiba lépett fel" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Hiba a beállítások olvasása során. Kérem törölje (vagy mozgassa el) a\n" +"{0} file-t és indítsa újra az Arduino-t!" + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "SketchBook helye:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Válasszon új SketchBook mappát" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (Arduino újraindítása szükséges)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Szerkesztő betűméret:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Log mutatása:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "fordításkor " + +#: Preferences.java:375 +msgid "upload" +msgstr "feltöltéskor" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Kód ellenőrzés feltöltés után" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Külső szerkesztő használata" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Újabb verzió ellenőrzése indításkor" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Sketch frissítése az új kiterjesztéssel (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Automatikus kiterjesztés-hozzárendelés: .ino->Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "További számos beállítás elérhető a file közvetlen szerkesztésével" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(csak akkor szerkeszthető, ha az Arduino nem fut)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "hibás fontméret kihagyása: {0}" \ No newline at end of file diff --git a/app/src/processing/app/Resources_hu.properties b/app/src/processing/app/Resources_hu.properties new file mode 100644 index 000000000..bf805dbb5 --- /dev/null +++ b/app/src/processing/app/Resources_hu.properties @@ -0,0 +1,1034 @@ +# Hungarian translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Robert Cseh , 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: Robert Cseh\nPOT-Creation-Date\: 2012-04-03 10\:24-0400\nPO-Revision-Date\: 2012-04-11 23\:15-0400\nLast-Translator\: Robert Cseh \nLanguage-Team\: Hungarian\nLanguage\: hu\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Nem lett file hozz\u00e1adva a Sketch-hez. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Egy file a Sketch-hez hozz\u00e1ad\u00e1sra ker\u00fclt. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} file a Sketch-hez hozz\u00e1ad\u00e1sra ker\u00fclt. + +#: Editor.java:484 +File=File + +#: Editor.java:486 EditorToolbar.java:41 +New=\u00daj + +#: Editor.java:494 Base.java:903 +Open...=Megnyit... + +#: Editor.java:503 +Sketchbook=SketchBook + +#: Editor.java:509 +Examples=Mint\u00e1k + +#: Editor.java:514 Editor.java:1977 +Close=Kil\u00e9p\u00e9s + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Ment\u00e9s + +#: Editor.java:530 +Save\ As...=Ment\u00e9s m\u00e1sk\u00e9nt... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Felt\u00f6lt\u00e9s + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Felt\u00f6lt\u00e9s programoz\u00f3val + +#: Editor.java:556 +Page\ Setup=Oldalbe\u00e1ll\u00edt\u00e1s + +#: Editor.java:564 +Print=Nyomtat\u00e1s + +#: Editor.java:576 Preferences.java:279 +Preferences=Be\u00e1ll\u00edt\u00e1sok + +#: Editor.java:586 Base.java:782 +Quit=Kil\u00e9p\u00e9s + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=Ellen\u0151rz\u00e9s / Ford\u00edt\u00e1s + +#: Editor.java:629 +Import\ Library...=F\u00fcggv\u00e9ny import\u00e1l\u00e1s... + +#: Editor.java:634 +Show\ Sketch\ Folder=Sketch mappa mutat\u00e1sa + +#: Editor.java:643 +Add\ File...=File hozz\u00e1ad\u00e1sa... + +#: Editor.java:656 +Tools=Eszk\u00f6z\u00f6k + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Soros monitor + +#: Editor.java:682 +Board=Alappanel + +#: Editor.java:690 +Serial\ Port=Soros port + +#: Editor.java:695 +Programmer=Programoz\u00f3 + +#: Editor.java:699 +Burn\ Bootloader=Bootloader be\u00e9get\u00e9se + +#: Editor.java:923 +serialMenu\ is\ null=\u00dcres a serialMen\u00fc + +#: Editor.java:927 Editor.java:934 +name\ is\ null=a n\u00e9v\: \u00fcres(nincs megadva) + +#: Editor.java:986 +error\ retrieving\ port\ list=hiba a portlista lek\u00e9r\u00e9sekor + +#: Editor.java:1002 +Help=S\u00fag\u00f3 + +#: Editor.java:1041 +Getting\ Started=Els\u0151 l\u00e9p\u00e9sek + +#: Editor.java:1049 +Environment=K\u00f6rnyezet + +#: Editor.java:1057 +Troubleshooting=Hibaelh\u00e1r\u00edt\u00e1s + +#: Editor.java:1065 +Reference=Referencia + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Keres\u00e9s a Referenci\u00e1k k\u00f6zt + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Gyakran Ism\u00e9telt K\u00e9rd\u00e9sek + +#: Editor.java:1091 +Visit\ Arduino.cc=arduino.cc honlap megnyit\u00e1sa + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Arduino n\u00e9vjegye + +#: Editor.java:1116 +Edit=Szerkeszt\u00e9s + +#: Editor.java:1119 Editor.java:1341 +Undo=M\u00e9gse + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=M\u00e9gis + +#: Editor.java:1135 Editor.java:2652 +Cut=Kiv\u00e1g\u00e1s + +#: Editor.java:1143 Editor.java:2660 +Copy=M\u00e1sol\u00e1s + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=M\u00e1sol\u00e1s a F\u00f3rumhoz + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=M\u00e1sol\u00e1s HTML-k\u00e9nt + +#: Editor.java:1175 Editor.java:2684 +Paste=Beilleszt\u00e9s + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Minden kijel\u00f6l\u00e9se + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Megjegyz\u00e9s/M\u00e9gsem + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Beh\u00faz\u00e1s n\u00f6vel\u00e9se + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Beh\u00faz\u00e1s cs\u00f6kkent\u00e9se + +#: Editor.java:1220 +Find...=Keres\u00e9s... + +#: Editor.java:1235 +Find\ Next=K\u00f6vetkez\u0151 keres\u00e9se + +#: Editor.java:1245 +Find\ Previous=El\u0151z\u0151 keres\u00e9se + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Kiv\u00e1laszt\u00e1s haszn\u00e1lata keres\u00e9shez + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=El\u0151sz\u00f6r egy sz\u00f3t kell v\u00e1lasztani a Referenci\u00e1k k\u00f6zti keres\u00e9shez. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Referencia nem tal\u00e1lhat\u00f3 a {0} bejegyz\u00e9shez + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Sketch ford\u00edt\u00e1sa... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Ford\u00edt\u00e1s k\u00e9sz. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Ment\u00e9s a {0} \u00e1llom\u00e1nyba? + +#: Editor.java:2006 +\ \ 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.= V\u00e1ltoztat\u00e1s ment\u00e9se a kil\u00e9p\u00e9s el\u0151tt a Sketch-be?

Ment\u00e9s n\u00e9k\u00fcl a v\u00e1ltoztat\u00e1sok elvesznek. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=M\u00e9gse + +#: Editor.java:2017 +Don't\ Save=Nincs ment\u00e9s + +#: Editor.java:2089 +Bad\ file\ selected=Hib\u00e1s file lett kiv\u00e1lasztva + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing csak a saj\u00e1t \u00e1llom\u00e1ny\u00e1t tudja megnyitni\nvagy az .ino vagy .pde kiterjeszt\u00e9s\u0171eket + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=A "{0}" file-nak a(z) {1} mapp\u00e1n bel\u00fcl kell lennie.\nMi legyen?\nMappa l\u00e9trehoz\u00e1sa, file mozgat\u00e1sa \u00e9s folytat\u00e1s? + +#: Editor.java:2109 +Moving=\u00c1tmozgat\u00e1s + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Hiba + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=A {0} mappa m\u00e1r l\u00e9tezik. Sketch nem nyithat\u00f3 meg. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Sketch mapp\u00e1ja nem hozhat\u00f3 l\u00e9tre. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Nem m\u00e1solhat\u00f3 a megfelel\u0151 helyre. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Sketch nem hozhat\u00f3 l\u00e9tre. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Ment\u00e9s... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Ment\u00e9s k\u00e9sz. + +#: Editor.java:2270 +Save\ Canceled.=Ment\u00e9s megszak\u00edtva. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?={0} soros port nem tal\u00e1lhat\u00f3.\nM\u00e1sik soros porton megism\u00e9telj\u00fck? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Felt\u00f6lt\u00e9s alappanelre... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Felt\u00f6lt\u00e9s k\u00e9sz. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Felt\u00f6lt\u00e9s megszak\u00edtva. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Export\u00e1l\u00e1s el\u0151tt ment\u00e9s? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Export\u00e1l\u00e1s megszak\u00edtva. El\u0151sz\u00f6r menteni kell\! + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader \u00e9get\u00e9se (n\u00e9h\u00e1ny percet vesz ig\u00e9nybe)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Bootloader \u00e9get\u00e9s k\u00e9sz. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Hiba l\u00e9pett fel a bootloader \u00e9get\u00e9sekor. + +#: Editor.java:2500 +Printing...=Nyomtat\u00e1s... + +#: Editor.java:2517 +Done\ printing.=Nyomtat\u00e1s k\u00e9sz. + +#: Editor.java:2520 +Error\ while\ printing.=Hiba a nyomtat\u00e1s sor\u00e1n. + +#: Editor.java:2524 +Printing\ canceled.=Nyomtat\u00e1s megszak\u00edtva. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Hib\u00e1s sor\: {0} + +#: Editor.java:2641 +Open\ URL=URL megnyit\u00e1sa + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u00daj kiad\u00e1s jelent meg Arduino-b\u00f3l,\nmegmutassam a let\u00f6lt\u00e9si oldalt? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Igen + +#: UpdateCheck.java:108 Preferences.java:77 +No=Nem + +#: UpdateCheck.java:111 +Update=Friss\u00edt\u00e9s + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Keres\u00e9s\: + +#: FindReplace.java:81 +Replace\ with\:=Csere erre\: + +#: FindReplace.java:96 +Ignore\ Case=Kisbet\u0171-nagybet\u0171 f\u00fcggetlen + +#: FindReplace.java:105 +Wrap\ Around=Teljesen sz\u00f6vegben + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Mindent cser\u00e9l + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Cser\u00e9l + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Keres \u00e9s cser\u00e9l + +#: FindReplace.java:123 FindReplace.java:128 +Previous=El\u0151z\u0151 + +#: FindReplace.java:124 FindReplace.java:127 +Find=Keres + +#: SerialMonitor.java:93 +Send=K\u00fcld + +#: SerialMonitor.java:110 +Autoscroll=Autog\u00f6rget\u00e9s + +#: SerialMonitor.java:112 +No\ line\ ending=Nincs sorlez\u00e1r\u00e1s + +#: SerialMonitor.java:112 +Newline=Soremel\u00e9s + +#: SerialMonitor.java:112 +Carriage\ return=Kocsi-vissza + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s Kocsi-vissza + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=A {0} soros port haszn\u00e1latban van. A programb\u00f3l val\u00f3kil\u00e9p\u00e9s ut\u00e1n pr\u00f3b\u00e1lja \u00fajra. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Hiba a {0} soros port megnyit\u00e1sa sor\u00e1n. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=A {0} soros port nem tal\u00e1lhat\u00f3. V\u00e1lasztani az Eszk\u00f6z\u00f6k > Soros port alatt lehets\u00e9ges. + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer t\u00fal kicsi {0} byte befogad\u00e1s\u00e1ra \u00e9s ide\u00e9rtve a {1} karaktert + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Hiba a Serial.{0}()-ban + +#: tools/AutoFormat.java:91 +Auto\ Format=Autoform\u00e1z\u00e1s + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Nem sz\u00fcks\u00e9ges semmilyen v\u00e1ltoztat\u00e1s autoform\u00e1z\u00e1shoz. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Autoform\u00e1z\u00e1s megszak\u00edtva\: t\u00fal sok a z\u00e1r\u00f3 z\u00e1r\u00f3jel. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Autoform\u00e1z\u00e1s megszak\u00edtva\: t\u00fal sok a nyit\u00f3 z\u00e1r\u00f3jel. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Autoform\u00e1z\u00e1s megszak\u00edtva\: t\u00fal sok z\u00e1r\u00f3 kapcsos-z\u00e1r\u00f3jel. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Autoform\u00e1z\u00e1s megszak\u00edtva\: t\u00fal sok nyit\u00f3 kapcsos-z\u00e1r\u00f3jel. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Autoform\u00e1z\u00e1s befejez\u0151d\u00f6tt. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Bet\u00f6lt\u00e9skor autoform\u00e1z\u00e1s + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=M\u00f3dos\u00edt\u00e1sok elvet\u00e9se \u00e9s Sketch \u00fajrat\u00f6lt\u00e9se? + +#: 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=Hiba l\u00e9pett fel a file fix\u00e1l\u00e1sa/jav\u00edt\u00e1sa sor\u00e1n.\nNem javasolt a fel\u00fcl\u00edr\u00e1sos ment\u00e9s.\nA Sketch \u00fajra-megnyit\u00e1sa tal\u00e1n megoldja a probl\u00e9m\u00e1t.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Sketch archiv\u00e1l\u00e1s + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Sketch nem archiv\u00e1lhat\u00f3 + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=A Sketch archiv\u00e1l\u00e1sa megszakadt, mivel\na Sketch pontos ment\u00e9se nem volt lehets\u00e9ges. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Sketch archiv\u00e1l\u00e1sa, mint\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Sketch archiv\u00e1l\u00e1s megszak\u00edtva. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Hiba a k\u00f3d bet\u00f6lt\u00e9se k\u00f6zben\: {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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.=A {0} nem felismerhet\u0151 karaktert tartalmaz. Ha a k\u00f3d r\u00e9gebbi verzi\u00f3j\u00fa Processing-gel k\u00e9sz\u00fclt, akkor az Eszk\u00f6z\u00f6k -> Bet\u00f6lt\u00e9skor autoform\u00e1z\u00e1s men\u00fcpont megoldja az UTF-8 k\u00f3dol\u00e1st. Ha m\u00e9gsem, akkor a hib\u00e1s karaktert ki kell t\u00f6r\u00f6lni az \u00e1llom\u00e1nyb\u00f3l. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Sketch csak olvashat\u00f3 + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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.\n\n + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u00daj file neve\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=A Sketch most N\u00e9vtelen (Untitled) + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=A Sketch csak ment\u00e9s ut\u00e1n\nnevezhet\u0151 \u00e1t\! + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Hiba az \u00e1tnevez\u00e9s sor\u00e1n + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=A n\u00e9v nem kezd\u0151dhet peri\u00f3dus-jellel. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" nem megfelel\u0151 kiterjeszt\u00e9s. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=A f\u0151-file nem tartalmazhat kiterjeszt\u00e9st.\n(Tal\u00e1n itt az id\u0151, hogy megismerje a\n"val\u00f3di" programoz\u00e1si k\u00f6rnyezetet) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Dehogy, nem + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=A "{0}" file m\u00e1r l\u00e9tezik a "{1}" mapp\u00e1ban\! + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nem lehet azonos n\u00e9ven a .cpp \u00e1llom\u00e1ny, mint a Sketch. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nem nevezhet\u0151 \u00e1t a Sketch, mert l\u00e9tezik a "{0}"\nnev\u0171 .cpp \u00e1llom\u00e1ny. + +#: Sketch.java:459 +Cannot\ Rename=\u00c1tnevez\u00e9si hiba + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Hiba\: Sketch (vagy mappa) m\u00e1r l\u00e9tezik "{0}" n\u00e9ven. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=A Sketch nem nevezhet\u0151 \u00e1t\: (0). + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Nem nevezhet\u0151 \u00e1t\: "{0}" -> "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Nem nevezhet\u0151 \u00e1t a Sketch\: (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Nem nevezhet\u0151 \u00e1t a Sketch\: (2). + +#: Sketch.java:544 +createNewFile()\ returned\ false=a createNewFile() hib\u00e1t jelzett + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=T\u00e9nyleg t\u00f6r\u00f6lni kell a Sketch-et? Biztosan? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=A(z) "{0}" \u00e1llom\u00e1ny t\u00e9nyleg t\u00f6rl\u00e9sre ker\u00fclj\u00f6n? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=T\u00f6rl\u00e9s + +#: Sketch.java:620 +Couldn't\ do\ it=Nem tudom megtenni + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Nem t\u00f6r\u00f6lhet\u0151 file\: "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: bels\u0151 hiba... K\u00f3d nem tal\u00e1lhat\u00f3 + +#: Sketch.java:724 +Sketch\ is\ read-only=A Sketch csak olvashat\u00f3 + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=N\u00e9h\u00e1ny file csak olvashat\u00f3, \u00edgy el kell menteni a\nSketch-et egy m\u00e1sik mapp\u00e1ba. + +#: Sketch.java:743 +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?=Az Arduino 1.0-ban az alapp\u00e9rtelmezett kiterjeszt\u00e9s megv\u00e1ltozott\n.pde-r\u0151l .ino-ra. Az \u00faj Sketck-ek (ide\u00e9rtve a Ment\u00e9s m\u00e1sk\u00e9nt... l\u00e9trehozottakat is)\nm\u00e1r az \u00faj kiterjeszt\u00e9st haszn\u00e1lj\u00e1k. A ment\u00e9s\nk\u00f6zbeni \u00e1tnevez\u00e9s tilthat\u00f3 a Be\u00e1ll\u00edt\u00e1sok men\u00fcpontban.\n\nSketch ment\u00e9se \u00e9s kiterjeszt\u00e9s friss\u00edt\u00e9se? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Sketch ment\u00e9se, mint... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Sketch nem menthet\u0151, mint "{0}"\nmert m\u00e1r van ilyen .cpp \u00e1llom\u00e1ny. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Nono\! + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sketch nem menthet\u0151 a mapp\u00e1ba.\n\u00cdgy egy v\u00e9gtelen t\u00f6rt\u00e9nett\u00e9 alakulna. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=K\u00e9p vagy egy\u00e9b adat v\u00e1laszt\u00e1sa a Sketch-be m\u00e1sol\u00e1shoz + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=A meglev\u0151 {0} cser\u00e9je? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=File hozz\u00e1ad\u00e1si hiba + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Nem t\u00f6r\u00f6lhet\u0151 a meglev\u0151 {0} file. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Ne bolondozzon velem + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=A file m\u00e1r m\u00e1sol\u00e1sra ker\u00fclt a mapp\u00e1ba\nahonnan hozz\u00e1 pr\u00f3b\u00e1lta adni.\nM\u00e9g mindig nem v\u00e9grehajthat\u00f3. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=A {0} nem adhat\u00f3 hozz\u00e1 a Sketch-hez. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=A ford\u00edt\u00e1si mappa el\u00e9rhetetlen vagy \u00edr\u00e1sv\u00e9dett. + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=A f\u0151 programoszt\u00e1ly (main class) nem tal\u00e1lhat\u00f3 + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Hib\u00e1s kiv\u00e9tel t\u00edpus\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Hiba a {0} ford\u00edt\u00e1si mapp\u00e1ba mozgat\u00e1sa sor\u00e1n + +#: Sketch.java:1661 +Uploading...=Felt\u00f6lt\u00e9s... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Sketch m\u00e9rete\: {0} byte (maxim\u00e1lisan lehets\u00e9ges\: {1} byte) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Nem meghat\u00e1rozhat\u00f3 a {0} program m\u00e9rete + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=T\u00fal nagy a Sketch\: m\u00e9ret cs\u00f6kkent\u00e9s\u00e9hez a http\://www.arduino.cc/en/Guide/Troubleshooting\#size oldalon tal\u00e1lhat\u00f3ak tippek. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Hi\u00e1nyzik a megjegyz\u00e9st z\u00e1r\u00f3 */ jel + +#: Sketch.java:1796 +Sketch\ Disappeared=A Sketch elveszett + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A Sketch mapp\u00e1ja elveszett.\nA Sketch \u00fajrament\u00e9sre ker\u00fcl,\na k\u00f3d egyes r\u00e9szei megsemmis\u00fclhettek. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Nem lehets\u00e9ges a Sketch \u00fajrament\u00e9se + +#: Sketch.java:1811 +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.=T\u00f6k\u00e9letesen nem lehets\u00e9ges a Sketch \u00fajrament\u00e9se. A megold\u00e1s jelen helyzetben, hogy\na szerkeszt\u0151b\u0151l a k\u00f3dot kim\u00e1solja egy m\u00e1sik szerkeszt\u0151programba. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=A Sketch neve m\u00f3dos\u00edt\u00e1sra ker\u00fclt. Az elnevez\u00e9se csak\nASCII bet\u0171ket, sz\u00e1mokat tartalmazhat (de nem kezd\u0151dhet sz\u00e1mmal).\nValamint a n\u00e9v hossza nem haladhatja meg a 64 karaktert. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Ford\u00edt\u00e1si hiba, ezt a k\u00f3dot k\u00e9rem k\u00fcldje el a {0} c\u00edmre + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=kiv\u00e1lasztott {0} port nem el\u00e9rhet\u0151 vagy az alappanel nincs csatlakoztatva + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Eszk\u00f6z nem v\u00e1laszol\: tal\u00e1n hib\u00e1s port lett kiv\u00e1lasztva, vagy a panel\u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges export\u00e1l\u00e1s el\u0151tt + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Hiba a felt\u00f6lt\u00e9s sor\u00e1n. A hiba elh\u00e1r\u00edt\u00e1sa a http\://www.arduino.cc/en/Guide/ oldalon a Troubleshooting\#upload alatt ker\u00fclt le\u00edr\u00e1sra. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Nem megfelel\u0151 mikrokontroller lett kiv\u00e1lasztva. Pontos\u00edtani az Eszk\u00f6z\u00f6k > Alappanelek men\u00fcben lehet. + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nincs alappanel kiv\u00e1lasztva. V\u00e1lasztani az Eszk\u00f6z\u00f6k > Alappanel men\u00fcb\u0151l lehet. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} eredm\u00e9nye {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Hiba a ford\u00edt\u00e1s sor\u00e1n. + +#: debug/Compiler.java:465 +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. + +#: debug/Compiler.java:466 +\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=\nAz Arduino-0019 \u00f3ta az Ethernet f\u00fcggv\u00e9nyek kapcsol\u00f3dnak az SPI f\u00fcggv\u00e9nyekhez.\nEz \u00edgy haszn\u00e1lhat\u00f3, vagy m\u00e1sik f\u00fcggv\u00e9ny alkalmazhat\u00f3 az SPI kezel\u00e9s\u00e9re.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A 'BYTE' kulcssz\u00f3 nem t\u00e1mogatott. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nAz Arduino 1.0 alatt a 'BYTE' kulcssz\u00f3 nem t\u00e1mogatott.\nHelyette a Serial.write() haszn\u00e1lhat\u00f3.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A Server f\u00fcggv\u00e9nyoszt\u00e1ly EthernetServer n\u00e9vre hallgat. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nAz Arduino 1.0-ban, az Ethernet f\u00fcggv\u00e9ny Server oszt\u00e1lya EthernetServer-re v\u00e1ltozott.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A Client oszt\u00e1ly \u00faj neve\: EthernetClient + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nAz Arduino 1.0-ban az Ethernet f\u00fcggv\u00e9ny Client oszt\u00e1ly \u00faj neve\: EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Az Udp oszt\u00e1ly \u00faj neve\: EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nAz Arduino 1.0-ban az Ethernet f\u00fcggv\u00e9ny Udp oszt\u00e1ly \u00faj neve\: EthernetUdp.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=A Wire.send() \u00faj neve\: Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nAz Arduino 1.0-ban a Wire.send() funkci\u00f3 \u00fan neve\: Wire.write(), az egy\u00e9b f\u00fcggv\u00e9nyekkel anal\u00f3g m\u00f3don.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=A Wire.receive() \u00faj neve\: Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nAz Arduino 1.0-ban a Wire.receive() funkci\u00f3 \u00fan neve\: Wire.read(), az egy\u00e9b f\u00fcggv\u00e9nyekkel anal\u00f3g m\u00f3don.\n\n + +#: EditorConsole.java:152 +Console\ Error=Konzol hiba + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Hiba l\u00e9pett fel, mik\u00f6zben a megnyitott file\na konzolt haszn\u00e1lta volna. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Nem-v\u00e9gzetes hiba a kin\u00e9zet be\u00e1ll\u00edt\u00e1sa sor\u00e1n (a program f\u00e9rfi g\u00e9neket hordoz). + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=A hiba\u00fczenetet k\u00f6vet\u0151en az Arduino megfelel\u0151en m\u0171k\u00f6dik. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=A keretrendszer konfigur\u00e1l\u00e1sa sor\u00e1n hiba l\u00e9pett fel + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Rendszerf\u00fcgg\u0151 k\u00f3d bet\u00f6lt\u00e9se sor\u00e1n\n hiba l\u00e9pett fel (A hiba az \u00d6n g\u00e9p\u00e9ben van.) + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=A futtat\u00e1shoz telep\u00edtett Java 1.5 vagy \u00fajabb szoftverk\u00f6rnyezet sz\u00fcks\u00e9ges + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Az Arduino futtat\u00e1s\u00e1hoz teljes telep\u00edt\u00e9s\u0171 JDK (Java Fejleszt\u0151i K\u00f6rnyezet)sz\u00fcks\u00e9ges, nem elegend\u0151 csak a JRE (Java futtat\u00f3k\u00f6rnyezet)A JDK 1.5 vagy \u00fajabb szofver telep\u00edt\u00e9se sz\u00fcks\u00e9gesB\u0151vebb inform\u00e1ci\u00f3 a Referenci\u00e1k k\u00f6zt tal\u00e1lhat\u00f3. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=A SketchBook mappa el\u00e9rhetetlen + +#: Base.java:258 +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. + +#: Base.java:532 +Time\ for\ a\ Break=Itt az id\u0151 sz\u00fcnetet tartani + +#: Base.java:533 +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 sz\u00e1m\u00e1t. Nem k\u00e9ne s\u00e9t\u00e1lni egyet - pihen\u00e9s\u00fcl? + +#: Base.java:537 +Sunshine=Napf\u00e9ny + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 leveg\u0151zn\u00f6d egyet. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Arduino Sketch megnyit\u00e1sa... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Biztosan ki akarsz l\u00e9pni?

Az utols\u00f3 Sketch bez\u00e1r\u00e1s\u00e1val az Arduino kil\u00e9p. + +#: Base.java:970 +Contributed=Hozz\u00e1ad\u00e1s + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Sketch nem megnyithat\u00f3 + +#: Base.java:1096 +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. + +#: Base.java:1125 +#, 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\! + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa + +#: Base.java:1202 +#, 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)=A "{0}" k\u00f6nyvt\u00e1r nem haszn\u00e1lhat\u00f3.\nA neve az angol abc bet\u0171it \u00e9s sz\u00e1mokat tartalmazhat\n(sz\u00f3k\u00f6z nem lehet benne \u00e9s nem kezd\u0151dhet sz\u00e1mmal). + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Hib\u00e1s k\u00f6nyvt\u00e1rn\u00e9v kihagy\u00e1sa + +#: Base.java:1432 +Problem\ getting\ data\ folder=Probl\u00e9ma a k\u00f6nyvt\u00e1r el\u00e9r\u00e9sekor + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Hiba az Arduino data k\u00f6nyvt\u00e1r el\u00e9r\u00e9sekor. + +#: Base.java:1440 +Settings\ issues=Kimenetek be\u00e1ll\u00edt\u00e1sa + +#: Base.java:1441 +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:1602 +You\ forgot\ your\ sketchbook=Felejtsd el a SketchBook-ot + +#: Base.java:1603 +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. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e1lassz (vagy hozz l\u00e9tre) mapp\u00e1t a Sketch-eknek... + +#: Base.java:1647 +Problem\ Opening\ URL=Hiba az URL megnyit\u00e1sakor + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Nem nyithat\u00f3 meg az URL\:\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Hiba a mappa megnyit\u00e1sakor + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Nem nyithat\u00f3 meg a mappa\:\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=k\u00f6rnyezet + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u00dczenet + +#: Base.java:1842 +Warning=Figyelmeztet\u00e9s + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Nem t\u00f6r\u00f6lhet\u0151 a {0} r\u00e9gi verzi\u00f3ja + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Nem cser\u00e9lhet\u0151\: {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Nem t\u00f6r\u00f6lhet\u0151\: {0} + +#: EditorHeader.java:292 +New\ Tab=\u00daj f\u00fcl + +#: EditorHeader.java:300 +Rename=\u00c1tnevez\u00e9s + +#: EditorHeader.java:326 +Previous\ Tab=El\u0151z\u0151 f\u00fcl + +#: EditorHeader.java:340 +Next\ Tab=K\u00f6vetkez\u0151 f\u00fcl + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Ellen\u0151rz\u00e9s + +#: EditorToolbar.java:41 +Open=Megnyit\u00e1s + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u00daj szerkeszt\u0151ablak + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Megnyit\u00e1s \u00faj ablakban + +#: Platform.java:167 +No\ launcher\ available=Nem ind\u00edthat\u00f3 + +#: 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=Nem ismert platform, ind\u00edt\u00e1s nem lehets\u00e9ges.\nAz URL vagy mappa megnyit\u00e1s\u00e1hoz a preferences.txt-ben a\n"launcher\=/path/to/app" sor hozz\u00e1ad\u00e1sa sz\u00fcks\u00e9ges + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nem olvashat\u00f3 a sz\u00edns\u00e9ma,\na Processing \u00fajratelep\u00edt\u00e9s\u00e9re van sz\u00fcks\u00e9g. + +#: Preferences.java:80 +Browse=Tall\u00f3z + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Katal\u00e1n + +#: Preferences.java:87 +Chinese\ Simplified=Egyszer\u00fcs\u00edtett k\u00ednai + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=D\u00e1n + +#: Preferences.java:90 +Dutch=Holland + +#: Preferences.java:91 +English=Angol + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Francia + +#: Preferences.java:94 +Filipino=F\u00fcl\u00f6p-szigetek + +#: Preferences.java:95 +Galician=Gall + +#: Preferences.java:96 +German=N\u00e9met + +#: Preferences.java:97 +Greek=G\u00f6r\u00f6g + +#: Preferences.java:98 +Hungarian=Magyar + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Olasz + +#: Preferences.java:101 +Japanese=Jap\u00e1n + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Lett + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Perzsa + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Rom\u00e1n + +#: Preferences.java:110 +Russian=Orosz + +#: Preferences.java:111 +Spanish=Spanyol + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Az alap\u00e9rtelezett be\u00e1ll\u00edt\u00e1sok nem olvashat\u00f3ak\nAz Arduino \u00fajratelep\u00edt\u00e9se sz\u00fcks\u00e9ges. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=A be\u00e1ll\u00edt\u00e1sok nem olvashat\u00f3ak\: {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Alapbe\u00e1ll\u00edt\u00e1sok olvas\u00e1sa k\u00f6zben hiba l\u00e9pett fel + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Hiba a be\u00e1ll\u00edt\u00e1sok olvas\u00e1sa sor\u00e1n. K\u00e9rem t\u00f6r\u00f6lje (vagy mozgassa el) a\n{0} file-t \u00e9s ind\u00edtsa \u00fajra az Arduino-t\! + +#: Preferences.java:299 +Sketchbook\ location\:=SketchBook helye\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj SketchBook mapp\u00e1t + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (Arduino \u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Szerkeszt\u0151 bet\u0171m\u00e9ret\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Log mutat\u00e1sa\: + +#: Preferences.java:373 +compilation\ =ford\u00edt\u00e1skor + +#: Preferences.java:375 +upload=felt\u00f6lt\u00e9skor + +#: Preferences.java:384 +Verify\ code\ after\ upload=K\u00f3d ellen\u0151rz\u00e9s felt\u00f6lt\u00e9s ut\u00e1n + +#: Preferences.java:393 +Use\ external\ editor=K\u00fcls\u0151 szerkeszt\u0151 haszn\u00e1lata + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se ind\u00edt\u00e1skor + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Sketch friss\u00edt\u00e9se az \u00faj kiterjeszt\u00e9ssel (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Automatikus kiterjeszt\u00e9s-hozz\u00e1rendel\u00e9s\: .ino->Arduino + +#: Preferences.java:433 +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 + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(csak akkor szerkeszthet\u0151, ha az Arduino nem fut) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=hib\u00e1s fontm\u00e9ret kihagy\u00e1sa\: {0} diff --git a/app/src/processing/app/Resources_id.po b/app/src/processing/app/Resources_id.po new file mode 100644 index 000000000..a75be9892 --- /dev/null +++ b/app/src/processing/app/Resources_id.po @@ -0,0 +1,1636 @@ +# Indonesian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Rininta Andari , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-02 18:10+0100\n" +"PO-Revision-Date: 2012-04-15 23:20+0100\n" +"Last-Translator: Rininta Andari \n" +"Language-Team: Indonesian\n" +"Language: id\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Tidak ada berkas yang ditambahkan ke sketsa." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Satu berkas ditambahkan ke sketsa." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} berkas ditambahkan ke sketsa." + +#: Editor.java:484 +msgid "File" +msgstr "Berkas" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Baru" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Buka..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Buku Sketsa" + +#: Editor.java:509 +msgid "Examples" +msgstr "Contoh" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Tutup" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Simpan" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Simpan Sebagai..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Unggah" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Unggah Menggunakan Programmer" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Pengaturan Halaman" + +#: Editor.java:564 +msgid "Print" +msgstr "Cetak" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferensi" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Keluar" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketsa" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Memeriksa / Menyusun" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Impor Perpustakaan..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Tampilkan Map Sketsa" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Tambah Berkas..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Peralatan" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Serial Monitor" + +#: Editor.java:682 +msgid "Board" +msgstr "Papan" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Serial Port" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmer" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Bakar Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu is null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "name is null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "kesalahan dalam mengambil daftar port" + +#: Editor.java:1002 +msgid "Help" +msgstr "Bantuan" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Memulai" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Lingkungan" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Pemecahan masalah" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referensi" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Cari di Referensi" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Pertanyaan yang Sering Diajukan" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Kunjungi Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Tentang Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Edit" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Batalkan" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Ulang" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Potong" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Salin" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Salin untuk Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Salin sebagai HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Rekat" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Pilih Semua" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Beri komentar/Tidak beri komentar" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Tambah Indentasi" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Kurangi Indentasi" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Cari..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Cari Berikutnya" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Cari Sebelumnya" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Gunakan Pilihan Untuk Pencarian" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Pertama pilih sebuah kata untuk dicari di referensi." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Tidak ada referensi yang tersedia untuk \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Menyusun sketsa..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Selesai menyusun." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Simpan perubahan ke \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Apakah anda " +"ingin menyimpan perubahan ke sketsa ini
sebelum menutup?

Jika anda tidak " +"menyimpan, perubahan anda akan hilang." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Batalkan" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Jangan Simpan" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Berkas buruk dipilih" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing hanya dapat membuka sketsanya sendiri\n" +"dan berkas lainnya yang berakhir dengan .ino atau .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Berkas \"{0}\" harus berada di dalam\n" +"sebuah map sketsa bernama \"{1}\".\n" +"Buatkan map ini, pindahkan berkas, dan lanjutkan?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Memindahkan" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Kesalahan" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Sebuah map bernama \"{0}\" sudah ada. Tidak dapat membuka sketsa." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Tidak dapat membuat map sketsa." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Tidak dapat menyalin ke lokasi yang tepat." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Tidak dapat membuat sketsa." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Menyimpan..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Selesai Menyimpan." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Penyimpanan Dibatalkan." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Serial port {0} tidak ditemukan.\n" +"Ulang unggah dengan serial port lain?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Mengunggah ke Papan I/O..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Selesai mengunggah." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Unggah dibatalkan." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Simpan perubahan sebelum ekspor?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Ekspor dibatalkan, perubahan harus disimpan terlebih dahulu." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Membakar bootloader ke Papan I/O (ini akan berlangsung beberapa saat)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Selesai membakar bootloader." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Kesalahan ketika membakar bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Mencetak..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Selesai mencetak." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Kesalahan ketika mencetak." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Mencetak dibatalkan." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Baris kesalahan buruk: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Buka URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Sebuah versi baru Arduino telah tersedia,\n" +"apakah anda ingin mengunjungi halaman unduh Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Ya" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Tidak" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Pembaruan" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Cari:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Ganti dengan:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Abaikan Kasus" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Membungkus" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Ganti Semua" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Ganti" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Ganti & Cari" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Sebelumnya" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Cari" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Kirim" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Scroll otomatis" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Tidak ada akhir baris" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Baris baru" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Bawaan kembali" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Keduanya NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Serial port ''{0}'' telah digunakan. Coba hentikan semua program yang mungkin " +"menggunakannya." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Kesalahan dalam membuka serial port ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Serial port ''{0}'' tidak ditemukan. Apakah anda telah memilih yang tepat dari menu Peralatan > " +"Serial Port?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"Penyangga byte readBytesUntil() terlalu kecil untuk {0} bytes sampai dengan dan " +"termasuk char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Kesalahan di dalam Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Format Otomatis" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Tidak diperlukan perubahan untuk Format Otomatis." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kanan." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kiri." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kurawal kanan." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Format Otomatis Dibatalkan: Terlalu banyak tanda kurung kurawal kiri." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Format Otomatis selesai." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Perbaiki Pengkodean & Muat Ulang" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Hapus semua perubahan dan muat ulang sketsa?" + +#: 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 "" +"Sebuah kesalahan muncul ketika mencoba memperbaiki pengkodean berkas.\n" +"Jangan mencoba menyimpan sketsa ini karena dapat menimpa\n" +"versi lama. Gunakan Buka untuk kembali membuka sketsa dan coba lagi.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arsipkan Sketsa" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Tidak dapat mengarsipkan sketsa" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Pengarsipan sketsa telah dibatalkan karena\n" +"sketsa tidak dapat menyimpan dengan benar." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arsipkan sketsa sebagai:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Pengarsipan sketsa dibatalkan." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Kesalahan ketika memuat kode {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,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 "" + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Sketsa Hanya-Baca" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Beberapa berkas ditandai \"hanya-baca\", jadi anda harus\n" +"kembali menyimpan sketsa di lokasi lain,\n" +"dan coba lagi." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nama untuk berkas baru:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Sketsa tidak berjudul" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Bagaimana jika simpan sketsa terlebih dahulu \n" +"sebelum mencoba untuk mengubah namanya?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Masalah dengan pengubahan nama" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Nama tidak dapat diawali dengan sebuah periode." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" bukan ekstensi yang sah." + +#: Sketch.java:378 +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 "" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Tidak" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Sebuah berkas bernama \"{0}\" sudah ada di \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Anda tidak dapat memiliki sebuah berkas .cpp dengan nama yang sama dengan sketsa." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Anda tidak dapat mengubah nama sketsa ke \"{0}\"\n" +"karena sketsa telah memiliki sebuah berkas .cpp dengan nama tersebut." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Tidak dapat mengubah nama" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Maaf, sebuah sketsa (atau map) bernama \"{0}\" sudah ada." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Tidak dapat mengubah nama sketsa. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Tidak dapat mengubah nama \"{0}\" ke \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Tidak dapat mengubah nama sketsa. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Tidak dapat mengubah nama sketsa. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() kembali salah" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Apakah anda yakin ingin menghapus sketsa ini?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Apakah anda yakin ingin menghapus \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Hapus" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Tidak dapat melakukannya" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Tidak dapat menghapus \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: kesalahan internal.. tidak dapat menemukan kode" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Sketsa hanya-baca" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Beberapa berkas ditandai \"hanya-baca\", jadi anda harus\n" +"kembali menyimpan sketsa ini di lokasi lain." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Simpan map sketsa sebagai..." + +#: Sketch.java:865 +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}\"\n" +"karena sketsa telah memiliki sebuah berkas .cpp dengan nama tersebut." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Anda Borges sekali" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Anda tidak dapat menyimpan sketsa kedalam sebuah map\n" +"di dalam dirinya sendiri. Ini akan memakan waktu selamanya." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Pilih sebuah gambar atau berkas data lain untuk disalin ke sketsa anda" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Ganti versi {0} yang ada?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Kesalahan dalam menambahkan file" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Tidak dapat menghapus berkas ''{0}'' yang ada." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Anda tidak dapat membodohi saya" + +#: Sketch.java:1079 +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 "" +"Berkas ini telah disalin ke\n" +"lokasi darimana anda mencoba untuk menambahkannya.\n" +"Saya bukan tidak melakukan apa-apa." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Tidak dapat menambahkan ''{0}'' ke sketsa." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Map Bangun hilang atau tidak dapat ditulis" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Tidak dapat menemukan kelas utama" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Jenis pengecualian: {0} tidak tertangkap" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Masalah dalam memindahkan {0} ke map bangun" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Mengunggah..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Ukuran biner sketsa: {0} bytes (dari maksimum {1} byte)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Tidak dapat menentukan ukuran program: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Sketsa terlalu besar; lihat http://www.arduino.cc/en/Guide/Troubleshooting#size untuk " +"saran tentang menguranginya." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Membutuhkan */ di akhir sebuah /* komentar */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Sketsa Hilang" + +#: Sketch.java:1797 +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 "" + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Tidak dapat kembali menyimpan sketsa" + +#: Sketch.java:1811 +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 "" +"Tidak dapat kembali menyimpan sketsa dengan benar. Anda mungkin berada dalam kesulitan pada saat ini,\n" +"dan mungkin sudah saatnya untuk menyalin dan menyisipkan kode anda ke editor teks lain." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Kesalahan kompilator, harap kirim kode ini ke {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"serial port yang dipilih {0} tidak ada atau papan anda tidak terhubung" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Tidak ada papan yang dipilih; harap pilih sebuah papan dari menu Peralatan > Papan." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} kembali {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Kesalahan dalam menyusun." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Harap impor perpustakaan SPI dari menu Sketsa > Impor Perpustakaan." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Pada Arduino 0019, perpustakaan Ethernet tergantung pada perpustakaan SPI.\n" +"Tampaknya anda menggunakannya atau perpustakaan lain yang tergantung pada perpustakaan " +"SPI.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Kata kunci 'BYTE' tidak lagi didukung." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Pada Arduino 1.0, kata kunci 'BYTE' tidak lagi didukung.\n" +"Harap gunakan Serial.write() sebagai gantinya.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Kelas Server telah diubah namanya menjadi EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Pada Arduino 1.0, kelas Server dalam perpustakaan Ethernet telah diubah namanya " +"menjadi EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Kelas Client telah diubah namanya menjadi EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Pada Arduino 1.0, kelas Client dalam perpustakaan Ethernet telah diubah namanya " +"menjadi EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Kelas Udp telah diubah namanya menjadi EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Pada Arduino 1.0, kelas Udp dalam perpustakaan Ethernet telah diubah namanya menjadi " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() telah diubah namanya menjadi Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Pada Arduino 1.0, fungsi Wire.send() telah diubah namanya menjadi Wire.write() demi " +"konsistensi dengan perpustakaan lain.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() telah diubah namanya menjadi Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Pada Arduino 1.0, fungsi Wire.receive() telah diubah namanya menjadi Wire.read() " +"demi konsistensi dengan perpustakaan lain.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Kesalahan Konsol" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Sebuah masalah muncul ketika mencoba membuka\n" +"berkas yang digunakan untuk menyimpan keluaran konsol." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Kesalahan tidak fatal ketika mengatur penampilan." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Pesan kesalahan akan muncul, bagaimanapun Arduino akan berjalan dengan baik." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Masalah Dalam Mengatur Platform" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Kesalahan tak dikenal muncul ketika mencoba memuat \n" +"kode spesifik platform untuk mesin anda." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Harap pasang JDK 1.5 atau yang lebih baru" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino membutuhkan JDK lengkap (tidak hanya JRE)\n" +"untuk dapat berjalan. Harap pasang JDK 1.5 atau yang lebih baru.\n" +"Informasi lebih lanjut dapat ditemukan di referensi." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Map Buku Sketsa hilang" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Map sketsa tidak lagi ada.\n" +"Arduino akan beralih ke lokasi buku sketsa\n" +"standar, dan membuat sebuah map buku sketsa baru jika\n" +"diperlukan. Arduino kemudian akan berhenti berbicara tentang\n" +"dirinya sendiri dari sudut orang ketiga." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Waktu untuk Istirahat" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Anda telah mencapai batas pemberian nama otomatis sketsa baru\n" +"untuk hari ini. Bagaimana jika anda pergi jalan-jalan sebagai gantinya?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Cuaca cerah" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Sungguh, sekarang waktunya anda menghirup udara segar." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Buka sebuah sketsa Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Apakah anda \n" +"yakin ingin berhenti?

Menutup sketsa aktif yang terakhir akan menghentikan Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Dikontribusikan" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Sketsa Tidak Ada" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Sketsa yang dipilih tidak lagi ada.\n" +"Anda mungkin perlu memulai ulang Arduino untuk memperbaharui\n" +"menu buku sketsa." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Sketsa \"{0}\" tidak dapat digunakan.\n" +"Nama sketsa hanya dapat terdiri dari huruf dan angka dasar\n" +"(hanya ASCII tanpa spasi, dan tidak dapat diawali dengan sebuah angka).\n" +"Untuk menghilangkan pesan ini, hapus sketsa dari\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Mengabaikan sketsa dengan nama buruk" + +#: Base.java:1202 +#, java-format +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 "" +"Perpustakaan \"{0}\" tidak dapat digunakan.\n" +"Nama perpustakaan hanya dapat terdiri dari huruf dan angka dasar.\n" +"(hanya ASCII dan tanpa spasi, dan tidak dapat diawali dengan sebuah angka).\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Mengabaikan nama perpustakaan buruk" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Masalah dalam mendapatkan map data" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Kesalahan dalam mendapatkan map data Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Masalah pengaturan" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino tidak dapat berfungsi karena tidak bisa\n" +"membuat sebuah map untuk menyimpan pengaturan anda." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Anda melupakan buku sketsa anda" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino tidak dapat berjalan karena tidak bisa\n" +"membuat sebuah map untuk menyimpan buku sketsa anda." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Pilih (atau buat baru) map untuk sketsa..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Masalah Dalam Membuka URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Tidak dapat membuka URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Masalah Dalam Membuka Map" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Tidak dapat membuka map\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "lingkungan" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Pesan" + +#: Base.java:1842 +msgid "Warning" +msgstr "Peringatan" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Tidak dapat menghilangkan versi lama {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Tidak dapat menggantikan {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Tidak dapat menghapus {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Label Baru" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Ubah Nama" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Label Sebelumnya" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Label Berikutnya" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Periksa" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Buka" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Jendela Editor Baru" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Buka di Jendela Lain" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Tidak ada peluncur yang tersedia" + +#: 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 "" +"Platform tanpa spesifikasi, tidak ada peluncur yang tersedia.\n" +"Untuk mengaktifkan pembukaan URL atau map, tambahkan sebuah baris \n" +"\"launcher=/path/to/app\" ke preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Tidak dapat membaca pengaturan tema warna." +"Anda harus memasang ulang Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Navigasi" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Bahasa Katalan" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Bahasa Cina Sederhana" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Bahasa Denmark" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Bahasa Belanda" + +#: Preferences.java:91 +msgid "English" +msgstr "Bahasa Inggris" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Bahasa Perancis" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Bahasa Filipina" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Bahasa Galisia" + +#: Preferences.java:96 +msgid "German" +msgstr "Bahasa Jerman" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Bahasa Yunani" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Bahasa Hungaria" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Bahasa Italia" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Bahasa Jepang" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Bahasa Latvia" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Bahasa Persia" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Bahasa Rumania" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Bahasa Spanyol" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Tidak dapat membaca pengaturan standar.\n" +"Anda harus memasang ulang Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Tidak dapat membaca preferensi dari {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Kesalahan dalam membaca preferensi" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Kesalahan dalam membaca berkas preferensi. Harap hapus (atau pindahkan)\n" +"{0} dan mulai ulang Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Lokasi buku sketsa:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Pilih lokasi buku sketsa baru" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr "" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Editor ukuran huruf: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Tampilkan keluaran yang berlebihan ketika: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "susunan " + +#: Preferences.java:375 +msgid "upload" +msgstr "unggah" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Periksa kode setelah unggah" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Gunakan editor eksternal" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Periksa pembaruan ketika program dimulai" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Perbaharui berkas sketsa ke ekstensi baru ketika menyimpan (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Asosiasikan otomatis berkas .ino dengan Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Preferensi lebih lanjut dapat diedit langsung pada berkas" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(mengedit hanya ketika Arduino sedang tidak berjalan)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "mengabaikan ukuran huruf tidak sah {0}" diff --git a/app/src/processing/app/Resources_id.properties b/app/src/processing/app/Resources_id.properties new file mode 100644 index 000000000..b3fb63e3c --- /dev/null +++ b/app/src/processing/app/Resources_id.properties @@ -0,0 +1,1034 @@ +# Indonesian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Rininta Andari , 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-02 18\:10+0100\nPO-Revision-Date\: 2012-04-15 23\:20+0100\nLast-Translator\: Rininta Andari \nLanguage-Team\: Indonesian\nLanguage\: id\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Tidak ada berkas yang ditambahkan ke sketsa. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Satu berkas ditambahkan ke sketsa. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} berkas ditambahkan ke sketsa. + +#: Editor.java:484 +File=Berkas + +#: Editor.java:486 EditorToolbar.java:41 +New=Baru + +#: Editor.java:494 Base.java:903 +Open...=Buka... + +#: Editor.java:503 +Sketchbook=Buku Sketsa + +#: Editor.java:509 +Examples=Contoh + +#: Editor.java:514 Editor.java:1977 +Close=Tutup + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Simpan + +#: Editor.java:530 +Save\ As...=Simpan Sebagai... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Unggah + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Unggah Menggunakan Programmer + +#: Editor.java:556 +Page\ Setup=Pengaturan Halaman + +#: Editor.java:564 +Print=Cetak + +#: Editor.java:576 Preferences.java:279 +Preferences=Preferensi + +#: Editor.java:586 Base.java:782 +Quit=Keluar + +#: Editor.java:600 +Sketch=Sketsa + +#: Editor.java:602 +Verify\ /\ Compile=Memeriksa / Menyusun + +#: Editor.java:629 +Import\ Library...=Impor Perpustakaan... + +#: Editor.java:634 +Show\ Sketch\ Folder=Tampilkan Map Sketsa + +#: Editor.java:643 +Add\ File...=Tambah Berkas... + +#: Editor.java:656 +Tools=Peralatan + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Serial Monitor + +#: Editor.java:682 +Board=Papan + +#: Editor.java:690 +Serial\ Port=Serial Port + +#: Editor.java:695 +Programmer=Programmer + +#: Editor.java:699 +Burn\ Bootloader=Bakar Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu is null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=name is null + +#: Editor.java:986 +error\ retrieving\ port\ list=kesalahan dalam mengambil daftar port + +#: Editor.java:1002 +Help=Bantuan + +#: Editor.java:1041 +Getting\ Started=Memulai + +#: Editor.java:1049 +Environment=Lingkungan + +#: Editor.java:1057 +Troubleshooting=Pemecahan masalah + +#: Editor.java:1065 +Reference=Referensi + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Cari di Referensi + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Pertanyaan yang Sering Diajukan + +#: Editor.java:1091 +Visit\ Arduino.cc=Kunjungi Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Tentang Arduino + +#: Editor.java:1116 +Edit=Edit + +#: Editor.java:1119 Editor.java:1341 +Undo=Batalkan + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Ulang + +#: Editor.java:1135 Editor.java:2652 +Cut=Potong + +#: Editor.java:1143 Editor.java:2660 +Copy=Salin + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Salin untuk Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Salin sebagai HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Rekat + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Pilih Semua + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Beri komentar/Tidak beri komentar + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Tambah Indentasi + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Kurangi Indentasi + +#: Editor.java:1220 +Find...=Cari... + +#: Editor.java:1235 +Find\ Next=Cari Berikutnya + +#: Editor.java:1245 +Find\ Previous=Cari Sebelumnya + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Gunakan Pilihan Untuk Pencarian + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Pertama pilih sebuah kata untuk dicari di referensi. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Tidak ada referensi yang tersedia untuk "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Menyusun sketsa... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Selesai menyusun. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Simpan perubahan ke "{0}"? + +#: Editor.java:2006 +\ \ 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.= Apakah anda ingin menyimpan perubahan ke sketsa ini
sebelum menutup?

Jika anda tidak menyimpan, perubahan anda akan hilang. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Batalkan + +#: Editor.java:2017 +Don't\ Save=Jangan Simpan + +#: Editor.java:2089 +Bad\ file\ selected=Berkas buruk dipilih + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing hanya dapat membuka sketsanya sendiri\ndan berkas lainnya yang berakhir dengan .ino atau .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Berkas "{0}" harus berada di dalam\nsebuah map sketsa bernama "{1}".\nBuatkan map ini, pindahkan berkas, dan lanjutkan? + +#: Editor.java:2109 +Moving=Memindahkan + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Kesalahan + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Sebuah map bernama "{0}" sudah ada. Tidak dapat membuka sketsa. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Tidak dapat membuat map sketsa. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Tidak dapat menyalin ke lokasi yang tepat. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Tidak dapat membuat sketsa. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Menyimpan... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Selesai Menyimpan. + +#: Editor.java:2270 +Save\ Canceled.=Penyimpanan Dibatalkan. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Serial port {0} tidak ditemukan.\nUlang unggah dengan serial port lain? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Mengunggah ke Papan I/O... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Selesai mengunggah. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Unggah dibatalkan. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Simpan perubahan sebelum ekspor? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Ekspor dibatalkan, perubahan harus disimpan terlebih dahulu. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Membakar bootloader ke Papan I/O (ini akan berlangsung beberapa saat)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Selesai membakar bootloader. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Kesalahan ketika membakar bootloader. + +#: Editor.java:2500 +Printing...=Mencetak... + +#: Editor.java:2517 +Done\ printing.=Selesai mencetak. + +#: Editor.java:2520 +Error\ while\ printing.=Kesalahan ketika mencetak. + +#: Editor.java:2524 +Printing\ canceled.=Mencetak dibatalkan. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Baris kesalahan buruk\: {0} + +#: Editor.java:2641 +Open\ URL=Buka URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Sebuah versi baru Arduino telah tersedia,\napakah anda ingin mengunjungi halaman unduh Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Ya + +#: UpdateCheck.java:108 Preferences.java:77 +No=Tidak + +#: UpdateCheck.java:111 +Update=Pembaruan + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Cari\: + +#: FindReplace.java:81 +Replace\ with\:=Ganti dengan\: + +#: FindReplace.java:96 +Ignore\ Case=Abaikan Kasus + +#: FindReplace.java:105 +Wrap\ Around=Membungkus + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Ganti Semua + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Ganti + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Ganti & Cari + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Sebelumnya + +#: FindReplace.java:124 FindReplace.java:127 +Find=Cari + +#: SerialMonitor.java:93 +Send=Kirim + +#: SerialMonitor.java:110 +Autoscroll=Scroll otomatis + +#: SerialMonitor.java:112 +No\ line\ ending=Tidak ada akhir baris + +#: SerialMonitor.java:112 +Newline=Baris baru + +#: SerialMonitor.java:112 +Carriage\ return=Bawaan kembali + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Keduanya NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serial port ''{0}'' telah digunakan. Coba hentikan semua program yang mungkin menggunakannya. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Kesalahan dalam membuka serial port ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serial port ''{0}'' tidak ditemukan. Apakah anda telah memilih yang tepat dari menu Peralatan > Serial Port? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Penyangga byte readBytesUntil() terlalu kecil untuk {0} bytes sampai dengan dan termasuk char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Kesalahan di dalam Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Format Otomatis + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Tidak diperlukan perubahan untuk Format Otomatis. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kanan. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kiri. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kurawal kanan. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Format Otomatis Dibatalkan\: Terlalu banyak tanda kurung kurawal kiri. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Format Otomatis selesai. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Perbaiki Pengkodean & Muat Ulang + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Hapus semua perubahan dan muat ulang sketsa? + +#: 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=Sebuah kesalahan muncul ketika mencoba memperbaiki pengkodean berkas.\nJangan mencoba menyimpan sketsa ini karena dapat menimpa\nversi lama. Gunakan Buka untuk kembali membuka sketsa dan coba lagi.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Arsipkan Sketsa + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Tidak dapat mengarsipkan sketsa + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Pengarsipan sketsa telah dibatalkan karena\nsketsa tidak dapat menyimpan dengan benar. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arsipkan sketsa sebagai\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Pengarsipan sketsa dibatalkan. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Kesalahan ketika memuat kode {0} + +#: SketchCode.java:258 +#, java-format +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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.= + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Sketsa Hanya-Baca + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Beberapa berkas ditandai "hanya-baca", jadi anda harus\nkembali menyimpan sketsa di lokasi lain,\ndan coba lagi. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nama untuk berkas baru\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Sketsa tidak berjudul + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Bagaimana jika simpan sketsa terlebih dahulu \nsebelum mencoba untuk mengubah namanya? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Masalah dengan pengubahan nama + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Nama tidak dapat diawali dengan sebuah periode. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" bukan ekstensi yang sah. + +#: Sketch.java:378 +!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Tidak + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Sebuah berkas bernama "{0}" sudah ada di "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Anda tidak dapat memiliki sebuah berkas .cpp dengan nama yang sama dengan sketsa. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Anda tidak dapat mengubah nama sketsa ke "{0}"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama tersebut. + +#: Sketch.java:459 +Cannot\ Rename=Tidak dapat mengubah nama + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Maaf, sebuah sketsa (atau map) bernama "{0}" sudah ada. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Tidak dapat mengubah nama sketsa. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Tidak dapat mengubah nama "{0}" ke "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Tidak dapat mengubah nama sketsa. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Tidak dapat mengubah nama sketsa. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() kembali salah + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Apakah anda yakin ingin menghapus sketsa ini? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Apakah anda yakin ingin menghapus "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Hapus + +#: Sketch.java:620 +Couldn't\ do\ it=Tidak dapat melakukannya + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Tidak dapat menghapus "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: kesalahan internal.. tidak dapat menemukan kode + +#: Sketch.java:724 +Sketch\ is\ read-only=Sketsa hanya-baca + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Beberapa berkas ditandai "hanya-baca", jadi anda harus\nkembali menyimpan sketsa ini di lokasi lain. + +#: Sketch.java:743 +!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?= + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Simpan map sketsa sebagai... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Anda tidak dapat menyimpan sketsa sebagai "{0}"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama tersebut. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Anda Borges sekali + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Anda tidak dapat menyimpan sketsa kedalam sebuah map\ndi dalam dirinya sendiri. Ini akan memakan waktu selamanya. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Pilih sebuah gambar atau berkas data lain untuk disalin ke sketsa anda + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Ganti versi {0} yang ada? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Kesalahan dalam menambahkan file + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Tidak dapat menghapus berkas ''{0}'' yang ada. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Anda tidak dapat membodohi saya + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Berkas ini telah disalin ke\nlokasi darimana anda mencoba untuk menambahkannya.\nSaya bukan tidak melakukan apa-apa. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Tidak dapat menambahkan ''{0}'' ke sketsa. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Map Bangun hilang atau tidak dapat ditulis + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Tidak dapat menemukan kelas utama + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Jenis pengecualian\: {0} tidak tertangkap + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Masalah dalam memindahkan {0} ke map bangun + +#: Sketch.java:1661 +Uploading...=Mengunggah... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Ukuran biner sketsa\: {0} bytes (dari maksimum {1} byte) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Tidak dapat menentukan ukuran program\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketsa terlalu besar; lihat http\://www.arduino.cc/en/Guide/Troubleshooting\#size untuk saran tentang menguranginya. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Membutuhkan */ di akhir sebuah /* komentar */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Sketsa Hilang + +#: Sketch.java:1797 +!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Tidak dapat kembali menyimpan sketsa + +#: Sketch.java:1811 +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Tidak dapat kembali menyimpan sketsa dengan benar. Anda mungkin berada dalam kesulitan pada saat ini,\ndan mungkin sudah saatnya untuk menyalin dan menyisipkan kode anda ke editor teks lain. + +#: Sketch.java:2060 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kesalahan kompilator, harap kirim kode ini ke {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=serial port yang dipilih {0} tidak ada atau papan anda tidak terhubung + +#: debug/Uploader.java:203 +!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= + +#: debug/Uploader.java:209 +!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= + +#: debug/Uploader.java:213 +!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Tidak ada papan yang dipilih; harap pilih sebuah papan dari menu Peralatan > Papan. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} kembali {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Kesalahan dalam menyusun. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Harap impor perpustakaan SPI dari menu Sketsa > Impor Perpustakaan. + +#: debug/Compiler.java:466 +\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=\nPada Arduino 0019, perpustakaan Ethernet tergantung pada perpustakaan SPI.\nTampaknya anda menggunakannya atau perpustakaan lain yang tergantung pada perpustakaan SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Kata kunci 'BYTE' tidak lagi didukung. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nPada Arduino 1.0, kata kunci 'BYTE' tidak lagi didukung.\nHarap gunakan Serial.write() sebagai gantinya.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Kelas Server telah diubah namanya menjadi EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nPada Arduino 1.0, kelas Server dalam perpustakaan Ethernet telah diubah namanya menjadi EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Kelas Client telah diubah namanya menjadi EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nPada Arduino 1.0, kelas Client dalam perpustakaan Ethernet telah diubah namanya menjadi EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Kelas Udp telah diubah namanya menjadi EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nPada Arduino 1.0, kelas Udp dalam perpustakaan Ethernet telah diubah namanya menjadi EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() telah diubah namanya menjadi Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nPada Arduino 1.0, fungsi Wire.send() telah diubah namanya menjadi Wire.write() demi konsistensi dengan perpustakaan lain.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() telah diubah namanya menjadi Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nPada Arduino 1.0, fungsi Wire.receive() telah diubah namanya menjadi Wire.read() demi konsistensi dengan perpustakaan lain.\n\n + +#: EditorConsole.java:152 +Console\ Error=Kesalahan Konsol + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Sebuah masalah muncul ketika mencoba membuka\nberkas yang digunakan untuk menyimpan keluaran konsol. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Kesalahan tidak fatal ketika mengatur penampilan. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Pesan kesalahan akan muncul, bagaimanapun Arduino akan berjalan dengan baik. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Masalah Dalam Mengatur Platform + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Kesalahan tak dikenal muncul ketika mencoba memuat \nkode spesifik platform untuk mesin anda. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Harap pasang JDK 1.5 atau yang lebih baru + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino membutuhkan JDK lengkap (tidak hanya JRE)\nuntuk dapat berjalan. Harap pasang JDK 1.5 atau yang lebih baru.\nInformasi lebih lanjut dapat ditemukan di referensi. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Map Buku Sketsa hilang + +#: Base.java:258 +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.=Map sketsa tidak lagi ada.\nArduino akan beralih ke lokasi buku sketsa\nstandar, dan membuat sebuah map buku sketsa baru jika\ndiperlukan. Arduino kemudian akan berhenti berbicara tentang\ndirinya sendiri dari sudut orang ketiga. + +#: Base.java:532 +Time\ for\ a\ Break=Waktu untuk Istirahat + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Anda telah mencapai batas pemberian nama otomatis sketsa baru\nuntuk hari ini. Bagaimana jika anda pergi jalan-jalan sebagai gantinya? + +#: Base.java:537 +Sunshine=Cuaca cerah + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Sungguh, sekarang waktunya anda menghirup udara segar. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Buka sebuah sketsa Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Apakah anda \nyakin ingin berhenti?

Menutup sketsa aktif yang terakhir akan menghentikan Arduino. + +#: Base.java:970 +Contributed=Dikontribusikan + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Sketsa Tidak Ada + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Sketsa yang dipilih tidak lagi ada.\nAnda mungkin perlu memulai ulang Arduino untuk memperbaharui\nmenu buku sketsa. + +#: Base.java:1125 +#, 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}=Sketsa "{0}" tidak dapat digunakan.\nNama sketsa hanya dapat terdiri dari huruf dan angka dasar\n(hanya ASCII tanpa spasi, dan tidak dapat diawali dengan sebuah angka).\nUntuk menghilangkan pesan ini, hapus sketsa dari\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Mengabaikan sketsa dengan nama buruk + +#: Base.java:1202 +#, 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)=Perpustakaan "{0}" tidak dapat digunakan.\nNama perpustakaan hanya dapat terdiri dari huruf dan angka dasar.\n(hanya ASCII dan tanpa spasi, dan tidak dapat diawali dengan sebuah angka).\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Mengabaikan nama perpustakaan buruk + +#: Base.java:1432 +Problem\ getting\ data\ folder=Masalah dalam mendapatkan map data + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Kesalahan dalam mendapatkan map data Arduino. + +#: Base.java:1440 +Settings\ issues=Masalah pengaturan + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino tidak dapat berfungsi karena tidak bisa\nmembuat sebuah map untuk menyimpan pengaturan anda. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Anda melupakan buku sketsa anda + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino tidak dapat berjalan karena tidak bisa\nmembuat sebuah map untuk menyimpan buku sketsa anda. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Pilih (atau buat baru) map untuk sketsa... + +#: Base.java:1647 +Problem\ Opening\ URL=Masalah Dalam Membuka URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Tidak dapat membuka URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Masalah Dalam Membuka Map + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Tidak dapat membuka map\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=lingkungan + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Pesan + +#: Base.java:1842 +Warning=Peringatan + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Tidak dapat menghilangkan versi lama {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Tidak dapat menggantikan {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Tidak dapat menghapus {0} + +#: EditorHeader.java:292 +New\ Tab=Label Baru + +#: EditorHeader.java:300 +Rename=Ubah Nama + +#: EditorHeader.java:326 +Previous\ Tab=Label Sebelumnya + +#: EditorHeader.java:340 +Next\ Tab=Label Berikutnya + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Periksa + +#: EditorToolbar.java:41 +Open=Buka + +#: EditorToolbar.java:46 +New\ Editor\ Window=Jendela Editor Baru + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Buka di Jendela Lain + +#: Platform.java:167 +No\ launcher\ available=Tidak ada peluncur yang tersedia + +#: 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 tanpa spesifikasi, tidak ada peluncur yang tersedia.\nUntuk mengaktifkan pembukaan URL atau map, tambahkan sebuah baris \n"launcher\=/path/to/app" ke preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Tidak dapat membaca pengaturan tema warna.Anda harus memasang ulang Processing. + +#: Preferences.java:80 +Browse=Navigasi + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Bahasa Katalan + +#: Preferences.java:87 +Chinese\ Simplified=Bahasa Cina Sederhana + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Bahasa Denmark + +#: Preferences.java:90 +Dutch=Bahasa Belanda + +#: Preferences.java:91 +English=Bahasa Inggris + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Bahasa Perancis + +#: Preferences.java:94 +Filipino=Bahasa Filipina + +#: Preferences.java:95 +Galician=Bahasa Galisia + +#: Preferences.java:96 +German=Bahasa Jerman + +#: Preferences.java:97 +Greek=Bahasa Yunani + +#: Preferences.java:98 +Hungarian=Bahasa Hungaria + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Bahasa Italia + +#: Preferences.java:101 +Japanese=Bahasa Jepang + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Bahasa Latvia + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Bahasa Persia + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Bahasa Rumania + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Bahasa Spanyol + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Tidak dapat membaca pengaturan standar.\nAnda harus memasang ulang Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Tidak dapat membaca preferensi dari {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Kesalahan dalam membaca preferensi + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Kesalahan dalam membaca berkas preferensi. Harap hapus (atau pindahkan)\n{0} dan mulai ulang Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Lokasi buku sketsa\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Pilih lokasi buku sketsa baru + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +!\ \ (requires\ restart\ of\ Arduino)= + +#: Preferences.java:354 +Editor\ font\ size\:\ =Editor ukuran huruf\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Tampilkan keluaran yang berlebihan ketika\: + +#: Preferences.java:373 +compilation\ =susunan + +#: Preferences.java:375 +upload=unggah + +#: Preferences.java:384 +Verify\ code\ after\ upload=Periksa kode setelah unggah + +#: Preferences.java:393 +Use\ external\ editor=Gunakan editor eksternal + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Periksa pembaruan ketika program dimulai + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Perbaharui berkas sketsa ke ekstensi baru ketika menyimpan (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Asosiasikan otomatis berkas .ino dengan Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Preferensi lebih lanjut dapat diedit langsung pada berkas + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(mengedit hanya ketika Arduino sedang tidak berjalan) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=mengabaikan ukuran huruf tidak sah {0} diff --git a/app/src/processing/app/Resources_it.po b/app/src/processing/app/Resources_it.po new file mode 100644 index 000000000..1c14ed795 --- /dev/null +++ b/app/src/processing/app/Resources_it.po @@ -0,0 +1,1658 @@ +# Italian translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Sara Gallo, Simone Majocchi, Michele Michielin <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-04-08 12:00+0200\n" +"Last-Translator: Sara Gallo, Simone Majocchi, Michele Michielin\n" +"Language-Team: Italian\n" +"Language: IT\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Nessun file è stato aggiunto allo sketch." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Un file aggiunto allo sketch." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} file aggiunti allo sketch." + +#: Editor.java:484 +msgid "File" +msgstr "File" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nuovo" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Apri..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Cartella degli sketch" + +#: Editor.java:509 +msgid "Examples" +msgstr "Esempi" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Chiudi" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Salva" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Salva con nome..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Carica" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Carica con un programmatore" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Imposta pagina" + +#: Editor.java:564 +msgid "Print" +msgstr "Stampa" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferenze" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Esci" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verifica / Compila" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importa libreria..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Mostra cartella dello sketch" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Aggiungi file..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Strumenti" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitor seriale" + +#: Editor.java:682 +msgid "Board" +msgstr "Tipo di Arduino" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Porta seriale" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmatore" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Scrivi il bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu è nullo" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "name è nullo" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "errore nella lettura della lista delle porte" + +#: Editor.java:1002 +msgid "Help" +msgstr "Aiuto" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Primi passi" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Ambiente di sviluppo" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Risoluzione dei problemi" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Guida di riferimento" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Cerca nella guida" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Domande frequenti" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Visita Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "A proposito di Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Modifica" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Annulla" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Ripeti" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Taglia" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Copia" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copia per il forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Copia come HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Incolla" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Seleziona tutto" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Commenta / Togli commento" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Aumenta indentazione" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Diminuisci indentazione" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Trova..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Trova successivo" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Trova precedente" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Trova testo selezionato" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Prima seleziona una parola da cercare nella guida." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Nessuna voce disponibile per \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Sto compilando lo sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compilazione terminata." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " Salvare " +"le modifiche a questo sketch
prima di uscire?

Se non salvate, " +"le modifiche andranno perse." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Annulla" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Non salvare" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Selezionato file errato" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing può aprire solo i propri sketch\n" +"e i file con estensione .ino o .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Il file \"{0}\" deve essere all'interno\n" +"di una cartella sketch di nome \"{1}\".\n" +"Creare questa cartella, spostare il file e continuare?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Sto spostando" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Errore" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Una cartella di nome \"{0}\" esiste già. Impossibile aprire lo sketch." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Impossibile creare la cartella dello sketch." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Impossibile copiare nella posizione opportuna." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Impossibile creare lo sketch." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Sto salvando..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Salvataggio effettuato." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Salvataggio annullato." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Porta seriale {0} non trovata.\n" +"Riprovare il caricamento con un'altra porta seriale?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Sto caricando sulla scheda di I/O..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Caricamento terminato." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Caricamento annullato." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Salvare le modifiche prima di esportare?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Esportazione annullata, le modifiche devono prima essere salvate." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Sto scrivendo il bootloader sulla scheda di I/O (potrebbe richiedere qualche minuto)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Scrittura bootloader terminata." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Errore durante la scrittura del bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Sto stampando..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Stampa terminata." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Errore durante la stampa." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Stampa annullata." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Errore alla linea: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Apri URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"E' disponibile una nuova versione di Arduino,\n" +"volete visitare la pagina degli aggiornamenti?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Sì" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "No" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Aggiorna" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Trova:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Sostituisci con:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignora maiusc./minusc." + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Prosegui dall'inizio" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Sostituisci tutto" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Sostituisci" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Trova e sostituisci" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Precedente" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Trova" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Invia" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Scorrimento automatico" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Nessun fine riga" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "A capo (NL)" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Ritorno carrello (CR)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Sia NL sia CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr "baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"La porta seriale ''{0}'' è già in uso. Provate a chiudere i programmi che potrebbero usarla." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Errore durante l'apertura della porta seriale ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Porta seriale ''{0}'' non trovata. Controllate la porta in Strumenti > " +"Porta seriale." + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"Il buffer readBytesUntil() è troppo piccolo per i {0} bytes fino al " +"carattere {1} incluso" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Errore all'interno di Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Formattazione automatica" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Nessun cambiamento effettuato con la Formattazione automatica." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Formattazione automatica annullata: troppe parentesi chiuse." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Formattazione automatica annullata: troppe parentesi aperte." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Formattazione automatica annullata: troppe parentesi graffe chiuse." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Formattazione automatica annullata: troppe parentesi graffe aperte." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Formattazione automatica terminata." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Correggi codifica e ricarica" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Scartare tutte le modifiche e ricaricare lo sketch?" + +#: 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 "" +"Si è verificato un errore mentre era in corso la correzione della codifica del file.\n" +"Non cercate di salvare questo sketch in quanto potrebbe sovrascrivere\n" +"la versione precedente. Usate Apri per riaprire lo sketch e riprovate.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Archivia sketch" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Impossibile archiviare lo sketch" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"L'archiviazione dello sketch è stata annullata perché\n" +"lo sketch non poteva essere salvato correttamente." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Archivia sketch come:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Archiviazione sketch annullata" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Errore durante il caricamento del codice {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" contiene caratteri non riconosciuti. Se il codice è stato creato con una versione\n" +"precedente di Processing, potrebbe essere necessario usare Strumenti -> Correggi codifica e\n" +"ricarica per aggiornare lo sketch alla codifica UTF-8. In alternativa è\n" +"necessario cancellare i caratteri errati per eliminare questo avviso." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Lo sketch è di sola lettura" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Alcuni file sono impostati come \"sola lettura\", dovete\n" +"salvare di nuovo lo sketch in un'altra posizione." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nome per il nuovo file:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Lo sketch non ha nome" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Cosa ne direste di salvare lo sketch prima di\n" +"cercare di cambiargli il nome?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problemi con il cambio di nome" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Il nome non può iniziare con un punto." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" non è una estensione valida." + +#: Sketch.java:378 +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 "" +"Il file principale non può usare un'estensione.\n" +"(Potrebbe essere arrivato per voi il momento di\n" +"passare a un \"vero\" ambiente di programmazione)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Per niente" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Un file con nome \"{0}\" esiste già in \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Non potete avere un file .cpp con lo stesso nome dello sketch." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Non potete rinominare lo sketch in \"{0}\"\n" +"in quanto lo sketch ha già un file .cpp con quel nome." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Impossibile rinominare" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Spiacente, uno sketch (o una cartella) di nome \"{0}\" esiste già." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Impossibile rinominare lo sketch. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Impossibile rinominare \"{0}\" in \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Impossibile rinominare lo sketch. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Impossibile rinominare lo sketch. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() ha restituito falso" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Siete sicuri di voler cancellare questo sketch?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Siete sicuri di voler cancellare \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Elimina" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Impossibile eseguire il comando" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Impossibile cancellare \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: errore interno... impossibile trovare il codice" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Lo sketch è di sola lettura" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Alcuni file sono impostati come \"sola lettura\" quindi\n" +"dovrete salvare nuovamente lo sketch in un'altra posizione." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"In Arduino 1.0 è cambiata l'estensione standard dei file\n" +"da .pde a .ino. I nuovi sketch (inclusi quelli creati con\n" +" \"Salva con nome...\" useranno la nuova estensione. L'estensione\n" +"degli sketch esistenti sarà aggiornata con il Salva, ma potete\n" +"disattivare l'opzione nel pannello Preferenze.\n" +"\n" +"Salvare lo sketch e aggiornare la sua estensione?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Salva la cartella dello sketch come..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Non potete salvare lo sketch come \"{0}\"\n" +"in quanto lo sketch ha già un file .cpp con quel nome." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Avete scoperto il Borges che c'è in voi" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Non potete salvare lo sketch in una cartella\n" +"all'interno di sé stessa. Questo procederebbe all'infinito." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Selezionate un'immagine o un altro file dati da copiare nel vostro sketch" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Sostituire la versione esistente di {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Errore aggiungendo il file" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Impossibile cancellare il file esistente ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Non mi potete imbrogliare" + +#: Sketch.java:1079 +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 "" +"Questo file è già stato copiato nella posizione\n" +"dove state cercando di aggiungerlo." +"Non farò un bel nulla." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Impossibile aggiungere ''{0}'' allo sketch. " + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "La cartella di generazione è scomparsa o non può essere scritta" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Impossibile trovare la classe principale" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Eccezione non intercettata di tipo: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problema nel muovere {0} nella cartella di generazione" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Sto caricando..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Dimensione del file binario dello sketch: {0} bytes (su un massimo di {1} bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Impossibile determinare la dimensione del programma: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Sketch troppo grande; consultate http://www.arduino.cc/en/Guide/Troubleshooting#size " +"per consigli su come ridurlo." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Manca il */ alla fine di un /* commento */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Lo sketch è sparito" + +#: Sketch.java:1797 +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 "" +"La cartella dello sketch è sparita.\n" +"Proverò a salvare nuovamente nella stessa posizione,\n" +"ma qualsiasi cosa in aggiunta al codice andrà persa." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Impossibile salvare nuovamente lo sketch" + +#: Sketch.java:1811 +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 "" +"Impossibile salvare nuovamente lo sketch. A questo punto potreste essere nei guai\n" +"ed è il caso di copiare e incollare il codice in un altro editor di testo." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Il nome dello sketch è stato modificato. I nomi possono essere composti solo\n" +"da caratteri ASCII e numeri (ma non possono iniziare con un numero).\n" +"Devono anche essere più brevi di 64 caratteri." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Errore del compilatore, per favore inviate questo codice a {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"La porta seriale selezionata {0} non esiste o la scheda non è connessa" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Il dispositivo non risponde, controllate di aver selezionato la porta seriale\n" +"corretta o premete RESET sulla scheda appena prima di esportare" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Problemi di caricamento sulla scheda. Leggete http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload per suggerimenti." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Trovato microcontrollore errato. Avete selezionato il tipo corretto di scheda dal menù " +"Strumenti > Tipo di Arduino?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Nessuna scheda selezionata; per favore selezionate una scheda dal menù Strumenti > Tipo di Arduino." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} ha restituito {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Errore durante la compilazione." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Per favore importate la libreria SPI dal menù Sketch > Importa libreria." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Da Arduino 0019, la libreria Ethernet dipende dalla libreria SPI.\n" +"Sembrerebbe che stiate usando quella o un'altra libreria che dipende\n" +"dalla libreria SPI." +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "La parola chiave 'BYTE' non è più supportata" + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Da Arduino 1.0, la parola chiave 'BYTE' non è più supportata.\n" +"Per favore usate al suo posto Serial.write().\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "La classe Server è stata rinominata EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Da Arduino 1.0, la classe Server nella libreria Ethernet è stata rinominata EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "La classe Client è stata rinominata EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Da Arduino 1.0 la classe Client nella libreria Ethernet è stata rinominata EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "La classe Udp è stata rinominata EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Da Arduno 1.0, la classe Udp nella libreria Ethernet è stata rinominata EthernerClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() è stato rinominato Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Da Arduino 1.0, la funzione Wire.send() è stata rinominata Wire.write() per\n" +"uniformità con le altre librerie.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() è stata rinominata Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Da Arduino 1.0, la funzione Wire.receive() è stata rinominata Wire.read()\n" +"per uniformità con le altre librerie.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Errore di console" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"E' stato rilevato un problema durante l'apertura del file\n" +"usato per memorizzare l'output della console." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Errore non fatale durante la configurazione del Look & Feel" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Segue il messaggio di errore, anche se Arduino dovrebbe funzionare senza problemi." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problemi durante la configurazione della piattaforma" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"Errore sconosciuto durante il caricamento\n" +"di codice specifico per la vostra macchina." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Per favore installate JDK 1.5 o successivo." + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino richiede un JDK completo (non solamente il JRE)\n" +"per funzionare. Per favore installate JDK 1.5 o successivo.\n" +"Ulteriori informazioni sono disponibili nella guida." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "La cartella degli sketch è scomparsa" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"La cartella degli sketch non esiste più.\n" +"Arduino tornerà ad usare la posizione predefinita per la cartella\n" +"e creerà una nuova cartella degli sketch se necessario.\n" +"A quel punto Arduino smetterà di parlare di sé stesso\n" +"in terza persona" + +#: Base.java:532 +msgid "Time for a Break" +msgstr "E' ora di fare una pausa" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Avete raggiunto il limite giornaliero per la generazione automatica\n" +"dei nomi degli sketch.\n" +"Cosa ne direste a questo punto di andare a fare una passeggiata?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Sole splendente" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "No davvero, è ora di prendere un po' di aria fresca" + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Apri uno sketch di Arduino" + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Siete " +"sicuri di voler uscire?

Chiudere l'ultimo sketch aperto comporterà l'uscita da Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribuito" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Lo sketch non esiste" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Lo sketch selezionato non esiste più.\n" +"Potresti aver bisogno di riavviare Arduino per\n" +"aggiornare il contenuto della Cartella degli sketch." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Lo sketch \"{0}\" non può essere usato.\n" +"I nomi degli sketch possono contenere solo lettere e numeri\n" +"(ASCII senza spazi e non possono iniziare con un numero).\n" +"Per sbarazzarsi di questo messaggio, eliminare lo sketch da \n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignoro lo sketch con nome malformato" + +#: Base.java:1202 +#, java-format +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 "" +"La libreria \"{0}\" non può essere usata.\n" +"I nomi delle librerie possono contenere solo lettere e numeri\n" +"(ASCII senza spazi e non possono iniziare con un numero).\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignoro la libreria con nome malformato" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problema con la cartella dati" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Errore con la cartella dati di Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Problemi di configurazione" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino non può essere eseguito perché non può\n" +"creare la cartella per memorizzare le tue impostazioni." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Hai dimenticato la tua cartella degli sketch" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino non può essere eseguito perché non può\n" +"creare la cartella dove memorizzare gli sketch." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Seleziona (o crea) la cartella per gli sketch..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problema nell'apertura dell'URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Impossibile aprire l'URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problema nell'apertura della cartella" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Impossibile aprire la cartella\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "ambiente di sviluppo" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Messaggio" + +#: Base.java:1842 +msgid "Warning" +msgstr "Attenzione" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Impossibile eliminare la vecchia versione di {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Impossibile sostituire {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Impossibile eliminare {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nuova scheda" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Rinomina" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Scheda precedente" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Scheda successiva" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verifica" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Apri" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nuova finestra di modifica" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Apri in un'altra finestra" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Nessun launcher disponibile" + +#: 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 "" +"Piattaforma non specificata, nessun laucher disponibile.\n" +"Per abilitare l'apertura di URL o di cartelle, aggiungete una riga\n" +"\"launcher=/path/to/app\" a preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Impossibile leggere le impostazioni del tema dei colori.\n" +"Dovete reinstallare Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Sfoglia" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Catalano" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Cinese semplificato" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Danese" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Olandese" + +#: Preferences.java:91 +msgid "English" +msgstr "Inglese" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Francese" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filippino" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galiziano" + +#: Preferences.java:96 +msgid "German" +msgstr "Tedesco" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Greco" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Ungherese" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italiano" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Giapponese" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Lettone" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persiano" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Rumeno" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Spagnolo" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Impossibile leggere le impostazioni predefinite.\n" +"E' necessario reinstallare Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Impossibile leggere le preferenze da {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Errore nella lettura delle preferenze" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Errore nella letture del file di preferenze. Per favore eliminare (spostare)\n" +"{0} e riavviare Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Posizione della cartella degli sketch:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Selezionare una nuova posizione per la cartella degli Sketch" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr "" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Dimensioni font dell'editor:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Mostra output verboso durante: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilazione " + +#: Preferences.java:375 +msgid "upload" +msgstr "caricamento" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Verifica il codice dopo il caricamento" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Usa un editor esterno" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Controlla gli aggiornamenti all'avvio" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Aggiorna l'estensione degli sketch durante il salvataggio (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Associa automaticamente i file .ino con Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Ulteriori preferenze possono essere modificate direttamente nel file" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(modificabile solo quando Arduino non è in esecuzione)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "sto ignorando la dimensione del font non valida {0}" diff --git a/app/src/processing/app/Resources_it.properties b/app/src/processing/app/Resources_it.properties new file mode 100644 index 000000000..3151af804 --- /dev/null +++ b/app/src/processing/app/Resources_it.properties @@ -0,0 +1,1034 @@ +# Italian translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Sara Gallo, Simone Majocchi, Michele Michielin <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-04-08 12\:00+0200\nLast-Translator\: Sara Gallo, Simone Majocchi, Michele Michielin\nLanguage-Team\: Italian\nLanguage\: IT\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Nessun file \u00e8 stato aggiunto allo sketch. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Un file aggiunto allo sketch. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} file aggiunti allo sketch. + +#: Editor.java:484 +File=File + +#: Editor.java:486 EditorToolbar.java:41 +New=Nuovo + +#: Editor.java:494 Base.java:903 +Open...=Apri... + +#: Editor.java:503 +Sketchbook=Cartella degli sketch + +#: Editor.java:509 +Examples=Esempi + +#: Editor.java:514 Editor.java:1977 +Close=Chiudi + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Salva + +#: Editor.java:530 +Save\ As...=Salva con nome... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Carica + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Carica con un programmatore + +#: Editor.java:556 +Page\ Setup=Imposta pagina + +#: Editor.java:564 +Print=Stampa + +#: Editor.java:576 Preferences.java:279 +Preferences=Preferenze + +#: Editor.java:586 Base.java:782 +Quit=Esci + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=Verifica / Compila + +#: Editor.java:629 +Import\ Library...=Importa libreria... + +#: Editor.java:634 +Show\ Sketch\ Folder=Mostra cartella dello sketch + +#: Editor.java:643 +Add\ File...=Aggiungi file... + +#: Editor.java:656 +Tools=Strumenti + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitor seriale + +#: Editor.java:682 +Board=Tipo di Arduino + +#: Editor.java:690 +Serial\ Port=Porta seriale + +#: Editor.java:695 +Programmer=Programmatore + +#: Editor.java:699 +Burn\ Bootloader=Scrivi il bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu \u00e8 nullo + +#: Editor.java:927 Editor.java:934 +name\ is\ null=name \u00e8 nullo + +#: Editor.java:986 +error\ retrieving\ port\ list=errore nella lettura della lista delle porte + +#: Editor.java:1002 +Help=Aiuto + +#: Editor.java:1041 +Getting\ Started=Primi passi + +#: Editor.java:1049 +Environment=Ambiente di sviluppo + +#: Editor.java:1057 +Troubleshooting=Risoluzione dei problemi + +#: Editor.java:1065 +Reference=Guida di riferimento + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Cerca nella guida + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Domande frequenti + +#: Editor.java:1091 +Visit\ Arduino.cc=Visita Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=A proposito di Arduino + +#: Editor.java:1116 +Edit=Modifica + +#: Editor.java:1119 Editor.java:1341 +Undo=Annulla + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Ripeti + +#: Editor.java:1135 Editor.java:2652 +Cut=Taglia + +#: Editor.java:1143 Editor.java:2660 +Copy=Copia + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copia per il forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Copia come HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Incolla + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Seleziona tutto + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Commenta / Togli commento + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Aumenta indentazione + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Diminuisci indentazione + +#: Editor.java:1220 +Find...=Trova... + +#: Editor.java:1235 +Find\ Next=Trova successivo + +#: Editor.java:1245 +Find\ Previous=Trova precedente + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Trova testo selezionato + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Prima seleziona una parola da cercare nella guida. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Nessuna voce disponibile per "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Sto compilando lo sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compilazione terminata. + +#: Editor.java:1973 +#, java-format +!Save\ changes\ to\ "{0}"?\ \ = + +#: Editor.java:2006 +\ \ 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.= Salvare le modifiche a questo sketch
prima di uscire?

Se non salvate, le modifiche andranno perse. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Annulla + +#: Editor.java:2017 +Don't\ Save=Non salvare + +#: Editor.java:2089 +Bad\ file\ selected=Selezionato file errato + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing pu\u00f2 aprire solo i propri sketch\ne i file con estensione .ino o .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Il file "{0}" deve essere all'interno\ndi una cartella sketch di nome "{1}".\nCreare questa cartella, spostare il file e continuare? + +#: Editor.java:2109 +Moving=Sto spostando + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Errore + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Una cartella di nome "{0}" esiste gi\u00e0. Impossibile aprire lo sketch. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Impossibile creare la cartella dello sketch. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Impossibile copiare nella posizione opportuna. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Impossibile creare lo sketch. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Sto salvando... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Salvataggio effettuato. + +#: Editor.java:2270 +Save\ Canceled.=Salvataggio annullato. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Porta seriale {0} non trovata.\nRiprovare il caricamento con un'altra porta seriale? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Sto caricando sulla scheda di I/O... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Caricamento terminato. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Caricamento annullato. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Salvare le modifiche prima di esportare? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Esportazione annullata, le modifiche devono prima essere salvate. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Sto scrivendo il bootloader sulla scheda di I/O (potrebbe richiedere qualche minuto)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Scrittura bootloader terminata. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Errore durante la scrittura del bootloader. + +#: Editor.java:2500 +Printing...=Sto stampando... + +#: Editor.java:2517 +Done\ printing.=Stampa terminata. + +#: Editor.java:2520 +Error\ while\ printing.=Errore durante la stampa. + +#: Editor.java:2524 +Printing\ canceled.=Stampa annullata. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Errore alla linea\: {0} + +#: Editor.java:2641 +Open\ URL=Apri URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=E' disponibile una nuova versione di Arduino,\nvolete visitare la pagina degli aggiornamenti? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=S\u00ec + +#: UpdateCheck.java:108 Preferences.java:77 +No=No + +#: UpdateCheck.java:111 +Update=Aggiorna + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Trova\: + +#: FindReplace.java:81 +Replace\ with\:=Sostituisci con\: + +#: FindReplace.java:96 +Ignore\ Case=Ignora maiusc./minusc. + +#: FindReplace.java:105 +Wrap\ Around=Prosegui dall'inizio + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Sostituisci tutto + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Sostituisci + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Trova e sostituisci + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Precedente + +#: FindReplace.java:124 FindReplace.java:127 +Find=Trova + +#: SerialMonitor.java:93 +Send=Invia + +#: SerialMonitor.java:110 +Autoscroll=Scorrimento automatico + +#: SerialMonitor.java:112 +No\ line\ ending=Nessun fine riga + +#: SerialMonitor.java:112 +Newline=A capo (NL) + +#: SerialMonitor.java:112 +Carriage\ return=Ritorno carrello (CR) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Sia NL sia CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=La porta seriale ''{0}'' \u00e8 gi\u00e0 in uso. Provate a chiudere i programmi che potrebbero usarla. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Errore durante l'apertura della porta seriale ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porta seriale ''{0}'' non trovata. Controllate la porta in Strumenti > Porta seriale. + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Il buffer readBytesUntil() \u00e8 troppo piccolo per i {0} bytes fino al carattere {1} incluso + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Errore all'interno di Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Formattazione automatica + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Nessun cambiamento effettuato con la Formattazione automatica. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Formattazione automatica annullata\: troppe parentesi chiuse. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Formattazione automatica annullata\: troppe parentesi aperte. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Formattazione automatica annullata\: troppe parentesi graffe chiuse. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Formattazione automatica annullata\: troppe parentesi graffe aperte. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Formattazione automatica terminata. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Correggi codifica e ricarica + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Scartare tutte le modifiche e ricaricare lo sketch? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Si \u00e8 verificato un errore mentre era in corso la correzione della codifica del file.\nNon cercate di salvare questo sketch in quanto potrebbe sovrascrivere\nla versione precedente. Usate Apri per riaprire lo sketch e riprovate.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Archivia sketch + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Impossibile archiviare lo sketch + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=L'archiviazione dello sketch \u00e8 stata annullata perch\u00e9\nlo sketch non poteva essere salvato correttamente. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Archivia sketch come\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Archiviazione sketch annullata + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Errore durante il caricamento del codice {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contiene caratteri non riconosciuti. Se il codice \u00e8 stato creato con una versione\nprecedente di Processing, potrebbe essere necessario usare Strumenti -> Correggi codifica e\nricarica per aggiornare lo sketch alla codifica UTF-8. In alternativa \u00e8\nnecessario cancellare i caratteri errati per eliminare questo avviso. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Lo sketch \u00e8 di sola lettura + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alcuni file sono impostati come "sola lettura", dovete\nsalvare di nuovo lo sketch in un'altra posizione. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nome per il nuovo file\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Lo sketch non ha nome + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Cosa ne direste di salvare lo sketch prima di\ncercare di cambiargli il nome? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Problemi con il cambio di nome + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Il nome non pu\u00f2 iniziare con un punto. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" non \u00e8 una estensione valida. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Il file principale non pu\u00f2 usare un'estensione.\n(Potrebbe essere arrivato per voi il momento di\npassare a un "vero" ambiente di programmazione) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Per niente + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Un file con nome "{0}" esiste gi\u00e0 in "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Non potete avere un file .cpp con lo stesso nome dello sketch. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non potete rinominare lo sketch in "{0}"\nin quanto lo sketch ha gi\u00e0 un file .cpp con quel nome. + +#: Sketch.java:459 +Cannot\ Rename=Impossibile rinominare + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Spiacente, uno sketch (o una cartella) di nome "{0}" esiste gi\u00e0. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Impossibile rinominare lo sketch. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Impossibile rinominare "{0}" in "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Impossibile rinominare lo sketch. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Impossibile rinominare lo sketch. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() ha restituito falso + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Siete sicuri di voler cancellare questo sketch? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Siete sicuri di voler cancellare "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Elimina + +#: Sketch.java:620 +Couldn't\ do\ it=Impossibile eseguire il comando + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Impossibile cancellare "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: errore interno... impossibile trovare il codice + +#: Sketch.java:724 +Sketch\ is\ read-only=Lo sketch \u00e8 di sola lettura + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alcuni file sono impostati come "sola lettura" quindi\ndovrete salvare nuovamente lo sketch in un'altra posizione. + +#: Sketch.java:743 +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 \u00e8 cambiata l'estensione standard dei file\nda .pde a .ino. I nuovi sketch (inclusi quelli creati con\n "Salva con nome..." useranno la nuova estensione. L'estensione\ndegli sketch esistenti sar\u00e0 aggiornata con il Salva, ma potete\ndisattivare l'opzione nel pannello Preferenze.\n\nSalvare lo sketch e aggiornare la sua estensione? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Salva la cartella dello sketch come... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non potete salvare lo sketch come "{0}"\nin quanto lo sketch ha gi\u00e0 un file .cpp con quel nome. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Avete scoperto il Borges che c'\u00e8 in voi + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Non potete salvare lo sketch in una cartella\nall'interno di s\u00e9 stessa. Questo procederebbe all'infinito. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selezionate un'immagine o un altro file dati da copiare nel vostro sketch + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Sostituire la versione esistente di {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Errore aggiungendo il file + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Impossibile cancellare il file esistente ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Non mi potete imbrogliare + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Questo file \u00e8 gi\u00e0 stato copiato nella posizione\ndove state cercando di aggiungerlo.Non far\u00f2 un bel nulla. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Impossibile aggiungere ''{0}'' allo sketch. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=La cartella di generazione \u00e8 scomparsa o non pu\u00f2 essere scritta + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Impossibile trovare la classe principale + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Eccezione non intercettata di tipo\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problema nel muovere {0} nella cartella di generazione + +#: Sketch.java:1661 +Uploading...=Sto caricando... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Dimensione del file binario dello sketch\: {0} bytes (su un massimo di {1} bytes) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Impossibile determinare la dimensione del programma\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch troppo grande; consultate http\://www.arduino.cc/en/Guide/Troubleshooting\#size per consigli su come ridurlo. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca il */ alla fine di un /* commento */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Lo sketch \u00e8 sparito + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=La cartella dello sketch \u00e8 sparita.\nProver\u00f2 a salvare nuovamente nella stessa posizione,\nma qualsiasi cosa in aggiunta al codice andr\u00e0 persa. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Impossibile salvare nuovamente lo sketch + +#: Sketch.java:1811 +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.=Impossibile salvare nuovamente lo sketch. A questo punto potreste essere nei guai\ned \u00e8 il caso di copiare e incollare il codice in un altro editor di testo. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Il nome dello sketch \u00e8 stato modificato. I nomi possono essere composti solo\nda caratteri ASCII e numeri (ma non possono iniziare con un numero).\nDevono anche essere pi\u00f9 brevi di 64 caratteri. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Errore del compilatore, per favore inviate questo codice a {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=La porta seriale selezionata {0} non esiste o la scheda non \u00e8 connessa + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Il dispositivo non risponde, controllate di aver selezionato la porta seriale\ncorretta o premete RESET sulla scheda appena prima di esportare + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problemi di caricamento sulla scheda. Leggete http\://www.arduino.cc/en/Guide/Troubleshooting\#upload per suggerimenti. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Trovato microcontrollore errato. Avete selezionato il tipo corretto di scheda dal men\u00f9 Strumenti > Tipo di Arduino? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nessuna scheda selezionata; per favore selezionate una scheda dal men\u00f9 Strumenti > Tipo di Arduino. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} ha restituito {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Errore durante la compilazione. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Per favore importate la libreria SPI dal men\u00f9 Sketch > Importa libreria. + +#: debug/Compiler.java:466 +\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=\nDa Arduino 0019, la libreria Ethernet dipende dalla libreria SPI.\nSembrerebbe che stiate usando quella o un'altra libreria che dipende\ndalla libreria SPI.\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=La parola chiave 'BYTE' non \u00e8 pi\u00f9 supportata + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nDa Arduino 1.0, la parola chiave 'BYTE' non \u00e8 pi\u00f9 supportata.\nPer favore usate al suo posto Serial.write().\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=La classe Server \u00e8 stata rinominata EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDa Arduino 1.0, la classe Server nella libreria Ethernet \u00e8 stata rinominata EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client \u00e8 stata rinominata EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDa Arduino 1.0 la classe Client nella libreria Ethernet \u00e8 stata rinominata EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=La classe Udp \u00e8 stata rinominata EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDa Arduno 1.0, la classe Udp nella libreria Ethernet \u00e8 stata rinominata EthernerClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u00e8 stato rinominato Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDa Arduino 1.0, la funzione Wire.send() \u00e8 stata rinominata Wire.write() per\nuniformit\u00e0 con le altre librerie.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u00e8 stata rinominata Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDa Arduino 1.0, la funzione Wire.receive() \u00e8 stata rinominata Wire.read()\nper uniformit\u00e0 con le altre librerie.\n\n + +#: EditorConsole.java:152 +Console\ Error=Errore di console + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=E' stato rilevato un problema durante l'apertura del file\nusato per memorizzare l'output della console. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Errore non fatale durante la configurazione del Look & Feel + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Segue il messaggio di errore, anche se Arduino dovrebbe funzionare senza problemi. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problemi durante la configurazione della piattaforma + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Errore sconosciuto durante il caricamento\ndi codice specifico per la vostra macchina. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Per favore installate JDK 1.5 o successivo. + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino richiede un JDK completo (non solamente il JRE)\nper funzionare. Per favore installate JDK 1.5 o successivo.\nUlteriori informazioni sono disponibili nella guida. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=La cartella degli sketch \u00e8 scomparsa + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La cartella degli sketch non esiste pi\u00f9.\nArduino torner\u00e0 ad usare la posizione predefinita per la cartella\ne creer\u00e0 una nuova cartella degli sketch se necessario.\nA quel punto Arduino smetter\u00e0 di parlare di s\u00e9 stesso\nin terza persona + +#: Base.java:532 +Time\ for\ a\ Break=E' ora di fare una pausa + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Avete raggiunto il limite giornaliero per la generazione automatica\ndei nomi degli sketch.\nCosa ne direste a questo punto di andare a fare una passeggiata? + +#: Base.java:537 +Sunshine=Sole splendente + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No davvero, \u00e8 ora di prendere un po' di aria fresca + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Apri uno sketch di Arduino + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Siete sicuri di voler uscire?

Chiudere l'ultimo sketch aperto comporter\u00e0 l'uscita da Arduino. + +#: Base.java:970 +Contributed=Contribuito + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Lo sketch non esiste + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Lo sketch selezionato non esiste pi\u00f9.\nPotresti aver bisogno di riavviare Arduino per\naggiornare il contenuto della Cartella degli sketch. + +#: Base.java:1125 +#, 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}=Lo sketch "{0}" non pu\u00f2 essere usato.\nI nomi degli sketch possono contenere solo lettere e numeri\n(ASCII senza spazi e non possono iniziare con un numero).\nPer sbarazzarsi di questo messaggio, eliminare lo sketch da \n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignoro lo sketch con nome malformato + +#: Base.java:1202 +#, 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)=La libreria "{0}" non pu\u00f2 essere usata.\nI nomi delle librerie possono contenere solo lettere e numeri\n(ASCII senza spazi e non possono iniziare con un numero).\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignoro la libreria con nome malformato + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problema con la cartella dati + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Errore con la cartella dati di Arduino. + +#: Base.java:1440 +Settings\ issues=Problemi di configurazione + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino non pu\u00f2 essere eseguito perch\u00e9 non pu\u00f2\ncreare la cartella per memorizzare le tue impostazioni. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Hai dimenticato la tua cartella degli sketch + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino non pu\u00f2 essere eseguito perch\u00e9 non pu\u00f2\ncreare la cartella dove memorizzare gli sketch. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Seleziona (o crea) la cartella per gli sketch... + +#: Base.java:1647 +Problem\ Opening\ URL=Problema nell'apertura dell'URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Impossibile aprire l'URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problema nell'apertura della cartella + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Impossibile aprire la cartella\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=ambiente di sviluppo + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Messaggio + +#: Base.java:1842 +Warning=Attenzione + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Impossibile eliminare la vecchia versione di {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Impossibile sostituire {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Impossibile eliminare {0} + +#: EditorHeader.java:292 +New\ Tab=Nuova scheda + +#: EditorHeader.java:300 +Rename=Rinomina + +#: EditorHeader.java:326 +Previous\ Tab=Scheda precedente + +#: EditorHeader.java:340 +Next\ Tab=Scheda successiva + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verifica + +#: EditorToolbar.java:41 +Open=Apri + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nuova finestra di modifica + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Apri in un'altra finestra + +#: Platform.java:167 +No\ launcher\ available=Nessun launcher disponibile + +#: 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=Piattaforma non specificata, nessun laucher disponibile.\nPer abilitare l'apertura di URL o di cartelle, aggiungete una riga\n"launcher\=/path/to/app" a preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Impossibile leggere le impostazioni del tema dei colori.\nDovete reinstallare Processing. + +#: Preferences.java:80 +Browse=Sfoglia + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Catalano + +#: Preferences.java:87 +Chinese\ Simplified=Cinese semplificato + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Danese + +#: Preferences.java:90 +Dutch=Olandese + +#: Preferences.java:91 +English=Inglese + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Francese + +#: Preferences.java:94 +Filipino=Filippino + +#: Preferences.java:95 +Galician=Galiziano + +#: Preferences.java:96 +German=Tedesco + +#: Preferences.java:97 +Greek=Greco + +#: Preferences.java:98 +Hungarian=Ungherese + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Italiano + +#: Preferences.java:101 +Japanese=Giapponese + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Lettone + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Persiano + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Rumeno + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Spagnolo + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossibile leggere le impostazioni predefinite.\nE' necessario reinstallare Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Impossibile leggere le preferenze da {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Errore nella lettura delle preferenze + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Errore nella letture del file di preferenze. Per favore eliminare (spostare)\n{0} e riavviare Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Posizione della cartella degli sketch\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Selezionare una nuova posizione per la cartella degli Sketch + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +!\ \ (requires\ restart\ of\ Arduino)= + +#: Preferences.java:354 +Editor\ font\ size\:\ =Dimensioni font dell'editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Mostra output verboso durante\: + +#: Preferences.java:373 +compilation\ =compilazione + +#: Preferences.java:375 +upload=caricamento + +#: Preferences.java:384 +Verify\ code\ after\ upload=Verifica il codice dopo il caricamento + +#: Preferences.java:393 +Use\ external\ editor=Usa un editor esterno + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Controlla gli aggiornamenti all'avvio + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Aggiorna l'estensione degli sketch durante il salvataggio (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Associa automaticamente i file .ino con Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Ulteriori preferenze possono essere modificate direttamente nel file + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(modificabile solo quando Arduino non \u00e8 in esecuzione) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=sto ignorando la dimensione del font non valida {0} diff --git a/app/src/processing/app/Resources_ja.po b/app/src/processing/app/Resources_ja.po index 730eb86ac..d183817c9 100644 --- a/app/src/processing/app/Resources_ja.po +++ b/app/src/processing/app/Resources_ja.po @@ -1,5 +1,5 @@ # Japanese language resource for the Arduino IDE. -# Copyright (C) 2011 switch-science.com +# Copyright (C) 2011,2012 switch-science.com # This file is distributed under the same license as the Arduino IDE package. # Shigeru KANEMOTO . # @@ -8,151 +8,434 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2011-10-11 23:09+0900\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-04-22 01:32+0900\n" "Last-Translator: Shigeru KANEMOTO \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: SketchCode.java:83 +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "スケッチにファイルは追加されませんでした。" + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "スケッチにファイルを1個追加しました。" + +#: Editor.java:373 #, java-format -msgid "Error while loading code {0}" -msgstr "「{0}」からのコード読み込みの際にエラーが発生しました。" +msgid "{0} files added to the sketch." +msgstr "スケッチにファイルを{0}個追加しました。" -#: SketchCode.java:258 -#, java-format -msgid "" -"\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Processing,you may need to use Tools -> Fix Encoding & " -"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " -"todelete the bad characters to get rid of this warning." -msgstr "" -"「{0}」には、認識できない文字が含まれています。もしも、古いバージョンのIDEでこのスケッチを作成していた場合には、「ツール」メニューの「エンコーディングの修正」を実行する事によって、ファイルのエンコーディングをUTF-8に変更してください。そうでない場合には、これらの認識できない文字を手作業で削除していただく必要があります。" +#: Editor.java:484 +msgid "File" +msgstr "ファイル" -#: Preferences.java:76 UpdateCheck.java:108 -msgid "Yes" -msgstr "はい" +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "新規ファイル" -#: Preferences.java:77 UpdateCheck.java:108 -msgid "No" -msgstr "いいえ" +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "開く..." -#: Preferences.java:78 Sketch.java:589 Sketch.java:741 Sketch.java:1046 -#: Editor.java:2002 Editor.java:2083 Editor.java:2403 -msgid "Cancel" -msgstr "キャンセル" +#: Editor.java:503 +msgid "Sketchbook" +msgstr "スケッチブック" -#: Preferences.java:79 Sketch.java:589 Sketch.java:741 Sketch.java:1046 -#: Editor.java:2083 Editor.java:2403 -msgid "OK" -msgstr "" +#: Editor.java:509 +msgid "Examples" +msgstr "スケッチの例" -#: Preferences.java:80 -msgid "Browse" -msgstr "参照" +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "閉じる" -#: Preferences.java:148 -msgid "" -"Could not read default settings.\n" -"You'll need to reinstall Arduino." -msgstr "" -"既定の設定を読み込むことができませんでした。\n" -"Arduino IDEをもう一度インストールしてください。" +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "保存" -#: Preferences.java:178 Base.java:1857 Sketch.java:479 Sketch.java:485 -#: Sketch.java:500 Sketch.java:507 Sketch.java:530 Sketch.java:547 -#: Editor.java:2105 Editor.java:2116 Editor.java:2126 Editor.java:2144 -msgid "Error" -msgstr "エラー" +#: Editor.java:530 +msgid "Save As..." +msgstr "名前を付けて保存" -#: Preferences.java:180 -#, java-format -msgid "Could not read preferences from {0}" -msgstr "「{0}」から設定を読み込めませんでした。" +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "マイコンボードに書き込む" -#: Preferences.java:199 -msgid "Error reading preferences" -msgstr "設定ファイルを読み込む際にエラーが発生しました。" +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "書込装置を使って書き込む" -#: Preferences.java:201 -#, java-format -msgid "" -"Error reading the preferences file. Please delete (or move)\n" -"{0} and restart Arduino." -msgstr "" -"初期設定ファイルを読み込む際にエラーが発生しました。" -"「{0}」を削除または移動してから、Arduino IDEを再起動してください。" +#: Editor.java:556 +msgid "Page Setup" +msgstr "プリンタの設定..." -#: Preferences.java:217 Editor.java:584 +#: Editor.java:564 +msgid "Print" +msgstr "印刷..." + +#: Editor.java:576 Preferences.java:279 msgid "Preferences" msgstr "環境設定" -#: Preferences.java:237 -msgid "Sketchbook location:" -msgstr "スケッチブックの保存場所:" +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "終了" -#: Preferences.java:252 -msgid "Select new sketchbook location" -msgstr "スケッチブックの保存場所を決めてください" +#: Editor.java:600 +msgid "Sketch" +msgstr "スケッチ" -#: Preferences.java:276 -msgid "Editor font size: " -msgstr "エディタの文字の大きさ:" +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "検証・コンパイル" -#: Preferences.java:280 -msgid " (requires restart of Arduino)" -msgstr "(変更の反映には、Arduino IDEの再起動が必要。)" +#: Editor.java:629 +msgid "Import Library..." +msgstr "ライブラリを使用" -#: Preferences.java:293 -msgid "Show verbose output during: " -msgstr "より詳細な情報を表示する:" +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "スケッチのフォルダを表示" -#: Preferences.java:295 -msgid "compilation " -msgstr "コンパイル " +#: Editor.java:643 +msgid "Add File..." +msgstr "ファイルを追加..." -#: Preferences.java:297 -msgid "upload" -msgstr "書き込み" +#: Editor.java:656 +msgid "Tools" +msgstr "ツール" -#: Preferences.java:308 -msgid "Delete previous applet or application folder on export" -msgstr "エクスポートの前に、コンパイルで生成されたフォルダを削除する" +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "シリアルモニタ" -#: Preferences.java:318 -msgid "Use external editor" -msgstr "外部のエディタを使用する。" +#: Editor.java:682 +msgid "Board" +msgstr "マイコンボード" -#: Preferences.java:328 -msgid "Check for updates on startup" -msgstr "起動時に最新バージョンの有無をチェックする。" +#: Editor.java:690 +msgid "Serial Port" +msgstr "シリアルポート" -#: Preferences.java:337 -msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "スケッチを保存する際に、拡張子を.pdeから.inoに変更する" +#: Editor.java:695 +msgid "Programmer" +msgstr "書込装置" -#: Preferences.java:348 -msgid "Automatically associate .ino files with Arduino" -msgstr ".inoファイルをArduino IDEに関連づける。" +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "ブートローダを書き込む" -#: Preferences.java:359 -msgid "More preferences can be edited directly in the file" -msgstr "以下のファイルを直接編集すれば、より多くの設定を行うことができます。" +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenuがnullです" -#: Preferences.java:388 -msgid "(edit only when Arduino is not running)" -msgstr "(編集する際には、Arduino IDEを終了させておいてください。)" +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "nameがnullです" -#: Preferences.java:536 +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "ポート名の一覧を取得できませんでした。" + +#: Editor.java:1002 +msgid "Help" +msgstr "ヘルプ" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "初心者向けガイド" + +#: Editor.java:1049 +msgid "Environment" +msgstr "このソフトの使い方について" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "トラブルシューティング" + +#: Editor.java:1065 +msgid "Reference" +msgstr "リファレンス" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "リファレンスで検索" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "よくある質問" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Arduino.ccウェブサイトを開く" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Arduinoについて..." + +#: Editor.java:1116 +msgid "Edit" +msgstr "編集" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "元に戻す" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "やり直し" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "切り取り" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "コピー" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "フォーラム投稿形式でコピーする" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "HTML形式でコピーする" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "貼り付け" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "全て選択" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "コメント化・復帰" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "インデントを増やす" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "インデントを減らす" + +#: Editor.java:1220 +msgid "Find..." +msgstr "検索..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "次を検索" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "前を検索" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "選択されている文字列を検索" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "リファレンスで検索したい言葉を選んだ状態にしてから実行してください。" + +#: Editor.java:1823 #, java-format -msgid "ignoring invalid font size {0}" -msgstr "フォントサイズの指定「{0}」が異常なので無視します。" +msgid "No reference available for \"{0}\"" +msgstr "リファレンスマニュアルに「{0}」はありません。" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "スケッチをコンパイルしています..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "コンパイル終了。" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "変更内容を「{0}」に書き込みますか?" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" " +"閉じる前にスケッチに加えた変更内容を保存しますか?" +"

保存しないと、変更内容は失われます。" + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "キャンセル" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "保存しない" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "間違ったファイルを開きました。" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"このIDEは、ファイル名が拡張子.inoまたは.pdeで\n" +"終わるファイルだけを開くことができます。" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"「{0}」というファイルは、「{1}」という名前のフォルダの中にある必要がありま" +"す。自動的にこのフォルダを作って、ファイルを中に入れますか?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "移動中" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "エラー" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "「{0}」という名前のフォルダはすでに存在します。スケッチを開けません。" + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "スケッチフォルダを作成できません。" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "コピーするべきフォルダにファイルをコピーできませんでした。" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "スケッチを作成できません。" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "保存中です..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "保存しました。" + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "保存を中止しました。" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"シリアルポート「{0}」が存在しません。\n" +"シリアルポートを変更して、もう一度書き込みますか?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "マイコンボードに書き込んでいます..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "マイコンボードへの書き込みが完了しました。" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "書き込みを中止しました。" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "エクスポートを行う前に保存しますか?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "" +"エクスポートを中止しました。" +"エクスポートを行う前に保存する必要があります。" + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "マイコンボードにブートローダを書き込んでいます..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "ブートローダの書き込みが完了しました。" + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "ブートローダの書き込み中にエラーが発生しました。" + +#: Editor.java:2500 +msgid "Printing..." +msgstr "印刷しています..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "印刷が完了しました。" + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "印刷中にエラーが発生しました。" + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "印刷を中止しました。" + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "エラーの行番号「{0}」は範囲外です。" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "URLを開く" #: UpdateCheck.java:53 msgid "http://www.arduino.cc/latest.txt" -msgstr "" +msgstr "http://www.arduino.cc/latest.txt" #: UpdateCheck.java:103 msgid "" @@ -162,304 +445,85 @@ msgstr "" "Arduino IDEの新しいバージョンが入手可能になりました。\n" "ダウンロードページを開きますか?" +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "はい" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "いいえ" + #: UpdateCheck.java:111 msgid "Update" msgstr "更新" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" +msgstr "http://www.arduino.cc/en/Main/Software" -#: Base.java:181 -msgid "Non-fatal error while setting the Look & Feel." -msgstr "GUIの挙動を設定する際にエラーが発生しましたが、重大ではありません。" +#: FindReplace.java:80 +msgid "Find:" +msgstr "検索テキスト:" -#: Base.java:182 -msgid "The error message follows, however Arduino should run fine." -msgstr "エラーメッセージは以下の通りです。Arduino IDEの動作に問題はありません。" +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "置換テキスト:" -#: Base.java:217 -msgid "Problem Setting the Platform" -msgstr "プラットフォームを設定する際に問題が発生しました。" +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "大文字小文字を区別しない" -#: Base.java:218 -msgid "" -"An unknown error occurred while trying to load\n" -"platform-specific code for your machine." -msgstr "" -"プラットフォーム依存の機能を読み込む際に、\n" -"何らかのエラーが発生しました。" +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "行末を折り曲げる" -#: Base.java:229 -msgid "Please install JDK 1.5 or later" -msgstr "JDKのバージョン1.5以降をインストールしてください。" +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "全て置換" -#: Base.java:230 -msgid "" -"Arduino requires a full JDK (not just a JRE)\n" -"to run. Please install JDK 1.5 or later.\n" -"More information can be found in the reference." -msgstr "" -"Arduino IDEを実行するにはJDKが必要です。\n" -"JREでは動作しません。\n" -"JDKのバージョン1.5以降をインストールしてください。\n" -"詳しくはリファレンスマニュアルをご覧ください。" +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "置換" -#: Base.java:254 -msgid "Sketchbook folder disappeared" -msgstr "スケッチブックの保存場所フォルダが無くなってしまいました。" +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "置換して次" -#: Base.java:255 -msgid "" -"The sketchbook folder no longer exists.\n" -"Arduino will switch to the default sketchbook\n" -"location, and create a new sketchbook folder if\n" -"necessary. Arduino will then stop talking about\n" -"himself in the third person." -msgstr "" +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "前" -#: Base.java:529 -msgid "Time for a Break" -msgstr "そろそろ休みましょう" +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "検索" -#: Base.java:530 -msgid "" -"You've reached the limit for auto naming of new sketches\n" -"for the day. How about going for a walk instead?" -msgstr "" -"今日はもう、これ以上、新しいスケッチに自動的に名前を付ける\n" -"事ができません。そろそろ、お休みにしませんか?" +#: SerialMonitor.java:93 +msgid "Send" +msgstr "送信" -#: Base.java:534 -msgid "Sunshine" -msgstr "終わりにしましょう" +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "自動スクロール" -#: Base.java:535 -msgid "No really, time for some fresh air for you." -msgstr "先程も指摘したように、今日は頑張りすぎです。" +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "改行なし" -#: Base.java:630 -msgid "Open an Arduino sketch..." -msgstr "Arduinoのスケッチを開く..." +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "LFのみ" -#: Base.java:769 -msgid "" -" Are you " -"sure you want to Quit?

Closing the last open sketch will quit Arduino." -msgstr "" +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "CRのみ" -#: Base.java:779 Editor.java:594 -msgid "Quit" -msgstr "終了" +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "CRおよびLF" -#: Base.java:900 Editor.java:502 -msgid "Open..." -msgstr "開く..." - -#: Base.java:967 -msgid "Contributed" -msgstr "ユーザ提供" - -#: Base.java:1091 -msgid "Sketch Does Not Exist" -msgstr "スケッチが存在しません。" - -#: Base.java:1092 -msgid "" -"The selected sketch no longer exists.\n" -"You may need to restart Arduino to update\n" -"the sketchbook menu." -msgstr "" -"選択したスケッチが存在しません。\n" -"スケッチブックメニューを更新するにはArduino IDEを再起動して下さい。" - -#: Base.java:1121 -#, java-format -msgid "" -"The sketch \"{0}\" cannot be used.\n" -"Sketch names must contain only basic letters and numbers\n" -"(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 "" -"「{0}」という名前をスケッチに付けることはできません。\n" -"スケッチ名には半角文字と数字のみが使用可能です。\n" -"(ASCII文字のみ、スペースを除きます。数字で始まる名前は使えません。)\n" -"このメッセージを表示しないようにするには、「{1}」からスケッチを削除\n" -"して下さい。" - -#: Base.java:1128 -msgid "Ignoring sketch with bad name" -msgstr "使用できない名前のスケッチは無視します。" - -#: Base.java:1198 -#, java-format -msgid "" -"The library \"{0}\" cannot be used.\n" -"Library names must contain only basic letters and numbers.\n" -"(ASCII only and no spaces, and it cannot start with a number)" -msgstr "" -"「{0}」という名前のライブラリは使用できません。\n" -"ライブラリ名には半角文字と数字のみが使用可能です。\n" -"(ASCII文字のみ、スペースを除きます。数字で始まる名前は使えません。)" - -#: Base.java:1203 -msgid "Ignoring bad library name" -msgstr "使用できないファイル名のライブラリは無視します。" - -#: Base.java:1428 -msgid "Problem getting data folder" -msgstr "データフォルダを読み込めません。" - -#: Base.java:1429 -msgid "Error getting the Arduino data folder." -msgstr "Arduino IDEデータフォルダを読み込めません。" - -#: Base.java:1436 -msgid "Settings issues" -msgstr "設定に関する問題" - -#: Base.java:1437 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your settings." -msgstr "" -"設定を保存するためのフォルダを作成できないため、動作を停止します。" - -#: Base.java:1598 -msgid "You forgot your sketchbook" -msgstr "スケッチブックをどこかにやっちゃいましたね。" - -#: Base.java:1599 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your sketchbook." -msgstr "スケッチブックを保存するフォルダを作成できないため、動作を停止します。" - -#: Base.java:1619 -msgid "Select (or create new) folder for sketches..." -msgstr "スケッチを保存するフォルダを選択するか作成してください。" - -#: Base.java:1643 -msgid "Problem Opening URL" -msgstr "指定のURLを開くことができませんでした。" - -#: Base.java:1644 -#, java-format -msgid "" -"Could not open the URL\n" -"{0}" -msgstr "" -"URL「{0}」を開くことができませんでした。" - -#: Base.java:1667 -msgid "Problem Opening Folder" -msgstr "フォルダを開くことができませんでした。" - -#: Base.java:1668 -#, java-format -msgid "" -"Could not open the folder\n" -"{0}" -msgstr "" -"フォルダ「{0}」を開くことができませんでした。" - -#: Base.java:1781 -msgid "Guide_MacOSX.html" -msgstr "" - -#: Base.java:1783 -msgid "Guide_Windows.html" -msgstr "" - -#: Base.java:1785 -msgid "http://www.arduino.cc/playground/Learning/Linux" -msgstr "" - -#: Base.java:1790 -msgid "index.html" -msgstr "" - -#: Base.java:1795 -msgid "Guide_Environment.html" -msgstr "" - -#: Base.java:1800 -msgid "environment" -msgstr "" - -#: Base.java:1800 -msgid "platforms.html" -msgstr "" - -#: Base.java:1805 -msgid "Guide_Troubleshooting.html" -msgstr "" - -#: Base.java:1810 -msgid "FAQ.html" -msgstr "" - -#: Base.java:1822 -msgid "Message" -msgstr "メッセージ" - -#: Base.java:1838 -msgid "Warning" -msgstr "警告" - -#: Base.java:2192 -#, java-format -msgid "Could not remove old version of {0}" -msgstr "「{0}」の古いバージョンを削除できませんでした。" - -#: Base.java:2202 -#, java-format -msgid "Could not replace {0}" -msgstr "「{0}」を置き換える事ができませんでした。" - -#: Base.java:2243 Base.java:2266 -#, java-format -msgid "Could not delete {0}" -msgstr "「{0}」を削除できませんでした。" - -#: EditorToolbar.java:41 EditorToolbar.java:46 -msgid "Verify" -msgstr "検証" - -#: EditorToolbar.java:41 Editor.java:546 -msgid "Upload" -msgstr "マイコンボードに書き込む" - -#: EditorToolbar.java:41 Editor.java:494 -msgid "New" -msgstr "新規ファイル" - -#: EditorToolbar.java:41 -msgid "Open" -msgstr "開く" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:530 -#: Editor.java:2002 Editor.java:2406 -msgid "Save" -msgstr "保存" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:670 -msgid "Serial Monitor" -msgstr "シリアルモニタ" - -#: EditorToolbar.java:46 Editor.java:554 -msgid "Upload Using Programmer" -msgstr "書込装置を使って書き込む" - -#: EditorToolbar.java:46 -msgid "New Editor Window" -msgstr "新規ウィンドウ" - -#: EditorToolbar.java:46 -msgid "Open in Another Window" -msgstr "新規ウィンドウでファイルを開く" +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " bps" #: Serial.java:147 #, java-format @@ -498,89 +562,99 @@ msgstr "" msgid "Error inside Serial.{0}()" msgstr "Serial.{0}()でエラー" -#: Theme.java:52 +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "自動整形" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "整形の必要はありませんでした。" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "「)」が多すぎるため、自動整形を中止しました。" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "「(」が多すぎるため、自動整形を中止しました。" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "「}」が多すぎるため、自動整形を中止しました。" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "「{」が多すぎるため、自動整形を中止しました。" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "自動整形が完了しました。" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "エンコーディングを修正" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "未保存の変更を破棄してスケッチを読み込み直しますか?" + +#: tools/FixEncoding.java:77 msgid "" -"Could not read color theme settings.\n" -"You'll need to reinstall Processing." +"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" -"Arduino IDEを再インストールしてください。" +"エンコーディングを修正しようとしましたが、エラーが発生しました。\n" +"今ここで保存すると、修正前のスケッチをおかしな内容で上書きしてしまう\n" +"可能性があります。スケッチを開き直して、もう一度エンコーディングの\n" +"修正をしてみてください。" -#: EditorHeader.java:292 -msgid "New Tab" -msgstr "新規タブ" +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "スケッチをアーカイブする" -#: EditorHeader.java:300 -msgid "Rename" -msgstr "名前を変更" +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyyyMMdd" -#: EditorHeader.java:314 Sketch.java:595 -msgid "Delete" -msgstr "削除" +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "スケッチをアーカイブできませんでした。" -#: EditorHeader.java:326 -msgid "Previous Tab" -msgstr "前のタブ" +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"スケッチを保存できなかったため、スケッチのアーカイブを中止しました。" -#: EditorHeader.java:340 -msgid "Next Tab" -msgstr "次のタブ" +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "スケッチをアーカイブする名前:" -#: SerialMonitor.java:91 -msgid "Send" -msgstr "送信" +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "スケッチのアーカイブを中止しました" -#: SerialMonitor.java:108 -msgid "Autoscroll" -msgstr "自動スクロール" +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "「{0}」からコードを読み込む際にエラーが発生しました。" -#: SerialMonitor.java:110 -msgid "No line ending" -msgstr "改行なし" - -#: SerialMonitor.java:110 -msgid "Newline" -msgstr "LFのみ" - -#: SerialMonitor.java:110 -msgid "Carriage return" -msgstr "CRのみ" - -#: SerialMonitor.java:110 -msgid "Both NL & CR" -msgstr "CRおよびLF" - -#: SerialMonitor.java:128 SerialMonitor.java:131 -msgid " baud" -msgstr " bps" - -#: FindReplace.java:79 -msgid "Find:" -msgstr "検索テキスト:" - -#: FindReplace.java:81 -msgid "Replace with:" -msgstr "置換テキスト:" - -#: FindReplace.java:121 -msgid "Ignore Case" -msgstr "大文字小文字を区別しない" - -#: FindReplace.java:137 FindReplace.java:146 -msgid "Replace All" -msgstr "全て置換" - -#: FindReplace.java:138 FindReplace.java:145 Sketch.java:1050 -msgid "Replace" -msgstr "置換" - -#: FindReplace.java:139 FindReplace.java:144 -msgid "Replace & Find" -msgstr "置換して次" - -#: FindReplace.java:140 FindReplace.java:143 -msgid "Find" -msgstr "検索" +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"「{0}」には、認識できない文字が含まれています。もしも、古いバージョンのIDE" +"でこのスケッチを作成していた場合には、「ツール」メニューの「エンコーディン" +"グの修正」を実行する事によって、ファイルのエンコーディングをUTF-8に変更し" +"てください。そうでない場合には、これらの認識できない文字を手作業で削除して" +"いただく必要があります。" #: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 msgid "Sketch is Read-Only" @@ -612,11 +686,11 @@ msgstr "" #: Sketch.java:359 Sketch.java:366 Sketch.java:377 msgid "Problem with rename" -msgstr "名前を変更できませんでした。" +msgstr "スケッチの名前を変更できませんでした。" #: Sketch.java:360 msgid "The name cannot start with a period." -msgstr "この名前の先頭はピリオド「.」にしてはいけません。" +msgstr "スケッチの名前の先頭はピリオド「.」にしてはいけません。" #: Sketch.java:368 #, java-format @@ -629,10 +703,11 @@ msgid "" "(It may be time for your to graduate to a\n" "\"real\" programming environment)" msgstr "" +"スケッチのメインのファイルには、拡張子を指定できません。" #: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 msgid "Nope" -msgstr "ダメ。" +msgstr "エラー" #: Sketch.java:402 #, java-format @@ -690,6 +765,10 @@ msgstr "このスケッチを本当に削除しますか?" msgid "Are you sure you want to delete \"{0}\"?" msgstr "「{0}」を本当に削除しますか?" +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "削除" + #: Sketch.java:620 msgid "Couldn't do it" msgstr "それは実行できませんでした。" @@ -735,7 +814,7 @@ msgstr "" #: Sketch.java:750 msgid ".pde -> .ino" -msgstr "" +msgstr ".pdeから.inoへ" #: Sketch.java:829 msgid "Save sketch folder as..." @@ -751,7 +830,7 @@ msgstr "" #: Sketch.java:886 msgid "How very Borges of you" -msgstr "それはムリ。" +msgstr "それはムリです" #: Sketch.java:887 msgid "" @@ -766,10 +845,6 @@ msgid "Select an image or other data file to copy to your sketch" msgstr "" "画像など、スケッチの一部としてコピーして加えたいファイルを選択してください。" -#: Sketch.java:996 Editor.java:377 -msgid "One file added to the sketch." -msgstr "スケッチにファイルを1個追加しました。" - #: Sketch.java:1047 #, java-format msgid "Replace the existing version of {0}?" @@ -788,7 +863,7 @@ msgstr "既存の「{0}」というファイルを削除できませんでした #: Sketch.java:1078 msgid "You can't fool me" -msgstr "ヘンなことしちゃだめ。" +msgstr "ヘンなことしちゃだめです" #: Sketch.java:1079 msgid "" @@ -804,42 +879,38 @@ msgstr "" msgid "Could not add ''{0}'' to the sketch." msgstr "ファイル「{0}」をスケッチに加えることができませんでした。" -#: Sketch.java:1359 Sketch.java:1390 +#: Sketch.java:1393 Sketch.java:1424 msgid "Build folder disappeared or could not be written" msgstr "ビルド用のフォルダが消えてしまったか、書き込みができません。" -#: Sketch.java:1374 +#: Sketch.java:1408 msgid "Could not find main class" msgstr "メインのクラスが見つかりません。" -#: Sketch.java:1399 +#: Sketch.java:1433 #, java-format msgid "Uncaught exception type: {0}" msgstr "想定外の例外「{0}」が発生しました。" -#: Sketch.java:1431 +#: Sketch.java:1465 #, java-format msgid "Problem moving {0} to the build folder" msgstr "「{0}」をビルドフォルダに移動できませんでした。" -#: Sketch.java:1631 Editor.java:1828 -msgid "Compiling sketch..." -msgstr "スケッチをコンパイルしています…" - -#: Sketch.java:1645 +#: Sketch.java:1661 msgid "Uploading..." -msgstr "マイコンボードに書き込んでいます…" +msgstr "マイコンボードに書き込んでいます..." -#: Sketch.java:1668 +#: Sketch.java:1684 #, java-format msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" msgstr "コンパイル後のスケッチのサイズ:{0}バイト(最大容量{1}バイト)" -#: Sketch.java:1673 +#: Sketch.java:1689 msgid "Couldn't determine program size: {0}" msgstr "コンパイル後のサイズがわかりません:{0}" -#: Sketch.java:1678 +#: Sketch.java:1694 msgid "" "Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " "tips on reducing it." @@ -847,15 +918,15 @@ msgstr "" "スケッチが大きすぎます。" "http://www.arduino.cc/en/Guide/Troubleshooting#size には、小さくするコツが書いてあります。" -#: Sketch.java:1738 +#: Sketch.java:1754 msgid "Missing the */ from the end of a /* comment */" msgstr "「/* */」形式のコメントの「*/」がありません。" -#: Sketch.java:1780 +#: Sketch.java:1796 msgid "Sketch Disappeared" msgstr "スケッチが消滅してしまいました。" -#: Sketch.java:1781 +#: Sketch.java:1797 msgid "" "The sketch folder has disappeared.\n" " Will attempt to re-save in the same location,\n" @@ -865,11 +936,11 @@ msgstr "" "環境設定で指定している保存場所に保存し直します。\n" "このスケッチと一緒に保存していたファイルは失われるかもしれません。" -#: Sketch.java:1794 +#: Sketch.java:1810 msgid "Could not re-save sketch" msgstr "スケッチを保存し直すことができませんでした。" -#: Sketch.java:1795 +#: Sketch.java:1811 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." @@ -878,31 +949,19 @@ msgstr "" "保存先に問題がある可能性があります。\n" "別のテキストエディタでスケッチを開き、コードをコピー&ペーストして別のファイルに保存することをおすすめします。" -#: Sketch.java:2044 +#: Sketch.java:2060 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" "They should also be less less than 64 characters long." msgstr "" -"都合により、スケッチの名前を変更しました。" -"スケッチの名前は、ASCII文字および数字(先頭を除く)であり、" -"64文字以下であることが必要です。" - -#: EditorConsole.java:147 -msgid "Console Error" -msgstr "コンソールの異常" - -#: EditorConsole.java:148 -msgid "" -"A problem occurred while trying to open the\n" -"files used to store the console output." -msgstr "" -"コンソール出力を保存するファイルを開こうとしたら、\n" -"問題が発生しました。" +"都合により、スケッチの名前を変更しました。\n" +"スケッチの名前に使える文字は半角英数字です(数字は先頭を除く)。\n" +"また、64文字以下であることが必要です。" #: debug/Uploader.java:52 msgid "https://developer.berlios.de/bugs/?group_id=3590" -msgstr "" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" #: debug/Uploader.java:54 debug/Compiler.java:43 #, java-format @@ -942,26 +1001,26 @@ msgstr "" #: debug/Compiler.java:41 msgid "http://code.google.com/p/arduino/issues/list" -msgstr "" +msgstr "http://code.google.com/p/arduino/issues/list" #: debug/Compiler.java:79 msgid "No board selected; please choose a board from the Tools > Board menu." msgstr "マイコンボードが選ばれていません。「ツール」メニューの「マイコンボード」の選択肢から、マイコンボードを選んでください。" -#: debug/Compiler.java:346 +#: debug/Compiler.java:422 #, java-format msgid "{0} returned {1}" msgstr "{0}が{1}を返しました。" -#: debug/Compiler.java:350 +#: debug/Compiler.java:426 msgid "Error compiling." msgstr "コンパイル時にエラーが発生しました。" -#: debug/Compiler.java:389 +#: debug/Compiler.java:465 msgid "Please import the SPI library from the Sketch > Import Library menu." msgstr "「スケッチ」メニューの「ライブラリを使用」で、SPIライブラリを読み込んでください。" -#: debug/Compiler.java:390 +#: debug/Compiler.java:466 msgid "" "\n" "As of Arduino 0019, the Ethernet library depends on the SPI library.\n" @@ -974,11 +1033,11 @@ msgstr "" "Ethernetライブラリまたはその他の、SPIライブラリに依存するライブラリを使用しているようですね。\n" "\n" -#: debug/Compiler.java:395 +#: debug/Compiler.java:471 msgid "The 'BYTE' keyword is no longer supported." msgstr "「BYTE」キーワードは、使用できなくなりました。" -#: debug/Compiler.java:396 +#: debug/Compiler.java:472 msgid "" "\n" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" @@ -990,11 +1049,11 @@ msgstr "" "Serial.write()を使用してください。\n" "\n" -#: debug/Compiler.java:401 +#: debug/Compiler.java:477 msgid "The Server class has been renamed EthernetServer." msgstr "「Server」クラスは「EthernetServer」に名称変更されました。" -#: debug/Compiler.java:402 +#: debug/Compiler.java:478 msgid "" "\n" "As of Arduino 1.0, the Server class in the Ethernet library has been renamed " @@ -1005,11 +1064,11 @@ msgstr "" "Arduino 1.0以降、Ethernetライブラリの「Server」クラスは、「EthernetServer」に名称変更されました。\n" "\n" -#: debug/Compiler.java:407 +#: debug/Compiler.java:483 msgid "The Client class has been renamed EthernetClient." msgstr "「Client」クラスは「EthernetClient」に名称変更されました。" -#: debug/Compiler.java:408 +#: debug/Compiler.java:484 msgid "" "\n" "As of Arduino 1.0, the Client class in the Ethernet library has been renamed " @@ -1020,11 +1079,11 @@ msgstr "" "Arduino 1.0以降、Ethernetライブラリの「Client」クラスは、「EthernetClient」に名称変更されました。\n" "\n" -#: debug/Compiler.java:413 +#: debug/Compiler.java:489 msgid "The Udp class has been renamed EthernetUdp." msgstr "「Udp」クラスは「EthernetUdp」に名称変更されました。" -#: debug/Compiler.java:414 +#: debug/Compiler.java:490 msgid "" "\n" "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " @@ -1035,11 +1094,11 @@ msgstr "" "Arduino 1.0以降、Ethernetライブラリの「Udp」クラスは、「EthernetUdp」に名称変更されました。\n" "\n" -#: debug/Compiler.java:419 +#: debug/Compiler.java:495 msgid "Wire.send() has been renamed Wire.write()." msgstr "「Wire.send()」は、「Wire.write()」に名称変更されました。" -#: debug/Compiler.java:420 +#: debug/Compiler.java:496 msgid "" "\n" "As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " @@ -1050,11 +1109,11 @@ msgstr "" "Arduino 1.0以降、「Wire.send()」関数は、他のライブラリとの整合性を高めるため、「Wire.write()」に名称変更されました。" "\n" -#: debug/Compiler.java:425 +#: debug/Compiler.java:501 msgid "Wire.receive() has been renamed Wire.read()." msgstr "「Wire.receive()」は、「Wire.read()」に名称変更されました。" -#: debug/Compiler.java:426 +#: debug/Compiler.java:502 msgid "" "\n" "As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " @@ -1065,432 +1124,303 @@ msgstr "" "Arduino 1.0以降、「Wire.receive()」関数は、他のライブラリとの整合性を高めるため、「Wire.read()」に名称変更されました。" "\n" -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:913 -msgid "No changes necessary for Auto Format." -msgstr "整形の必要はありませんでした。" +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "コンソールの異常" -#: tools/Archiver.java:48 -msgid "Archive Sketch" -msgstr "スケッチをアーカイブする。" - -#: tools/Archiver.java:59 -msgid "yyMMdd" -msgstr "yyyyMMdd" - -#: tools/Archiver.java:74 -msgid "Couldn't archive sketch" -msgstr "スケッチをアーカイブできませんでした。" - -#: tools/Archiver.java:75 +#: EditorConsole.java:153 msgid "" -"Archiving the sketch has been canceled because\n" -"the sketch couldn't save properly." +"A problem occurred while trying to open the\n" +"files used to store the console output." msgstr "" -"スケッチを保存できなかったため、スケッチのアーカイブは取りやめました。" +"コンソール出力を保存するファイルを開く際に、\n" +"問題が発生しました。" -#: tools/Archiver.java:109 -msgid "Archive sketch as:" -msgstr "スケッチをアーカイブする名前:" +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "GUIの挙動の設定中にエラーが発生しましたが、重大ではありません。" -#: tools/Archiver.java:139 -msgid "Archive sketch canceled." -msgstr "スケッチのアーカイブを取りやめました" +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "エラーメッセージは以下の通りです。Arduino IDEの動作に問題はありません。" -#: tools/AutoFormat.java:91 -msgid "Auto Format" -msgstr "自動整形" +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "プラットフォームを設定する際に問題が発生しました。" -#: tools/AutoFormat.java:919 -msgid "Auto Format Canceled: Too many right parentheses." -msgstr "「)」が多すぎるため、自動整形を取りやめました。" - -#: tools/AutoFormat.java:922 -msgid "Auto Format Canceled: Too many left parentheses." -msgstr "「(」が多すぎるため、自動整形を取りやめました。" - -#: tools/AutoFormat.java:928 -msgid "Auto Format Canceled: Too many right curly braces." -msgstr "「}」が多すぎるため、自動整形を取りやめました。" - -#: tools/AutoFormat.java:931 -msgid "Auto Format Canceled: Too many left curly braces." -msgstr "「{」が多すぎるため、自動整形を取りやめました。" - -#: tools/AutoFormat.java:941 -msgid "Auto Format finished." -msgstr "自動整形が完了しました。" - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -msgid "Fix Encoding & Reload" -msgstr "エンコーディングを修正" - -#: tools/FixEncoding.java:57 -msgid "Discard all changes and reload sketch?" -msgstr "未保存の変更を破棄してスケッチを読み込み直しますか?" - -#: tools/FixEncoding.java:77 +#: Base.java:221 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" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." msgstr "" -"エンコーディングを修正しようとしましたが、エラーが発生しました。\n" -"今ここで保存すると、修正前のスケッチをおかしな内容で上書きしてしまう\n" -"可能性があります。スケッチを開き直して、もう一度エンコーディングの\n" -"修正をしてみてください。" +"プラットフォーム依存の機能を読み込む際に、\n" +"何らかのエラーが発生しました。" -#: Editor.java:374 -msgid "No files were added to the sketch." -msgstr "スケッチにファイルは追加されませんでした。" +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "JDKのバージョン1.5以降をインストールしてください。" -#: Editor.java:381 -#, java-format -msgid "{0} files added to the sketch." -msgstr "スケッチにファイルを{0}個追加しました。" - -#: Editor.java:492 -msgid "File" -msgstr "ファイル" - -#: Editor.java:511 -msgid "Sketchbook" -msgstr "スケッチブック" - -#: Editor.java:517 -msgid "Examples" -msgstr "スケッチ例" - -#: Editor.java:522 Editor.java:1962 -msgid "Close" -msgstr "閉じる" - -#: Editor.java:538 -msgid "Save As..." -msgstr "名前を付けて保存" - -#: Editor.java:564 -msgid "Page Setup" -msgstr "プリンタの設定..." - -#: Editor.java:572 -msgid "Print" -msgstr "印刷..." - -#: Editor.java:608 -msgid "Sketch" -msgstr "スケッチ" - -#: Editor.java:610 -msgid "Verify / Compile" -msgstr "検証・コンパイル" - -#: Editor.java:637 -msgid "Import Library..." -msgstr "ライブラリを使用" - -#: Editor.java:642 -msgid "Show Sketch Folder" -msgstr "スケッチのフォルダを表示" - -#: Editor.java:651 -msgid "Add File..." -msgstr "ファイルを追加..." - -#: Editor.java:664 -msgid "Tools" -msgstr "ツール" - -#: Editor.java:690 -msgid "Board" -msgstr "マイコンボード" - -#: Editor.java:698 -msgid "Serial Port" -msgstr "シリアルポート" - -#: Editor.java:703 -msgid "Programmer" -msgstr "書込装置" - -#: Editor.java:707 -msgid "Burn Bootloader" -msgstr "ブートローダを書き込む" - -#: Editor.java:931 -msgid "serialMenu is null" -msgstr "serialMenuがカラです" - -#: Editor.java:935 Editor.java:942 -msgid "name is null" -msgstr "名前がカラです" - -#: Editor.java:994 -msgid "error retrieving port list" -msgstr "ポート名の一覧を取得できませんでした。" - -#: Editor.java:1010 -msgid "Help" -msgstr "ヘルプ" - -#: Editor.java:1049 -msgid "Getting Started" -msgstr "初心者向けガイド" - -#: Editor.java:1057 -msgid "Environment" -msgstr "このソフトの使い方について" - -#: Editor.java:1065 -msgid "Troubleshooting" -msgstr "トラブルシューティング" - -#: Editor.java:1073 -msgid "Reference" -msgstr "リファレンス" - -#: Editor.java:1081 Editor.java:2713 -msgid "Find in Reference" -msgstr "リファレンスで検索" - -#: Editor.java:1091 -msgid "Frequently Asked Questions" -msgstr "よくある質問" - -#: Editor.java:1099 -msgid "Visit Arduino.cc" -msgstr "Arduino.ccウェブサイトを開く" - -#: Editor.java:1102 -msgid "http://arduino.cc/" +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." msgstr "" +"Arduino IDEを実行するにはJDKが必要です。\n" +"JREでは動作しません。\n" +"JDKのバージョン1.5以降をインストールしてください。\n" +"詳しくはリファレンスマニュアルをご覧ください。" -#: Editor.java:1110 -msgid "About Arduino" -msgstr "Arduinoについて..." +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "スケッチブックの保存場所フォルダが無くなってしまいました。" -#: Editor.java:1124 -msgid "Edit" -msgstr "編集" - -#: Editor.java:1127 Editor.java:1326 -msgid "Undo" -msgstr "元に戻す" - -#: Editor.java:1131 Editor.java:1361 -msgid "Redo" -msgstr "やり直し" - -#: Editor.java:1139 Editor.java:2637 -msgid "Cut" -msgstr "切り取り" - -#: Editor.java:1147 Editor.java:2645 -msgid "Copy" -msgstr "コピー" - -#: Editor.java:1155 Editor.java:2653 -msgid "Copy for Forum" -msgstr "フォーラム投稿形式でコピーする" - -#: Editor.java:1167 Editor.java:2661 -msgid "Copy as HTML" -msgstr "HTML形式でコピーする" - -#: Editor.java:1179 Editor.java:2669 -msgid "Paste" -msgstr "貼り付け" - -#: Editor.java:1188 Editor.java:2677 -msgid "Select All" -msgstr "全て選択" - -#: Editor.java:1198 Editor.java:2687 -msgid "Comment/Uncomment" -msgstr "コメント化・復帰" - -#: Editor.java:1206 Editor.java:2695 -msgid "Increase Indent" -msgstr "インデントを増やす" - -#: Editor.java:1214 Editor.java:2703 -msgid "Decrease Indent" -msgstr "インデントを減らす" - -#: Editor.java:1224 -msgid "Find..." -msgstr "検索..." - -#: Editor.java:1239 -msgid "Find Next" -msgstr "次を検索" - -#: Editor.java:1801 -msgid "First select a word to find in the reference." -msgstr "リファレンスで検索したい言葉を選んだ状態にしてから実行してください。" - -#: Editor.java:1808 -#, java-format -msgid "No reference available for \"{0}\"" -msgstr "リファレンスマニュアルに「{0}」はありません。" - -#: Editor.java:1811 -#, java-format -msgid "{0}.html" +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." msgstr "" +"スケッチブックの保存場所フォルダが有りません。\n" +"デフォルトの場所にスケッチブックの保存場所\n" +"フォルダを作成し、今後はこちらを使用します。" -#: Editor.java:1849 Editor.java:1866 -msgid "Done compiling." -msgstr "コンパイル終了。" +#: Base.java:532 +msgid "Time for a Break" +msgstr "そろそろ休みましょう" -#: Editor.java:1958 -#, java-format -msgid "Save changes to \"{0}\"? " -msgstr "変更内容を「{0}」に書き込みますか?" +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"今日はもう、これ以上、新しいスケッチに自動的に名前を付ける\n" +"事ができません。そろそろ、お休みにしませんか?" -#: Editor.java:1991 +#: Base.java:537 +msgid "Sunshine" +msgstr "終わりにしましょう" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "先程も指摘したように、今日は頑張りすぎです。" + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Arduinoのスケッチを開く..." + +#: Base.java:772 msgid "" " Do you " -"want to save changes to this sketch
before closing?

If you don't " -"save, your changes will be lost." +"{ font: 11pt \"Lucida Grande\"; margin-top: 8px } Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." msgstr "" " " -"閉じる前にスケッチに加えた変更内容を保存しますか?" -"

保存しないと、変更内容は失われます。" +"本当に終了しますか?

開かれている最後のスケッチを閉じると、Arduino IDEは終了します。" -#: Editor.java:2002 -msgid "Don't Save" -msgstr "保存しない" +#: Base.java:970 +msgid "Contributed" +msgstr "ユーザ提供" -#: Editor.java:2074 -msgid "Bad file selected" -msgstr "間違ったファイルを開きました。" +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "スケッチが存在しません。" -#: Editor.java:2075 +#: Base.java:1096 msgid "" -"Processing can only open its own sketches\n" -"and other files ending in .ino or .pde" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." msgstr "" -"このIDEは、ファイル名が拡張子.inoまたは.pdeで\n" -"終わるファイルだけを開くことができます。" +"選択したスケッチが存在しません。\n" +"スケッチブックメニューを更新するにはArduino IDEを再起動して下さい。" -#: Editor.java:2085 +#: Base.java:1125 #, java-format msgid "" -"The file \"{0}\" needs to be inside\n" -"a sketch folder named \"{1}\".\n" -"Create this folder, move the file, and continue?" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" -"「{0}」というファイルは、「{1}」という名前のフォルダの中にある必要がありま" -"す。自動的にこのフォルダを作って、ファイルを中に入れますか?" +"「{0}」という名前をスケッチに付けることはできません。\n" +"スケッチ名には半角文字と数字のみが使用可能です。\n" +"(ASCII文字のみ、スペースを除きます。数字で始まる名前は使えません。)\n" +"このメッセージを表示しないようにするには、「{1}」からスケッチを削除\n" +"して下さい。" -#: Editor.java:2094 -msgid "Moving" -msgstr "移動中" +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "使用できない名前のスケッチは無視します。" -#: Editor.java:2107 -#, java-format -msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "「{0}」という名前のフォルダはすでに存在します。スケッチを開けません。" - -#: Editor.java:2117 -msgid "Could not create the sketch folder." -msgstr "スケッチフォルダを作成できません。" - -#: Editor.java:2126 -msgid "Could not copy to a proper location." -msgstr "コピーするべきフォルダにファイルをコピーできませんでした。" - -#: Editor.java:2144 -msgid "Could not create the sketch." -msgstr "スケッチを作成できません。" - -#: Editor.java:2151 -#, java-format -msgid "{0} | Arduino {1}" -msgstr "" - -#: Editor.java:2208 Editor.java:2246 -msgid "Saving..." -msgstr "保存中です..." - -#: Editor.java:2213 Editor.java:2249 -msgid "Done Saving." -msgstr "保存しました。" - -#: Editor.java:2255 -msgid "Save Canceled." -msgstr "保存を中止しました。" - -#: Editor.java:2281 +#: Base.java:1202 #, java-format msgid "" -"Serial port {0} not found.\n" -"Retry the upload with another serial port?" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" msgstr "" -"シリアルポート「{0}」が存在しません。\n" -"シリアルポートを変更して、もう一度書き込みますか?" +"「{0}」という名前のライブラリは使用できません。\n" +"ライブラリ名には半角文字と数字のみが使用可能です。\n" +"(ASCII文字のみ、スペースを除きます。数字で始まる名前は使えません。)" -#: Editor.java:2316 -msgid "Uploading to I/O Board..." -msgstr "マイコンボードに書き込んでいます…" +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "使用できないファイル名のライブラリは無視します。" -#: Editor.java:2333 Editor.java:2369 -msgid "Done uploading." -msgstr "マイコンボードへの書き込みが完了しました。" +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "データフォルダを読み込めません。" -#: Editor.java:2341 Editor.java:2377 -msgid "Upload canceled." -msgstr "書き込みを取りやめました。" +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Arduino IDEデータフォルダを読み込めません。" -#: Editor.java:2405 -msgid "Save changes before export?" -msgstr "エクスポートを行う前に保存しますか?" +#: Base.java:1440 +msgid "Settings issues" +msgstr "設定に関する問題" -#: Editor.java:2420 -msgid "Export canceled, changes must first be saved." +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." msgstr "" -"エクスポートを取りやめました。" -"エクスポートを行う前に保存する必要があります。" +"設定を保存するためのフォルダを作成できないため、動作を停止します。" -#: Editor.java:2442 -msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "マイコンボードにブートローダを書き込んでいます…" +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "スケッチブック行方不明" -#: Editor.java:2448 -msgid "Done burning bootloader." -msgstr "ブートローダの書き込みが完了しました。" +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"スケッチブックを保存するフォルダを作成できないので、\n" +"Arduino IDEは動作できません。" -#: Editor.java:2450 Editor.java:2454 Editor.java:2458 -msgid "Error while burning bootloader." -msgstr "ブートローダを書き込もうとしましたが、エラーが発生しました。" +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "スケッチを保存するフォルダを選択するか作成してください。" -#: Editor.java:2485 -msgid "Printing..." -msgstr "印刷しています..." +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "指定のURLを開くことができませんでした。" -#: Editor.java:2502 -msgid "Done printing." -msgstr "印刷が完了しました。" - -#: Editor.java:2505 -msgid "Error while printing." -msgstr "印刷中にエラーが発生しました。" - -#: Editor.java:2509 -msgid "Printing canceled." -msgstr "印刷を取りやめました。" - -#: Editor.java:2557 +#: Base.java:1648 #, java-format -msgid "Bad error line: {0}" -msgstr "エラーの行番号「{0}」は範囲外です。" +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"URL「{0}」を開くことができませんでした。" -#: Editor.java:2626 -msgid "Open URL" -msgstr "URLを開く" +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "フォルダを開くことができませんでした。" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"フォルダ「{0}」を開くことができませんでした。" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "environment" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "メッセージ" + +#: Base.java:1842 +msgid "Warning" +msgstr "警告" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "「{0}」の古いバージョンを削除できませんでした。" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "「{0}」を置き換える事ができませんでした。" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "「{0}」を削除できませんでした。" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "新規タブ" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "名前を変更" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "前のタブ" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "次のタブ" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "検証" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "開く" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "新規ウィンドウ" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "新規ウィンドウでファイルを開く" #: Platform.java:167 msgid "No launcher available" @@ -1505,3 +1435,218 @@ msgstr "" "外部プログラム起動ツールが有りません。" "URLやフォルダを自動的に開く機能を有効にするには、" "preferences.txtに\"launcher=/path/to/app\"の設定行を追加してください。" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"カラーテーマの設定を読み込めません。\n" +"Arduino IDEを再インストールしてください。" + +#: Preferences.java:80 +msgid "Browse" +msgstr "参照" + +#: Preferences.java:83 +msgid "System Default" +msgstr "パソコンの設定に従う" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "カタルーニャ語" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "中国語(簡体字)" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "中国語(繁体字)" + +#: Preferences.java:89 +msgid "Danish" +msgstr "デンマーク語" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "オランダ語" + +#: Preferences.java:91 +msgid "English" +msgstr "英語" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "フランス語" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "フィリピン語" + +#: Preferences.java:95 +msgid "Galician" +msgstr "ガリシア語" + +#: Preferences.java:96 +msgid "German" +msgstr "ドイツ語" + +#: Preferences.java:97 +msgid "Greek" +msgstr "ギリシア語" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "ハンガリー語" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "イタリア語" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "日本語" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "ラトビア語" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "ペルシャ語" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "ポルトガル語" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "ルーマニア語" + +#: Preferences.java:110 +msgid "Russian" +msgstr "ロシア語" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "スペイン語" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"既定の設定を読み込むことができませんでした。\n" +"Arduino IDEをもう一度インストールしてください。" + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "「{0}」から設定を読み込めませんでした。" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "設定ファイルを読み込む際にエラーが発生しました。" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"初期設定ファイルを読み込む際にエラーが発生しました。" +"「{0}」を削除または移動してから、Arduino IDEを再起動してください。" + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "スケッチブックの保存場所:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "スケッチブックの保存場所を決める" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "言語設定:" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " 変更の反映にはArduino IDEの再起動が必要" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "エディタの文字の大きさ:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "より詳細な情報を表示する:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "コンパイル " + +#: Preferences.java:375 +msgid "upload" +msgstr "書き込み" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "書き込みを検証する" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "外部のエディタを使用する" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "起動時に最新バージョンの有無をチェックする" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "スケッチを保存する際に、拡張子を.pdeから.inoに変更する" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr ".inoファイルをArduino IDEに関連づける" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "以下のファイルを直接編集すれば、より多くの設定を行うことができます。" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "編集する際には、Arduino IDEを終了させておいてください。" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "フォントサイズの指定「{0}」が異常なので無視します。" diff --git a/app/src/processing/app/Resources_ja.properties b/app/src/processing/app/Resources_ja.properties index 7018d0498..26be90028 100644 --- a/app/src/processing/app/Resources_ja.properties +++ b/app/src/processing/app/Resources_ja.properties @@ -1,294 +1,375 @@ # Japanese language resource for the Arduino IDE. -# Copyright (C) 2011 switch-science.com +# Copyright (C) 2011,2012 switch-science.com # This file is distributed under the same license as the Arduino IDE package. # Shigeru KANEMOTO . # #, fuzzy -!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2011-10-11 23\:09+0900\nPO-Revision-Date\: YEAR-MO-DA HO\:MI+ZONE\nLast-Translator\: Shigeru KANEMOTO \nLanguage-Team\: \nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\n +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-04-22 01\:32+0900\nLast-Translator\: Shigeru KANEMOTO \nLanguage-Team\: \nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\n -#: SketchCode.java:83 +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u306f\u8ffd\u52a0\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002 + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u30921\u500b\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:373 #, java-format -Error\ while\ loading\ code\ {0}=\u300c{0}\u300d\u304b\u3089\u306e\u30b3\u30fc\u30c9\u8aad\u307f\u8fbc\u307f\u306e\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 +{0}\ files\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u3092{0}\u500b\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002 -#: SketchCode.java:258 -#, java-format -"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u300c{0}\u300d\u306b\u306f\u3001\u8a8d\u8b58\u3067\u304d\u306a\u3044\u6587\u5b57\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u3002\u3082\u3057\u3082\u3001\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306eIDE\u3067\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u4f5c\u6210\u3057\u3066\u3044\u305f\u5834\u5408\u306b\u306f\u3001\u300c\u30c4\u30fc\u30eb\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\u4fee\u6b63\u300d\u3092\u5b9f\u884c\u3059\u308b\u4e8b\u306b\u3088\u3063\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092UTF-8\u306b\u5909\u66f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305d\u3046\u3067\u306a\u3044\u5834\u5408\u306b\u306f\u3001\u3053\u308c\u3089\u306e\u8a8d\u8b58\u3067\u304d\u306a\u3044\u6587\u5b57\u3092\u624b\u4f5c\u696d\u3067\u524a\u9664\u3057\u3066\u3044\u305f\u3060\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 +#: Editor.java:484 +File=\u30d5\u30a1\u30a4\u30eb -#: Preferences.java:76 UpdateCheck.java:108 -Yes=\u306f\u3044 +#: Editor.java:486 EditorToolbar.java:41 +New=\u65b0\u898f\u30d5\u30a1\u30a4\u30eb -#: Preferences.java:77 UpdateCheck.java:108 -No=\u3044\u3044\u3048 +#: Editor.java:494 Base.java:903 +Open...=\u958b\u304f... -#: Preferences.java:78 Sketch.java:589 Sketch.java:741 Sketch.java:1046 -#: Editor.java:2002 Editor.java:2083 Editor.java:2403 -Cancel=\u30ad\u30e3\u30f3\u30bb\u30eb +#: Editor.java:503 +Sketchbook=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af -#: Preferences.java:79 Sketch.java:589 Sketch.java:741 Sketch.java:1046 -#: Editor.java:2083 Editor.java:2403 -!OK= +#: Editor.java:509 +Examples=\u30b9\u30b1\u30c3\u30c1\u306e\u4f8b -#: Preferences.java:80 -Browse=\u53c2\u7167 +#: Editor.java:514 Editor.java:1977 +Close=\u9589\u3058\u308b -#: Preferences.java:148 -Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u65e2\u5b9a\u306e\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\nArduino IDE\u3092\u3082\u3046\u4e00\u5ea6\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u4fdd\u5b58 -#: Preferences.java:178 Base.java:1857 Sketch.java:479 Sketch.java:485 -#: Sketch.java:500 Sketch.java:507 Sketch.java:530 Sketch.java:547 -#: Editor.java:2105 Editor.java:2116 Editor.java:2126 Editor.java:2144 -Error=\u30a8\u30e9\u30fc +#: Editor.java:530 +Save\ As...=\u540d\u524d\u3092\u4ed8\u3051\u3066\u4fdd\u5b58 -#: Preferences.java:180 -#, java-format -Could\ not\ read\ preferences\ from\ {0}=\u300c{0}\u300d\u304b\u3089\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3080 -#: Preferences.java:199 -Error\ reading\ preferences=\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u66f8\u8fbc\u88c5\u7f6e\u3092\u4f7f\u3063\u3066\u66f8\u304d\u8fbc\u3080 -#: Preferences.java:201 -#, java-format -Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u521d\u671f\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u300c{0}\u300d\u3092\u524a\u9664\u307e\u305f\u306f\u79fb\u52d5\u3057\u3066\u304b\u3089\u3001Arduino IDE\u3092\u518d\u8d77\u52d5\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +#: Editor.java:556 +Page\ Setup=\u30d7\u30ea\u30f3\u30bf\u306e\u8a2d\u5b9a... -#: Preferences.java:217 Editor.java:584 +#: Editor.java:564 +Print=\u5370\u5237... + +#: Editor.java:576 Preferences.java:279 Preferences=\u74b0\u5883\u8a2d\u5b9a -#: Preferences.java:237 -Sketchbook\ location\:=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\uff1a +#: Editor.java:586 Base.java:782 +Quit=\u7d42\u4e86 -#: Preferences.java:252 -Select\ new\ sketchbook\ location=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\u3092\u6c7a\u3081\u3066\u304f\u3060\u3055\u3044 +#: Editor.java:600 +Sketch=\u30b9\u30b1\u30c3\u30c1 -#: Preferences.java:276 -Editor\ font\ size\:\ =\u30a8\u30c7\u30a3\u30bf\u306e\u6587\u5b57\u306e\u5927\u304d\u3055\uff1a +#: Editor.java:602 +Verify\ /\ Compile=\u691c\u8a3c\u30fb\u30b3\u30f3\u30d1\u30a4\u30eb -#: Preferences.java:280 -\ \ (requires\ restart\ of\ Arduino)=\uff08\u5909\u66f4\u306e\u53cd\u6620\u306b\u306f\u3001Arduino IDE\u306e\u518d\u8d77\u52d5\u304c\u5fc5\u8981\u3002\uff09 +#: Editor.java:629 +Import\ Library...=\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528 -#: Preferences.java:293 -Show\ verbose\ output\ during\:\ =\u3088\u308a\u8a73\u7d30\u306a\u60c5\u5831\u3092\u8868\u793a\u3059\u308b\uff1a +#: Editor.java:634 +Show\ Sketch\ Folder=\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u8868\u793a -#: Preferences.java:295 -compilation\ =\u30b3\u30f3\u30d1\u30a4\u30eb +#: Editor.java:643 +Add\ File...=\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0... -#: Preferences.java:297 -upload=\u66f8\u304d\u8fbc\u307f +#: Editor.java:656 +Tools=\u30c4\u30fc\u30eb -#: Preferences.java:308 -Delete\ previous\ applet\ or\ application\ folder\ on\ export=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u306e\u524d\u306b\u3001\u30b3\u30f3\u30d1\u30a4\u30eb\u3067\u751f\u6210\u3055\u308c\u305f\u30d5\u30a9\u30eb\u30c0\u3092\u524a\u9664\u3059\u308b +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u30b7\u30ea\u30a2\u30eb\u30e2\u30cb\u30bf -#: Preferences.java:318 -Use\ external\ editor=\u5916\u90e8\u306e\u30a8\u30c7\u30a3\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3002 +#: Editor.java:682 +Board=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9 -#: Preferences.java:328 -Check\ for\ updates\ on\ startup=\u8d77\u52d5\u6642\u306b\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6709\u7121\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3002 +#: Editor.java:690 +Serial\ Port=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8 -#: Preferences.java:337 -Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u969b\u306b\u3001\u62e1\u5f35\u5b50\u3092.pde\u304b\u3089.ino\u306b\u5909\u66f4\u3059\u308b +#: Editor.java:695 +Programmer=\u66f8\u8fbc\u88c5\u7f6e -#: Preferences.java:348 -Automatically\ associate\ .ino\ files\ with\ Arduino=.ino\u30d5\u30a1\u30a4\u30eb\u3092Arduino IDE\u306b\u95a2\u9023\u3065\u3051\u308b\u3002 +#: Editor.java:699 +Burn\ Bootloader=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3080 -#: Preferences.java:359 -More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u76f4\u63a5\u7de8\u96c6\u3059\u308c\u3070\u3001\u3088\u308a\u591a\u304f\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 +#: Editor.java:923 +serialMenu\ is\ null=serialMenu\u304cnull\u3067\u3059 -#: Preferences.java:388 -(edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u7de8\u96c6\u3059\u308b\u969b\u306b\u306f\u3001Arduino IDE\u3092\u7d42\u4e86\u3055\u305b\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044\u3002\uff09 +#: Editor.java:927 Editor.java:934 +name\ is\ null=name\u304cnull\u3067\u3059 -#: Preferences.java:536 +#: Editor.java:986 +error\ retrieving\ port\ list=\u30dd\u30fc\u30c8\u540d\u306e\u4e00\u89a7\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 + +#: Editor.java:1002 +Help=\u30d8\u30eb\u30d7 + +#: Editor.java:1041 +Getting\ Started=\u521d\u5fc3\u8005\u5411\u3051\u30ac\u30a4\u30c9 + +#: Editor.java:1049 +Environment=\u3053\u306e\u30bd\u30d5\u30c8\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066 + +#: Editor.java:1057 +Troubleshooting=\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0 + +#: Editor.java:1065 +Reference=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9 + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u3067\u691c\u7d22 + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u3088\u304f\u3042\u308b\u8cea\u554f + +#: Editor.java:1091 +Visit\ Arduino.cc=Arduino.cc\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u958b\u304f + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Arduino\u306b\u3064\u3044\u3066... + +#: Editor.java:1116 +Edit=\u7de8\u96c6 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u5143\u306b\u623b\u3059 + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u3084\u308a\u76f4\u3057 + +#: Editor.java:1135 Editor.java:2652 +Cut=\u5207\u308a\u53d6\u308a + +#: Editor.java:1143 Editor.java:2660 +Copy=\u30b3\u30d4\u30fc + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u30d5\u30a9\u30fc\u30e9\u30e0\u6295\u7a3f\u5f62\u5f0f\u3067\u30b3\u30d4\u30fc\u3059\u308b + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=HTML\u5f62\u5f0f\u3067\u30b3\u30d4\u30fc\u3059\u308b + +#: Editor.java:1175 Editor.java:2684 +Paste=\u8cbc\u308a\u4ed8\u3051 + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u5168\u3066\u9078\u629e + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u30b3\u30e1\u30f3\u30c8\u5316\u30fb\u5fa9\u5e30 + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059 + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059 + +#: Editor.java:1220 +Find...=\u691c\u7d22... + +#: Editor.java:1235 +Find\ Next=\u6b21\u3092\u691c\u7d22 + +#: Editor.java:1245 +Find\ Previous=\u524d\u3092\u691c\u7d22 + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u9078\u629e\u3055\u308c\u3066\u3044\u308b\u6587\u5b57\u5217\u3092\u691c\u7d22 + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u3067\u691c\u7d22\u3057\u305f\u3044\u8a00\u8449\u3092\u9078\u3093\u3060\u72b6\u614b\u306b\u3057\u3066\u304b\u3089\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + +#: Editor.java:1823 #, java-format -ignoring\ invalid\ font\ size\ {0}=\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e\u6307\u5b9a\u300c{0}\u300d\u304c\u7570\u5e38\u306a\u306e\u3067\u7121\u8996\u3057\u307e\u3059\u3002 +No\ reference\ available\ for\ "{0}"=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb\u306b\u300c{0}\u300d\u306f\u3042\u308a\u307e\u305b\u3093\u3002 + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u30b9\u30b1\u30c3\u30c1\u3092\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u3066\u3044\u307e\u3059... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u30b3\u30f3\u30d1\u30a4\u30eb\u7d42\u4e86\u3002 + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u5909\u66f4\u5185\u5bb9\u3092\u300c{0}\u300d\u306b\u66f8\u304d\u8fbc\u307f\u307e\u3059\u304b\uff1f + +#: Editor.java:2006 +\ \ 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.= \u9589\u3058\u308b\u524d\u306b\u30b9\u30b1\u30c3\u30c1\u306b\u52a0\u3048\u305f\u5909\u66f4\u5185\u5bb9\u3092\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f

\u4fdd\u5b58\u3057\u306a\u3044\u3068\u3001\u5909\u66f4\u5185\u5bb9\u306f\u5931\u308f\u308c\u307e\u3059\u3002 + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u30ad\u30e3\u30f3\u30bb\u30eb + +#: Editor.java:2017 +Don't\ Save=\u4fdd\u5b58\u3057\u306a\u3044 + +#: Editor.java:2089 +Bad\ file\ selected=\u9593\u9055\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304d\u307e\u3057\u305f\u3002 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u3053\u306eIDE\u306f\u3001\u30d5\u30a1\u30a4\u30eb\u540d\u304c\u62e1\u5f35\u5b50.ino\u307e\u305f\u306f.pde\u3067\n\u7d42\u308f\u308b\u30d5\u30a1\u30a4\u30eb\u3060\u3051\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u300c{0}\u300d\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306f\u3001\u300c{1}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30d5\u30a9\u30eb\u30c0\u306e\u4e2d\u306b\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u81ea\u52d5\u7684\u306b\u3053\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u3063\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u3092\u4e2d\u306b\u5165\u308c\u307e\u3059\u304b\uff1f + +#: Editor.java:2109 +Moving=\u79fb\u52d5\u4e2d + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u30a8\u30e9\u30fc + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30d5\u30a9\u30eb\u30c0\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u3051\u307e\u305b\u3093\u3002 + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\u30b9\u30b1\u30c3\u30c1\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u30b3\u30d4\u30fc\u3059\u308b\u3079\u304d\u30d5\u30a9\u30eb\u30c0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30d4\u30fc\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\u4fdd\u5b58\u4e2d\u3067\u3059... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\u4fdd\u5b58\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2270 +Save\ Canceled.=\u4fdd\u5b58\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300c{0}\u300d\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\n\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u3092\u5909\u66f4\u3057\u3066\u3001\u3082\u3046\u4e00\u5ea6\u66f8\u304d\u8fbc\u307f\u307e\u3059\u304b\uff1f + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3078\u306e\u66f8\u304d\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u66f8\u304d\u8fbc\u307f\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u884c\u3046\u524d\u306b\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u884c\u3046\u524d\u306b\u4fdd\u5b58\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u306e\u66f8\u304d\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u306e\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2500 +Printing...=\u5370\u5237\u3057\u3066\u3044\u307e\u3059... + +#: Editor.java:2517 +Done\ printing.=\u5370\u5237\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2520 +Error\ while\ printing.=\u5370\u5237\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2524 +Printing\ canceled.=\u5370\u5237\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\u30a8\u30e9\u30fc\u306e\u884c\u756a\u53f7\u300c{0}\u300d\u306f\u7bc4\u56f2\u5916\u3067\u3059\u3002 + +#: Editor.java:2641 +Open\ URL=URL\u3092\u958b\u304f #: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #: UpdateCheck.java:103 A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Arduino IDE\u306e\u65b0\u3057\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u304c\u5165\u624b\u53ef\u80fd\u306b\u306a\u308a\u307e\u3057\u305f\u3002\n\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u30da\u30fc\u30b8\u3092\u958b\u304d\u307e\u3059\u304b\uff1f +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u306f\u3044 + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u3044\u3044\u3048 + #: UpdateCheck.java:111 Update=\u66f4\u65b0 #: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software -#: Base.java:181 -Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI\u306e\u6319\u52d5\u3092\u8a2d\u5b9a\u3059\u308b\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u304c\u3001\u91cd\u5927\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +#: FindReplace.java:80 +Find\:=\u691c\u7d22\u30c6\u30ad\u30b9\u30c8\uff1a -#: Base.java:182 -The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059\u3002Arduino IDE\u306e\u52d5\u4f5c\u306b\u554f\u984c\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +#: FindReplace.java:81 +Replace\ with\:=\u7f6e\u63db\u30c6\u30ad\u30b9\u30c8\uff1a -#: Base.java:217 -Problem\ Setting\ the\ Platform=\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3092\u8a2d\u5b9a\u3059\u308b\u969b\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 +#: FindReplace.java:96 +Ignore\ Case=\u5927\u6587\u5b57\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3057\u306a\u3044 -#: Base.java:218 -An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u4f9d\u5b58\u306e\u6a5f\u80fd\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u3001\n\u4f55\u3089\u304b\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 +#: FindReplace.java:105 +Wrap\ Around=\u884c\u672b\u3092\u6298\u308a\u66f2\u3052\u308b -#: Base.java:229 -Please\ install\ JDK\ 1.5\ or\ later=JDK\u306e\u30d0\u30fc\u30b8\u30e7\u30f31.5\u4ee5\u964d\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u5168\u3066\u7f6e\u63db -#: Base.java:230 -Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino IDE\u3092\u5b9f\u884c\u3059\u308b\u306b\u306fJDK\u304c\u5fc5\u8981\u3067\u3059\u3002\nJRE\u3067\u306f\u52d5\u4f5c\u3057\u307e\u305b\u3093\u3002\nJDK\u306e\u30d0\u30fc\u30b8\u30e7\u30f31.5\u4ee5\u964d\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u8a73\u3057\u304f\u306f\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002 +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u7f6e\u63db -#: Base.java:254 -Sketchbook\ folder\ disappeared=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\u30d5\u30a9\u30eb\u30c0\u304c\u7121\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u3002 +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u7f6e\u63db\u3057\u3066\u6b21 -#: Base.java:255 -!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.= +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u524d -#: Base.java:529 -Time\ for\ a\ Break=\u305d\u308d\u305d\u308d\u4f11\u307f\u307e\u3057\u3087\u3046 +#: FindReplace.java:124 FindReplace.java:127 +Find=\u691c\u7d22 -#: Base.java:530 -You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u4eca\u65e5\u306f\u3082\u3046\u3001\u3053\u308c\u4ee5\u4e0a\u3001\u65b0\u3057\u3044\u30b9\u30b1\u30c3\u30c1\u306b\u81ea\u52d5\u7684\u306b\u540d\u524d\u3092\u4ed8\u3051\u308b\n\u4e8b\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u305d\u308d\u305d\u308d\u3001\u304a\u4f11\u307f\u306b\u3057\u307e\u305b\u3093\u304b\uff1f +#: SerialMonitor.java:93 +Send=\u9001\u4fe1 -#: Base.java:534 -Sunshine=\u7d42\u308f\u308a\u306b\u3057\u307e\u3057\u3087\u3046 +#: SerialMonitor.java:110 +Autoscroll=\u81ea\u52d5\u30b9\u30af\u30ed\u30fc\u30eb -#: Base.java:535 -No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u5148\u7a0b\u3082\u6307\u6458\u3057\u305f\u3088\u3046\u306b\u3001\u4eca\u65e5\u306f\u9811\u5f35\u308a\u3059\u304e\u3067\u3059\u3002 +#: SerialMonitor.java:112 +No\ line\ ending=\u6539\u884c\u306a\u3057 -#: Base.java:630 -Open\ an\ Arduino\ sketch...=Arduino\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u304f... +#: SerialMonitor.java:112 +Newline=LF\u306e\u307f -#: Base.java:769 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= +#: SerialMonitor.java:112 +Carriage\ return=CR\u306e\u307f -#: Base.java:779 Editor.java:594 -Quit=\u7d42\u4e86 +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=CR\u304a\u3088\u3073LF -#: Base.java:900 Editor.java:502 -Open...=\u958b\u304f... - -#: Base.java:967 -Contributed=\u30e6\u30fc\u30b6\u63d0\u4f9b - -#: Base.java:1091 -Sketch\ Does\ Not\ Exist=\u30b9\u30b1\u30c3\u30c1\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 - -#: Base.java:1092 -The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u9078\u629e\u3057\u305f\u30b9\u30b1\u30c3\u30c1\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\n\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u30e1\u30cb\u30e5\u30fc\u3092\u66f4\u65b0\u3059\u308b\u306b\u306fArduino IDE\u3092\u518d\u8d77\u52d5\u3057\u3066\u4e0b\u3055\u3044\u3002 - -#: Base.java:1121 -#, 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}=\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u3092\u30b9\u30b1\u30c3\u30c1\u306b\u4ed8\u3051\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002\n\u30b9\u30b1\u30c3\u30c1\u540d\u306b\u306f\u534a\u89d2\u6587\u5b57\u3068\u6570\u5b57\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059\u3002\n\uff08ASCII\u6587\u5b57\u306e\u307f\u3001\u30b9\u30da\u30fc\u30b9\u3092\u9664\u304d\u307e\u3059\u3002\u6570\u5b57\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4f7f\u3048\u307e\u305b\u3093\u3002\uff09\n\u3053\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8868\u793a\u3057\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u306b\u306f\u3001\u300c{1}\u300d\u304b\u3089\u30b9\u30b1\u30c3\u30c1\u3092\u524a\u9664\n\u3057\u3066\u4e0b\u3055\u3044\u3002 - -#: Base.java:1128 -Ignoring\ sketch\ with\ bad\ name=\u4f7f\u7528\u3067\u304d\u306a\u3044\u540d\u524d\u306e\u30b9\u30b1\u30c3\u30c1\u306f\u7121\u8996\u3057\u307e\u3059\u3002 - -#: Base.java:1198 -#, 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)=\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002\n\u30e9\u30a4\u30d6\u30e9\u30ea\u540d\u306b\u306f\u534a\u89d2\u6587\u5b57\u3068\u6570\u5b57\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059\u3002\n\uff08ASCII\u6587\u5b57\u306e\u307f\u3001\u30b9\u30da\u30fc\u30b9\u3092\u9664\u304d\u307e\u3059\u3002\u6570\u5b57\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4f7f\u3048\u307e\u305b\u3093\u3002\uff09 - -#: Base.java:1203 -Ignoring\ bad\ library\ name=\u4f7f\u7528\u3067\u304d\u306a\u3044\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u7121\u8996\u3057\u307e\u3059\u3002 - -#: Base.java:1428 -Problem\ getting\ data\ folder=\u30c7\u30fc\u30bf\u30d5\u30a9\u30eb\u30c0\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002 - -#: Base.java:1429 -Error\ getting\ the\ Arduino\ data\ folder.=Arduino IDE\u30c7\u30fc\u30bf\u30d5\u30a9\u30eb\u30c0\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002 - -#: Base.java:1436 -Settings\ issues=\u8a2d\u5b9a\u306b\u95a2\u3059\u308b\u554f\u984c - -#: Base.java:1437 -Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u8a2d\u5b9a\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u52d5\u4f5c\u3092\u505c\u6b62\u3057\u307e\u3059\u3002 - -#: Base.java:1598 -You\ forgot\ your\ sketchbook=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u3092\u3069\u3053\u304b\u306b\u3084\u3063\u3061\u3083\u3044\u307e\u3057\u305f\u306d\u3002 - -#: Base.java:1599 -Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u52d5\u4f5c\u3092\u505c\u6b62\u3057\u307e\u3059\u3002 - -#: Base.java:1619 -Select\ (or\ create\ new)\ folder\ for\ sketches...=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u9078\u629e\u3059\u308b\u304b\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002 - -#: Base.java:1643 -Problem\ Opening\ URL=\u6307\u5b9a\u306eURL\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: Base.java:1644 -#, java-format -Could\ not\ open\ the\ URL\n{0}=URL\u300c{0}\u300d\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: Base.java:1667 -Problem\ Opening\ Folder=\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: Base.java:1668 -#, java-format -Could\ not\ open\ the\ folder\n{0}=\u30d5\u30a9\u30eb\u30c0\u300c{0}\u300d\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: Base.java:1781 -!Guide_MacOSX.html= - -#: Base.java:1783 -!Guide_Windows.html= - -#: Base.java:1785 -!http\://www.arduino.cc/playground/Learning/Linux= - -#: Base.java:1790 -!index.html= - -#: Base.java:1795 -!Guide_Environment.html= - -#: Base.java:1800 -!environment= - -#: Base.java:1800 -!platforms.html= - -#: Base.java:1805 -!Guide_Troubleshooting.html= - -#: Base.java:1810 -!FAQ.html= - -#: Base.java:1822 -Message=\u30e1\u30c3\u30bb\u30fc\u30b8 - -#: Base.java:1838 -Warning=\u8b66\u544a - -#: Base.java:2192 -#, java-format -Could\ not\ remove\ old\ version\ of\ {0}=\u300c{0}\u300d\u306e\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: Base.java:2202 -#, java-format -Could\ not\ replace\ {0}=\u300c{0}\u300d\u3092\u7f6e\u304d\u63db\u3048\u308b\u4e8b\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: Base.java:2243 Base.java:2266 -#, java-format -Could\ not\ delete\ {0}=\u300c{0}\u300d\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: EditorToolbar.java:41 EditorToolbar.java:46 -Verify=\u691c\u8a3c - -#: EditorToolbar.java:41 Editor.java:546 -Upload=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3080 - -#: EditorToolbar.java:41 Editor.java:494 -New=\u65b0\u898f\u30d5\u30a1\u30a4\u30eb - -#: EditorToolbar.java:41 -Open=\u958b\u304f - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:530 -#: Editor.java:2002 Editor.java:2406 -Save=\u4fdd\u5b58 - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:670 -Serial\ Monitor=\u30b7\u30ea\u30a2\u30eb\u30e2\u30cb\u30bf - -#: EditorToolbar.java:46 Editor.java:554 -Upload\ Using\ Programmer=\u66f8\u8fbc\u88c5\u7f6e\u3092\u4f7f\u3063\u3066\u66f8\u304d\u8fbc\u3080 - -#: EditorToolbar.java:46 -New\ Editor\ Window=\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6 - -#: EditorToolbar.java:46 -Open\ in\ Another\ Window=\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6\u3067\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304f +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ bps #: Serial.java:147 #, java-format @@ -310,65 +391,62 @@ readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ an #, java-format Error\ inside\ Serial.{0}()=Serial.{0}()\u3067\u30a8\u30e9\u30fc -#: Theme.java:52 -Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u30ab\u30e9\u30fc\u30c6\u30fc\u30de\u306e\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002\nArduino IDE\u3092\u518d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 +#: tools/AutoFormat.java:91 +Auto\ Format=\u81ea\u52d5\u6574\u5f62 -#: EditorHeader.java:292 -New\ Tab=\u65b0\u898f\u30bf\u30d6 +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u6574\u5f62\u306e\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: EditorHeader.java:300 -Rename=\u540d\u524d\u3092\u5909\u66f4 +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u300c)\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 -#: EditorHeader.java:314 Sketch.java:595 -Delete=\u524a\u9664 +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u300c(\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 -#: EditorHeader.java:326 -Previous\ Tab=\u524d\u306e\u30bf\u30d6 +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u300c}\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 -#: EditorHeader.java:340 -Next\ Tab=\u6b21\u306e\u30bf\u30d6 +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u300c{\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 -#: SerialMonitor.java:91 -Send=\u9001\u4fe1 +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u81ea\u52d5\u6574\u5f62\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 -#: SerialMonitor.java:108 -Autoscroll=\u81ea\u52d5\u30b9\u30af\u30ed\u30fc\u30eb +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u4fee\u6b63 -#: SerialMonitor.java:110 -No\ line\ ending=\u6539\u884c\u306a\u3057 +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u672a\u4fdd\u5b58\u306e\u5909\u66f4\u3092\u7834\u68c4\u3057\u3066\u30b9\u30b1\u30c3\u30c1\u3092\u8aad\u307f\u8fbc\u307f\u76f4\u3057\u307e\u3059\u304b\uff1f -#: SerialMonitor.java:110 -Newline=LF\u306e\u307f +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u4fee\u6b63\u3057\u3088\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\n\u4eca\u3053\u3053\u3067\u4fdd\u5b58\u3059\u308b\u3068\u3001\u4fee\u6b63\u524d\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u304a\u304b\u3057\u306a\u5185\u5bb9\u3067\u4e0a\u66f8\u304d\u3057\u3066\u3057\u307e\u3046\n\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u304d\u76f4\u3057\u3066\u3001\u3082\u3046\u4e00\u5ea6\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\n\u4fee\u6b63\u3092\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002 -#: SerialMonitor.java:110 -Carriage\ return=CR\u306e\u307f +#: tools/Archiver.java:48 +Archive\ Sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3059\u308b -#: SerialMonitor.java:110 -Both\ NL\ &\ CR=CR\u304a\u3088\u3073LF +#: tools/Archiver.java:59 +yyMMdd=yyyyMMdd -#: SerialMonitor.java:128 SerialMonitor.java:131 -\ baud=\ bps +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: FindReplace.java:79 -Find\:=\u691c\u7d22\u30c6\u30ad\u30b9\u30c8\uff1a +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3067\u304d\u306a\u304b\u3063\u305f\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 -#: FindReplace.java:81 -Replace\ with\:=\u7f6e\u63db\u30c6\u30ad\u30b9\u30c8\uff1a +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3059\u308b\u540d\u524d\uff1a -#: FindReplace.java:121 -Ignore\ Case=\u5927\u6587\u5b57\u5c0f\u6587\u5b57\u3092\u533a\u5225\u3057\u306a\u3044 +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\u30b9\u30b1\u30c3\u30c1\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f -#: FindReplace.java:137 FindReplace.java:146 -Replace\ All=\u5168\u3066\u7f6e\u63db +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\u300c{0}\u300d\u304b\u3089\u30b3\u30fc\u30c9\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 -#: FindReplace.java:138 FindReplace.java:145 Sketch.java:1050 -Replace=\u7f6e\u63db - -#: FindReplace.java:139 FindReplace.java:144 -Replace\ &\ Find=\u7f6e\u63db\u3057\u3066\u6b21 - -#: FindReplace.java:140 FindReplace.java:143 -Find=\u691c\u7d22 +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u300c{0}\u300d\u306b\u306f\u3001\u8a8d\u8b58\u3067\u304d\u306a\u3044\u6587\u5b57\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u3002\u3082\u3057\u3082\u3001\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u306eIDE\u3067\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u4f5c\u6210\u3057\u3066\u3044\u305f\u5834\u5408\u306b\u306f\u3001\u300c\u30c4\u30fc\u30eb\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\u4fee\u6b63\u300d\u3092\u5b9f\u884c\u3059\u308b\u4e8b\u306b\u3088\u3063\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u306e\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092UTF-8\u306b\u5909\u66f4\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u305d\u3046\u3067\u306a\u3044\u5834\u5408\u306b\u306f\u3001\u3053\u308c\u3089\u306e\u8a8d\u8b58\u3067\u304d\u306a\u3044\u6587\u5b57\u3092\u624b\u4f5c\u696d\u3067\u524a\u9664\u3057\u3066\u3044\u305f\u3060\u304f\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 #: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 Sketch\ is\ Read-Only=\u30b9\u30b1\u30c3\u30c1\u306b\u66f8\u304d\u8fbc\u3081\u307e\u305b\u3093\u3002 @@ -386,20 +464,20 @@ Sketch\ is\ Untitled=\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u3001\u307e\u3060\u540 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u524d\u306b\u3001\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f #: Sketch.java:359 Sketch.java:366 Sketch.java:377 -Problem\ with\ rename=\u540d\u524d\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +Problem\ with\ rename=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 #: Sketch.java:360 -The\ name\ cannot\ start\ with\ a\ period.=\u3053\u306e\u540d\u524d\u306e\u5148\u982d\u306f\u30d4\u30ea\u30aa\u30c9\u300c.\u300d\u306b\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093\u3002 +The\ name\ cannot\ start\ with\ a\ period.=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u306e\u5148\u982d\u306f\u30d4\u30ea\u30aa\u30c9\u300c.\u300d\u306b\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093\u3002 #: Sketch.java:368 #, java-format ".{0}"\ is\ not\ a\ valid\ extension.=\u62e1\u5f35\u5b50\u300c.{0}\u300d\u306f\u3001\u4f7f\u3048\u307e\u305b\u3093\u3002 #: Sketch.java:378 -!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)=\u30b9\u30b1\u30c3\u30c1\u306e\u30e1\u30a4\u30f3\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u306f\u3001\u62e1\u5f35\u5b50\u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002 #: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 -Nope=\u30c0\u30e1\u3002 +Nope=\u30a8\u30e9\u30fc #: Sketch.java:402 #, java-format @@ -441,6 +519,9 @@ Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u3053\u306e\u30b9\u30b1\u3 #, java-format Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u300c{0}\u300d\u3092\u672c\u5f53\u306b\u524a\u9664\u3057\u307e\u3059\u304b\uff1f +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u524a\u9664 + #: Sketch.java:620 Couldn't\ do\ it=\u305d\u308c\u306f\u5b9f\u884c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 @@ -461,7 +542,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske 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 1.0\u3067\u306f\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a1\u30a4\u30eb\u306e\u62e1\u5f35\u5b50\u3092.pde\u304b\u3089.ino\u306b\n\u5909\u66f4\u3057\u307e\u3057\u305f\u3002\u65b0\u3057\u3044\u30b9\u30b1\u30c3\u30c1\u304a\u3088\u3073\u300c\u540d\u524d\u3092\u4ed8\u3051\u3066\u4fdd\u5b58\u300d\u3067\u4fdd\u5b58\n\u3057\u305f\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u3001\u65b0\u3057\u3044\u62e1\u5f35\u5b50\u304c\u4f7f\u308f\u308c\u307e\u3059\u3002\u307e\u305f\u3001\u65e2\u5b58\u306e\u30b9\u30b1\u30c3\u30c1\n\u3092\u958b\u3044\u3066\u304b\u3089\u4fdd\u5b58\u3059\u308b\u3068\u3001\u65b0\u3057\u3044\u62e1\u5f35\u5b50\u306b\u81ea\u52d5\u7684\u306b\u5909\u66f4\u3055\u308c\u307e\u3059\u3002\n\u3053\u306e\u6a5f\u80fd\u306f\u3001\u300c\u74b0\u5883\u8a2d\u5b9a\u300d\u3067\u7121\u52b9\u306b\u3059\u308b\u4e8b\u304c\u3067\u304d\u307e\u3059\u3002\n\n\u62e1\u5f35\u5b50\u3092\u5909\u66f4\u3057\u3066\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f #: Sketch.java:750 -!.pde\ ->\ .ino= +.pde\ ->\ .ino=.pde\u304b\u3089.ino\u3078 #: Sketch.java:829 Save\ sketch\ folder\ as...=\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30c0\u306e\u4fdd\u5b58\u5148... @@ -470,7 +551,7 @@ Save\ sketch\ folder\ as...=\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30 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 #: Sketch.java:886 -How\ very\ Borges\ of\ you=\u305d\u308c\u306f\u30e0\u30ea\u3002 +How\ very\ Borges\ of\ you=\u305d\u308c\u306f\u30e0\u30ea\u3067\u3059 #: Sketch.java:887 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 @@ -478,9 +559,6 @@ You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ g #: Sketch.java:979 Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u753b\u50cf\u306a\u3069\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u4e00\u90e8\u3068\u3057\u3066\u30b3\u30d4\u30fc\u3057\u3066\u52a0\u3048\u305f\u3044\u30d5\u30a1\u30a4\u30eb\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -#: Sketch.java:996 Editor.java:377 -One\ file\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u30921\u500b\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002 - #: Sketch.java:1047 #, java-format Replace\ the\ existing\ version\ of\ {0}?=\u3059\u3067\u306b\u540c\u3058\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30d5\u30a1\u30a4\u30eb\u304c\u30b9\u30b1\u30c3\u30c1\u306e\u4e2d\u306b\u3042\u308a\u307e\u3059\u304c\u3001\u7f6e\u304d\u63db\u3048\u307e\u3059\u304b\uff1f @@ -493,7 +571,7 @@ Error\ adding\ file=\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0\u3059\u308b\u969b Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u65e2\u5b58\u306e\u300c{0}\u300d\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 #: Sketch.java:1078 -You\ can't\ fool\ me=\u30d8\u30f3\u306a\u3053\u3068\u3057\u3061\u3083\u3060\u3081\u3002 +You\ can't\ fool\ me=\u30d8\u30f3\u306a\u3053\u3068\u3057\u3061\u3083\u3060\u3081\u3067\u3059 #: Sketch.java:1079 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u3059\u3067\u306b\u30b3\u30d4\u30fc\u3055\u308c\u3066\u30b9\u30b1\u30c3\u30c1\u306e\u4e2d\u306b\u3042\u308a\u307e\u3059\u3002\u307e\u3060\u3001\u4f55\u3082\u3057\u3066\u307e\u305b\u3093\u3088\uff01 @@ -502,62 +580,53 @@ This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ y #, java-format Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u30d5\u30a1\u30a4\u30eb\u300c{0}\u300d\u3092\u30b9\u30b1\u30c3\u30c1\u306b\u52a0\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Sketch.java:1359 Sketch.java:1390 +#: Sketch.java:1393 Sketch.java:1424 Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u30d3\u30eb\u30c9\u7528\u306e\u30d5\u30a9\u30eb\u30c0\u304c\u6d88\u3048\u3066\u3057\u307e\u3063\u305f\u304b\u3001\u66f8\u304d\u8fbc\u307f\u304c\u3067\u304d\u307e\u305b\u3093\u3002 -#: Sketch.java:1374 +#: Sketch.java:1408 Could\ not\ find\ main\ class=\u30e1\u30a4\u30f3\u306e\u30af\u30e9\u30b9\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002 -#: Sketch.java:1399 +#: Sketch.java:1433 #, java-format Uncaught\ exception\ type\:\ {0}=\u60f3\u5b9a\u5916\u306e\u4f8b\u5916\u300c{0}\u300d\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 -#: Sketch.java:1431 +#: Sketch.java:1465 #, java-format Problem\ moving\ {0}\ to\ the\ build\ folder=\u300c{0}\u300d\u3092\u30d3\u30eb\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u79fb\u52d5\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Sketch.java:1631 Editor.java:1828 -Compiling\ sketch...=\u30b9\u30b1\u30c3\u30c1\u3092\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u3066\u3044\u307e\u3059\u2026 +#: Sketch.java:1661 +Uploading...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059... -#: Sketch.java:1645 -Uploading...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059\u2026 - -#: Sketch.java:1668 +#: Sketch.java:1684 #, java-format Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u30b3\u30f3\u30d1\u30a4\u30eb\u5f8c\u306e\u30b9\u30b1\u30c3\u30c1\u306e\u30b5\u30a4\u30ba\uff1a{0}\u30d0\u30a4\u30c8\uff08\u6700\u5927\u5bb9\u91cf{1}\u30d0\u30a4\u30c8\uff09 -#: Sketch.java:1673 +#: Sketch.java:1689 Couldn't\ determine\ program\ size\:\ {0}=\u30b3\u30f3\u30d1\u30a4\u30eb\u5f8c\u306e\u30b5\u30a4\u30ba\u304c\u308f\u304b\u308a\u307e\u305b\u3093\uff1a{0} -#: Sketch.java:1678 +#: Sketch.java:1694 Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u30b9\u30b1\u30c3\u30c1\u304c\u5927\u304d\u3059\u304e\u307e\u3059\u3002http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u306b\u306f\u3001\u5c0f\u3055\u304f\u3059\u308b\u30b3\u30c4\u304c\u66f8\u3044\u3066\u3042\u308a\u307e\u3059\u3002 -#: Sketch.java:1738 +#: Sketch.java:1754 Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u300c/* */\u300d\u5f62\u5f0f\u306e\u30b3\u30e1\u30f3\u30c8\u306e\u300c*/\u300d\u304c\u3042\u308a\u307e\u305b\u3093\u3002 -#: Sketch.java:1780 +#: Sketch.java:1796 Sketch\ Disappeared=\u30b9\u30b1\u30c3\u30c1\u304c\u6d88\u6ec5\u3057\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u3002 -#: Sketch.java:1781 +#: Sketch.java:1797 The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\u30d5\u30a9\u30eb\u30c0\u304c\u7121\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u3002\n\u74b0\u5883\u8a2d\u5b9a\u3067\u6307\u5b9a\u3057\u3066\u3044\u308b\u4fdd\u5b58\u5834\u6240\u306b\u4fdd\u5b58\u3057\u76f4\u3057\u307e\u3059\u3002\n\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u3068\u4e00\u7dd2\u306b\u4fdd\u5b58\u3057\u3066\u3044\u305f\u30d5\u30a1\u30a4\u30eb\u306f\u5931\u308f\u308c\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002 -#: Sketch.java:1794 +#: Sketch.java:1810 Could\ not\ re-save\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3057\u76f4\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Sketch.java:1795 +#: Sketch.java:1811 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.=\u30b9\u30b1\u30c3\u30c1\u3092\u6b63\u5e38\u306b\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\n\u4fdd\u5b58\u5148\u306b\u554f\u984c\u304c\u3042\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\n\u5225\u306e\u30c6\u30ad\u30b9\u30c8\u30a8\u30c7\u30a3\u30bf\u3067\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u304d\u3001\u30b3\u30fc\u30c9\u3092\u30b3\u30d4\u30fc\uff06\u30da\u30fc\u30b9\u30c8\u3057\u3066\u5225\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u4fdd\u5b58\u3059\u308b\u3053\u3068\u3092\u304a\u3059\u3059\u3081\u3057\u307e\u3059\u3002 -#: Sketch.java:2044 -The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u90fd\u5408\u306b\u3088\u308a\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u5909\u66f4\u3057\u307e\u3057\u305f\u3002\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u306f\u3001ASCII\u6587\u5b57\u304a\u3088\u3073\u6570\u5b57\uff08\u5148\u982d\u3092\u9664\u304f\uff09\u3067\u3042\u308a\u3001\uff16\uff14\u6587\u5b57\u4ee5\u4e0b\u3067\u3042\u308b\u3053\u3068\u304c\u5fc5\u8981\u3067\u3059\u3002 - -#: EditorConsole.java:147 -Console\ Error=\u30b3\u30f3\u30bd\u30fc\u30eb\u306e\u7570\u5e38 - -#: EditorConsole.java:148 -A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u30b3\u30f3\u30bd\u30fc\u30eb\u51fa\u529b\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u3053\u3046\u3068\u3057\u305f\u3089\u3001\n\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u90fd\u5408\u306b\u3088\u308a\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u5909\u66f4\u3057\u307e\u3057\u305f\u3002\n\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u306b\u4f7f\u3048\u308b\u6587\u5b57\u306f\u534a\u89d2\u82f1\u6570\u5b57\u3067\u3059\uff08\u6570\u5b57\u306f\u5148\u982d\u3092\u9664\u304f\uff09\u3002\n\u307e\u305f\u300164\u6587\u5b57\u4ee5\u4e0b\u3067\u3042\u308b\u3053\u3068\u304c\u5fc5\u8981\u3067\u3059\u3002 #: debug/Uploader.java:52 -!https\://developer.berlios.de/bugs/?group_id\=3590= +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 #: debug/Uploader.java:54 debug/Compiler.java:43 #, java-format @@ -577,360 +646,390 @@ Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troublesh Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3068\u901a\u4fe1\u3057\u305f\u3068\u3053\u308d\u3001\u9078\u629e\u3068\u7570\u306a\u308b\u30de\u30a4\u30b3\u30f3\u30c1\u30c3\u30d7\u304c\u5fdc\u7b54\u3057\u307e\u3057\u305f\u3002\u300c\u30c4\u30fc\u30eb\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u300d\u306e\u9078\u629e\u80a2\u304b\u3089\u3001\u6b63\u3057\u3044\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002 #: debug/Compiler.java:41 -!http\://code.google.com/p/arduino/issues/list= +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list #: debug/Compiler.java:79 No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u304c\u9078\u3070\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u300c\u30c4\u30fc\u30eb\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u300d\u306e\u9078\u629e\u80a2\u304b\u3089\u3001\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002 -#: debug/Compiler.java:346 +#: debug/Compiler.java:422 #, java-format {0}\ returned\ {1}={0}\u304c{1}\u3092\u8fd4\u3057\u307e\u3057\u305f\u3002 -#: debug/Compiler.java:350 +#: debug/Compiler.java:426 Error\ compiling.=\u30b3\u30f3\u30d1\u30a4\u30eb\u6642\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 -#: debug/Compiler.java:389 +#: debug/Compiler.java:465 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u300c\u30b9\u30b1\u30c3\u30c1\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u300d\u3067\u3001SPI\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u8aad\u307f\u8fbc\u3093\u3067\u304f\u3060\u3055\u3044\u3002 -#: debug/Compiler.java:390 +#: debug/Compiler.java:466 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nArduino 0019\u4ee5\u964d\u3001Ethernet\u30e9\u30a4\u30d6\u30e9\u30ea\u306fSPI\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u4f9d\u5b58\u3057\u3066\u3044\u307e\u3059\u3002\nEthernet\u30e9\u30a4\u30d6\u30e9\u30ea\u307e\u305f\u306f\u305d\u306e\u4ed6\u306e\u3001SPI\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u4f9d\u5b58\u3059\u308b\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528\u3057\u3066\u3044\u308b\u3088\u3046\u3067\u3059\u306d\u3002\n\n -#: debug/Compiler.java:395 +#: debug/Compiler.java:471 The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u300cBYTE\u300d\u30ad\u30fc\u30ef\u30fc\u30c9\u306f\u3001\u4f7f\u7528\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3057\u305f\u3002 -#: debug/Compiler.java:396 +#: debug/Compiler.java:472 \nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nArduino 1.0\u4ee5\u964d\u3001\u300cBYTE\u300d\u30ad\u30fc\u30ef\u30fc\u30c9\u306f\u4f7f\u7528\u3067\u304d\u306a\u304f\u306a\u308a\u307e\u3057\u305f\u3002\nSerial.write()\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\n -#: debug/Compiler.java:401 +#: debug/Compiler.java:477 The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u300cServer\u300d\u30af\u30e9\u30b9\u306f\u300cEthernetServer\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002 -#: debug/Compiler.java:402 +#: debug/Compiler.java:478 \nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nArduino 1.0\u4ee5\u964d\u3001Ethernet\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u300cServer\u300d\u30af\u30e9\u30b9\u306f\u3001\u300cEthernetServer\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\n\n -#: debug/Compiler.java:407 +#: debug/Compiler.java:483 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u300cClient\u300d\u30af\u30e9\u30b9\u306f\u300cEthernetClient\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002 -#: debug/Compiler.java:408 +#: debug/Compiler.java:484 \nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nArduino 1.0\u4ee5\u964d\u3001Ethernet\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u300cClient\u300d\u30af\u30e9\u30b9\u306f\u3001\u300cEthernetClient\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\n\n -#: debug/Compiler.java:413 +#: debug/Compiler.java:489 The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u300cUdp\u300d\u30af\u30e9\u30b9\u306f\u300cEthernetUdp\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002 -#: debug/Compiler.java:414 +#: debug/Compiler.java:490 \nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nArduino 1.0\u4ee5\u964d\u3001Ethernet\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u300cUdp\u300d\u30af\u30e9\u30b9\u306f\u3001\u300cEthernetUdp\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\n\n -#: debug/Compiler.java:419 +#: debug/Compiler.java:495 Wire.send()\ has\ been\ renamed\ Wire.write().=\u300cWire.send()\u300d\u306f\u3001\u300cWire.write()\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002 -#: debug/Compiler.java:420 +#: debug/Compiler.java:496 \nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nArduino 1.0\u4ee5\u964d\u3001\u300cWire.send()\u300d\u95a2\u6570\u306f\u3001\u4ed6\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3068\u306e\u6574\u5408\u6027\u3092\u9ad8\u3081\u308b\u305f\u3081\u3001\u300cWire.write()\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\n -#: debug/Compiler.java:425 +#: debug/Compiler.java:501 Wire.receive()\ has\ been\ renamed\ Wire.read().=\u300cWire.receive()\u300d\u306f\u3001\u300cWire.read()\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002 -#: debug/Compiler.java:426 +#: debug/Compiler.java:502 \nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nArduino 1.0\u4ee5\u964d\u3001\u300cWire.receive()\u300d\u95a2\u6570\u306f\u3001\u4ed6\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u3068\u306e\u6574\u5408\u6027\u3092\u9ad8\u3081\u308b\u305f\u3081\u3001\u300cWire.read()\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\n -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:913 -No\ changes\ necessary\ for\ Auto\ Format.=\u6574\u5f62\u306e\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +#: EditorConsole.java:152 +Console\ Error=\u30b3\u30f3\u30bd\u30fc\u30eb\u306e\u7570\u5e38 -#: tools/Archiver.java:48 -Archive\ Sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3059\u308b\u3002 +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u30b3\u30f3\u30bd\u30fc\u30eb\u51fa\u529b\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304f\u969b\u306b\u3001\n\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 -#: tools/Archiver.java:59 -yyMMdd=yyyyMMdd +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI\u306e\u6319\u52d5\u306e\u8a2d\u5b9a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u304c\u3001\u91cd\u5927\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -#: tools/Archiver.java:74 -Couldn't\ archive\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059\u3002Arduino IDE\u306e\u52d5\u4f5c\u306b\u554f\u984c\u306f\u3042\u308a\u307e\u305b\u3093\u3002 -#: tools/Archiver.java:75 -Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3067\u304d\u306a\u304b\u3063\u305f\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u306f\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002 +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3092\u8a2d\u5b9a\u3059\u308b\u969b\u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 -#: tools/Archiver.java:109 -Archive\ sketch\ as\:=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3059\u308b\u540d\u524d\uff1a +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u4f9d\u5b58\u306e\u6a5f\u80fd\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u3001\n\u4f55\u3089\u304b\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 -#: tools/Archiver.java:139 -Archive\ sketch\ canceled.=\u30b9\u30b1\u30c3\u30c1\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=JDK\u306e\u30d0\u30fc\u30b8\u30e7\u30f31.5\u4ee5\u964d\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -#: tools/AutoFormat.java:91 -Auto\ Format=\u81ea\u52d5\u6574\u5f62 +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino IDE\u3092\u5b9f\u884c\u3059\u308b\u306b\u306fJDK\u304c\u5fc5\u8981\u3067\u3059\u3002\nJRE\u3067\u306f\u52d5\u4f5c\u3057\u307e\u305b\u3093\u3002\nJDK\u306e\u30d0\u30fc\u30b8\u30e7\u30f31.5\u4ee5\u964d\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002\n\u8a73\u3057\u304f\u306f\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb\u3092\u3054\u89a7\u304f\u3060\u3055\u3044\u3002 -#: tools/AutoFormat.java:919 -Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u300c)\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002 +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\u30d5\u30a9\u30eb\u30c0\u304c\u7121\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u3002 -#: tools/AutoFormat.java:922 -Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u300c(\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002 +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\u30d5\u30a9\u30eb\u30c0\u304c\u6709\u308a\u307e\u305b\u3093\u3002\n\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u5834\u6240\u306b\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\n\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3057\u3001\u4eca\u5f8c\u306f\u3053\u3061\u3089\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002 -#: tools/AutoFormat.java:928 -Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u300c}\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002 +#: Base.java:532 +Time\ for\ a\ Break=\u305d\u308d\u305d\u308d\u4f11\u307f\u307e\u3057\u3087\u3046 -#: tools/AutoFormat.java:931 -Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u300c{\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002 +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u4eca\u65e5\u306f\u3082\u3046\u3001\u3053\u308c\u4ee5\u4e0a\u3001\u65b0\u3057\u3044\u30b9\u30b1\u30c3\u30c1\u306b\u81ea\u52d5\u7684\u306b\u540d\u524d\u3092\u4ed8\u3051\u308b\n\u4e8b\u304c\u3067\u304d\u307e\u305b\u3093\u3002\u305d\u308d\u305d\u308d\u3001\u304a\u4f11\u307f\u306b\u3057\u307e\u305b\u3093\u304b\uff1f -#: tools/AutoFormat.java:941 -Auto\ Format\ finished.=\u81ea\u52d5\u6574\u5f62\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 +#: Base.java:537 +Sunshine=\u7d42\u308f\u308a\u306b\u3057\u307e\u3057\u3087\u3046 -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -Fix\ Encoding\ &\ Reload=\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u4fee\u6b63 +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u5148\u7a0b\u3082\u6307\u6458\u3057\u305f\u3088\u3046\u306b\u3001\u4eca\u65e5\u306f\u9811\u5f35\u308a\u3059\u304e\u3067\u3059\u3002 -#: tools/FixEncoding.java:57 -Discard\ all\ changes\ and\ reload\ sketch?=\u672a\u4fdd\u5b58\u306e\u5909\u66f4\u3092\u7834\u68c4\u3057\u3066\u30b9\u30b1\u30c3\u30c1\u3092\u8aad\u307f\u8fbc\u307f\u76f4\u3057\u307e\u3059\u304b\uff1f +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Arduino\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u304f... -#: tools/FixEncoding.java:77 -An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u4fee\u6b63\u3057\u3088\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\n\u4eca\u3053\u3053\u3067\u4fdd\u5b58\u3059\u308b\u3068\u3001\u4fee\u6b63\u524d\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u304a\u304b\u3057\u306a\u5185\u5bb9\u3067\u4e0a\u66f8\u304d\u3057\u3066\u3057\u307e\u3046\n\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u304d\u76f4\u3057\u3066\u3001\u3082\u3046\u4e00\u5ea6\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\n\u4fee\u6b63\u3092\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002 +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u672c\u5f53\u306b\u7d42\u4e86\u3057\u307e\u3059\u304b\uff1f

\u958b\u304b\u308c\u3066\u3044\u308b\u6700\u5f8c\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u9589\u3058\u308b\u3068\u3001Arduino IDE\u306f\u7d42\u4e86\u3057\u307e\u3059\u3002 -#: Editor.java:374 -No\ files\ were\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u306f\u8ffd\u52a0\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002 +#: Base.java:970 +Contributed=\u30e6\u30fc\u30b6\u63d0\u4f9b -#: Editor.java:381 +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u30b9\u30b1\u30c3\u30c1\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u9078\u629e\u3057\u305f\u30b9\u30b1\u30c3\u30c1\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\n\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u30e1\u30cb\u30e5\u30fc\u3092\u66f4\u65b0\u3059\u308b\u306b\u306fArduino IDE\u3092\u518d\u8d77\u52d5\u3057\u3066\u4e0b\u3055\u3044\u3002 + +#: Base.java:1125 #, java-format -{0}\ files\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u3092{0}\u500b\u8ffd\u52a0\u3057\u307e\u3057\u305f\u3002 +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}=\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u3092\u30b9\u30b1\u30c3\u30c1\u306b\u4ed8\u3051\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002\n\u30b9\u30b1\u30c3\u30c1\u540d\u306b\u306f\u534a\u89d2\u6587\u5b57\u3068\u6570\u5b57\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059\u3002\n\uff08ASCII\u6587\u5b57\u306e\u307f\u3001\u30b9\u30da\u30fc\u30b9\u3092\u9664\u304d\u307e\u3059\u3002\u6570\u5b57\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4f7f\u3048\u307e\u305b\u3093\u3002\uff09\n\u3053\u306e\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8868\u793a\u3057\u306a\u3044\u3088\u3046\u306b\u3059\u308b\u306b\u306f\u3001\u300c{1}\u300d\u304b\u3089\u30b9\u30b1\u30c3\u30c1\u3092\u524a\u9664\n\u3057\u3066\u4e0b\u3055\u3044\u3002 -#: Editor.java:492 -File=\u30d5\u30a1\u30a4\u30eb +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\u4f7f\u7528\u3067\u304d\u306a\u3044\u540d\u524d\u306e\u30b9\u30b1\u30c3\u30c1\u306f\u7121\u8996\u3057\u307e\u3059\u3002 -#: Editor.java:511 -Sketchbook=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af - -#: Editor.java:517 -Examples=\u30b9\u30b1\u30c3\u30c1\u4f8b - -#: Editor.java:522 Editor.java:1962 -Close=\u9589\u3058\u308b - -#: Editor.java:538 -Save\ As...=\u540d\u524d\u3092\u4ed8\u3051\u3066\u4fdd\u5b58 - -#: Editor.java:564 -Page\ Setup=\u30d7\u30ea\u30f3\u30bf\u306e\u8a2d\u5b9a... - -#: Editor.java:572 -Print=\u5370\u5237... - -#: Editor.java:608 -Sketch=\u30b9\u30b1\u30c3\u30c1 - -#: Editor.java:610 -Verify\ /\ Compile=\u691c\u8a3c\u30fb\u30b3\u30f3\u30d1\u30a4\u30eb - -#: Editor.java:637 -Import\ Library...=\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u4f7f\u7528 - -#: Editor.java:642 -Show\ Sketch\ Folder=\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u8868\u793a - -#: Editor.java:651 -Add\ File...=\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0... - -#: Editor.java:664 -Tools=\u30c4\u30fc\u30eb - -#: Editor.java:690 -Board=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9 - -#: Editor.java:698 -Serial\ Port=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8 - -#: Editor.java:703 -Programmer=\u66f8\u8fbc\u88c5\u7f6e - -#: Editor.java:707 -Burn\ Bootloader=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3080 - -#: Editor.java:931 -serialMenu\ is\ null=serialMenu\u304c\u30ab\u30e9\u3067\u3059 - -#: Editor.java:935 Editor.java:942 -name\ is\ null=\u540d\u524d\u304c\u30ab\u30e9\u3067\u3059 - -#: Editor.java:994 -error\ retrieving\ port\ list=\u30dd\u30fc\u30c8\u540d\u306e\u4e00\u89a7\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: Editor.java:1010 -Help=\u30d8\u30eb\u30d7 - -#: Editor.java:1049 -Getting\ Started=\u521d\u5fc3\u8005\u5411\u3051\u30ac\u30a4\u30c9 - -#: Editor.java:1057 -Environment=\u3053\u306e\u30bd\u30d5\u30c8\u306e\u4f7f\u3044\u65b9\u306b\u3064\u3044\u3066 - -#: Editor.java:1065 -Troubleshooting=\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0 - -#: Editor.java:1073 -Reference=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9 - -#: Editor.java:1081 Editor.java:2713 -Find\ in\ Reference=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u3067\u691c\u7d22 - -#: Editor.java:1091 -Frequently\ Asked\ Questions=\u3088\u304f\u3042\u308b\u8cea\u554f - -#: Editor.java:1099 -Visit\ Arduino.cc=Arduino.cc\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u958b\u304f - -#: Editor.java:1102 -!http\://arduino.cc/= - -#: Editor.java:1110 -About\ Arduino=Arduino\u306b\u3064\u3044\u3066... - -#: Editor.java:1124 -Edit=\u7de8\u96c6 - -#: Editor.java:1127 Editor.java:1326 -Undo=\u5143\u306b\u623b\u3059 - -#: Editor.java:1131 Editor.java:1361 -Redo=\u3084\u308a\u76f4\u3057 - -#: Editor.java:1139 Editor.java:2637 -Cut=\u5207\u308a\u53d6\u308a - -#: Editor.java:1147 Editor.java:2645 -Copy=\u30b3\u30d4\u30fc - -#: Editor.java:1155 Editor.java:2653 -Copy\ for\ Forum=\u30d5\u30a9\u30fc\u30e9\u30e0\u6295\u7a3f\u5f62\u5f0f\u3067\u30b3\u30d4\u30fc\u3059\u308b - -#: Editor.java:1167 Editor.java:2661 -Copy\ as\ HTML=HTML\u5f62\u5f0f\u3067\u30b3\u30d4\u30fc\u3059\u308b - -#: Editor.java:1179 Editor.java:2669 -Paste=\u8cbc\u308a\u4ed8\u3051 - -#: Editor.java:1188 Editor.java:2677 -Select\ All=\u5168\u3066\u9078\u629e - -#: Editor.java:1198 Editor.java:2687 -Comment/Uncomment=\u30b3\u30e1\u30f3\u30c8\u5316\u30fb\u5fa9\u5e30 - -#: Editor.java:1206 Editor.java:2695 -Increase\ Indent=\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u5897\u3084\u3059 - -#: Editor.java:1214 Editor.java:2703 -Decrease\ Indent=\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059 - -#: Editor.java:1224 -Find...=\u691c\u7d22... - -#: Editor.java:1239 -Find\ Next=\u6b21\u3092\u691c\u7d22 - -#: Editor.java:1801 -First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u3067\u691c\u7d22\u3057\u305f\u3044\u8a00\u8449\u3092\u9078\u3093\u3060\u72b6\u614b\u306b\u3057\u3066\u304b\u3089\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002 - -#: Editor.java:1808 +#: Base.java:1202 #, java-format -No\ reference\ available\ for\ "{0}"=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\u30cb\u30e5\u30a2\u30eb\u306b\u300c{0}\u300d\u306f\u3042\u308a\u307e\u305b\u3093\u3002 +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)=\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002\n\u30e9\u30a4\u30d6\u30e9\u30ea\u540d\u306b\u306f\u534a\u89d2\u6587\u5b57\u3068\u6570\u5b57\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059\u3002\n\uff08ASCII\u6587\u5b57\u306e\u307f\u3001\u30b9\u30da\u30fc\u30b9\u3092\u9664\u304d\u307e\u3059\u3002\u6570\u5b57\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4f7f\u3048\u307e\u305b\u3093\u3002\uff09 -#: Editor.java:1811 +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u4f7f\u7528\u3067\u304d\u306a\u3044\u30d5\u30a1\u30a4\u30eb\u540d\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u7121\u8996\u3057\u307e\u3059\u3002 + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u30c7\u30fc\u30bf\u30d5\u30a9\u30eb\u30c0\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002 + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Arduino IDE\u30c7\u30fc\u30bf\u30d5\u30a9\u30eb\u30c0\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002 + +#: Base.java:1440 +Settings\ issues=\u8a2d\u5b9a\u306b\u95a2\u3059\u308b\u554f\u984c + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u8a2d\u5b9a\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u52d5\u4f5c\u3092\u505c\u6b62\u3057\u307e\u3059\u3002 + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u884c\u65b9\u4e0d\u660e + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u306e\u3067\u3001\nArduino IDE\u306f\u52d5\u4f5c\u3067\u304d\u307e\u305b\u3093\u3002 + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u9078\u629e\u3059\u308b\u304b\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + +#: Base.java:1647 +Problem\ Opening\ URL=\u6307\u5b9a\u306eURL\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 + +#: Base.java:1648 #, java-format -!{0}.html= +Could\ not\ open\ the\ URL\n{0}=URL\u300c{0}\u300d\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Editor.java:1849 Editor.java:1866 -Done\ compiling.=\u30b3\u30f3\u30d1\u30a4\u30eb\u7d42\u4e86\u3002 +#: Base.java:1671 +Problem\ Opening\ Folder=\u30d5\u30a9\u30eb\u30c0\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Editor.java:1958 +#: Base.java:1672 #, java-format -Save\ changes\ to\ "{0}"?\ \ =\u5909\u66f4\u5185\u5bb9\u3092\u300c{0}\u300d\u306b\u66f8\u304d\u8fbc\u307f\u307e\u3059\u304b\uff1f +Could\ not\ open\ the\ folder\n{0}=\u30d5\u30a9\u30eb\u30c0\u300c{0}\u300d\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Editor.java:1991 -\ \ 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.= \u9589\u3058\u308b\u524d\u306b\u30b9\u30b1\u30c3\u30c1\u306b\u52a0\u3048\u305f\u5909\u66f4\u5185\u5bb9\u3092\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f

\u4fdd\u5b58\u3057\u306a\u3044\u3068\u3001\u5909\u66f4\u5185\u5bb9\u306f\u5931\u308f\u308c\u307e\u3059\u3002 +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html -#: Editor.java:2002 -Don't\ Save=\u4fdd\u5b58\u3057\u306a\u3044 +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html -#: Editor.java:2074 -Bad\ file\ selected=\u9593\u9055\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304d\u307e\u3057\u305f\u3002 +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux -#: Editor.java:2075 -Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u3053\u306eIDE\u306f\u3001\u30d5\u30a1\u30a4\u30eb\u540d\u304c\u62e1\u5f35\u5b50.ino\u307e\u305f\u306f.pde\u3067\n\u7d42\u308f\u308b\u30d5\u30a1\u30a4\u30eb\u3060\u3051\u3092\u958b\u304f\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 +#: Base.java:1794 +index.html=index.html -#: Editor.java:2085 +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=environment + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u30e1\u30c3\u30bb\u30fc\u30b8 + +#: Base.java:1842 +Warning=\u8b66\u544a + +#: Base.java:2196 #, java-format -The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u300c{0}\u300d\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u306f\u3001\u300c{1}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30d5\u30a9\u30eb\u30c0\u306e\u4e2d\u306b\u3042\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u81ea\u52d5\u7684\u306b\u3053\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u3063\u3066\u3001\u30d5\u30a1\u30a4\u30eb\u3092\u4e2d\u306b\u5165\u308c\u307e\u3059\u304b\uff1f +Could\ not\ remove\ old\ version\ of\ {0}=\u300c{0}\u300d\u306e\u53e4\u3044\u30d0\u30fc\u30b8\u30e7\u30f3\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Editor.java:2094 -Moving=\u79fb\u52d5\u4e2d - -#: Editor.java:2107 +#: Base.java:2206 #, java-format -A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30d5\u30a9\u30eb\u30c0\u306f\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059\u3002\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u3051\u307e\u305b\u3093\u3002 +Could\ not\ replace\ {0}=\u300c{0}\u300d\u3092\u7f6e\u304d\u63db\u3048\u308b\u4e8b\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Editor.java:2117 -Could\ not\ create\ the\ sketch\ folder.=\u30b9\u30b1\u30c3\u30c1\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 - -#: Editor.java:2126 -Could\ not\ copy\ to\ a\ proper\ location.=\u30b3\u30d4\u30fc\u3059\u308b\u3079\u304d\u30d5\u30a9\u30eb\u30c0\u306b\u30d5\u30a1\u30a4\u30eb\u3092\u30b3\u30d4\u30fc\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 - -#: Editor.java:2144 -Could\ not\ create\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002 - -#: Editor.java:2151 +#: Base.java:2247 Base.java:2270 #, java-format -!{0}\ |\ Arduino\ {1}= +Could\ not\ delete\ {0}=\u300c{0}\u300d\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: Editor.java:2208 Editor.java:2246 -Saving...=\u4fdd\u5b58\u4e2d\u3067\u3059... +#: EditorHeader.java:292 +New\ Tab=\u65b0\u898f\u30bf\u30d6 -#: Editor.java:2213 Editor.java:2249 -Done\ Saving.=\u4fdd\u5b58\u3057\u307e\u3057\u305f\u3002 +#: EditorHeader.java:300 +Rename=\u540d\u524d\u3092\u5909\u66f4 -#: Editor.java:2255 -Save\ Canceled.=\u4fdd\u5b58\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002 +#: EditorHeader.java:326 +Previous\ Tab=\u524d\u306e\u30bf\u30d6 -#: Editor.java:2281 -#, java-format -Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300c{0}\u300d\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\n\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u3092\u5909\u66f4\u3057\u3066\u3001\u3082\u3046\u4e00\u5ea6\u66f8\u304d\u8fbc\u307f\u307e\u3059\u304b\uff1f +#: EditorHeader.java:340 +Next\ Tab=\u6b21\u306e\u30bf\u30d6 -#: Editor.java:2316 -Uploading\ to\ I/O\ Board...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059\u2026 +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u691c\u8a3c -#: Editor.java:2333 Editor.java:2369 -Done\ uploading.=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3078\u306e\u66f8\u304d\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 +#: EditorToolbar.java:41 +Open=\u958b\u304f -#: Editor.java:2341 Editor.java:2377 -Upload\ canceled.=\u66f8\u304d\u8fbc\u307f\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002 +#: EditorToolbar.java:46 +New\ Editor\ Window=\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6 -#: Editor.java:2405 -Save\ changes\ before\ export?=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u884c\u3046\u524d\u306b\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f - -#: Editor.java:2420 -Export\ canceled,\ changes\ must\ first\ be\ saved.=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u884c\u3046\u524d\u306b\u4fdd\u5b58\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 - -#: Editor.java:2442 -Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059\u2026 - -#: Editor.java:2448 -Done\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u306e\u66f8\u304d\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 - -#: Editor.java:2450 Editor.java:2454 Editor.java:2458 -Error\ while\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3082\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 - -#: Editor.java:2485 -Printing...=\u5370\u5237\u3057\u3066\u3044\u307e\u3059... - -#: Editor.java:2502 -Done\ printing.=\u5370\u5237\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 - -#: Editor.java:2505 -Error\ while\ printing.=\u5370\u5237\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 - -#: Editor.java:2509 -Printing\ canceled.=\u5370\u5237\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002 - -#: Editor.java:2557 -#, java-format -Bad\ error\ line\:\ {0}=\u30a8\u30e9\u30fc\u306e\u884c\u756a\u53f7\u300c{0}\u300d\u306f\u7bc4\u56f2\u5916\u3067\u3059\u3002 - -#: Editor.java:2626 -Open\ URL=URL\u3092\u958b\u304f +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u65b0\u898f\u30a6\u30a3\u30f3\u30c9\u30a6\u3067\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304f #: Platform.java:167 No\ launcher\ available=\u5916\u90e8\u30d7\u30ed\u30b0\u30e9\u30e0\u8d77\u52d5\u30c4\u30fc\u30eb\u304c\u6709\u308a\u307e\u305b\u3093\u3002 #: 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=\u5916\u90e8\u30d7\u30ed\u30b0\u30e9\u30e0\u8d77\u52d5\u30c4\u30fc\u30eb\u304c\u6709\u308a\u307e\u305b\u3093\u3002URL\u3084\u30d5\u30a9\u30eb\u30c0\u3092\u81ea\u52d5\u7684\u306b\u958b\u304f\u6a5f\u80fd\u3092\u6709\u52b9\u306b\u3059\u308b\u306b\u306f\u3001preferences.txt\u306b"launcher\=/path/to/app"\u306e\u8a2d\u5b9a\u884c\u3092\u8ffd\u52a0\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u30ab\u30e9\u30fc\u30c6\u30fc\u30de\u306e\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002\nArduino IDE\u3092\u518d\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + +#: Preferences.java:80 +Browse=\u53c2\u7167 + +#: Preferences.java:83 +System\ Default=\u30d1\u30bd\u30b3\u30f3\u306e\u8a2d\u5b9a\u306b\u5f93\u3046 + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=\u30ab\u30bf\u30eb\u30fc\u30cb\u30e3\u8a9e + +#: Preferences.java:87 +Chinese\ Simplified=\u4e2d\u56fd\u8a9e\uff08\u7c21\u4f53\u5b57\uff09 + +#: Preferences.java:88 +Chinese\ Traditional=\u4e2d\u56fd\u8a9e\uff08\u7e41\u4f53\u5b57\uff09 + +#: Preferences.java:89 +Danish=\u30c7\u30f3\u30de\u30fc\u30af\u8a9e + +#: Preferences.java:90 +Dutch=\u30aa\u30e9\u30f3\u30c0\u8a9e + +#: Preferences.java:91 +English=\u82f1\u8a9e + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=\u30d5\u30e9\u30f3\u30b9\u8a9e + +#: Preferences.java:94 +Filipino=\u30d5\u30a3\u30ea\u30d4\u30f3\u8a9e + +#: Preferences.java:95 +Galician=\u30ac\u30ea\u30b7\u30a2\u8a9e + +#: Preferences.java:96 +German=\u30c9\u30a4\u30c4\u8a9e + +#: Preferences.java:97 +Greek=\u30ae\u30ea\u30b7\u30a2\u8a9e + +#: Preferences.java:98 +Hungarian=\u30cf\u30f3\u30ac\u30ea\u30fc\u8a9e + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=\u30a4\u30bf\u30ea\u30a2\u8a9e + +#: Preferences.java:101 +Japanese=\u65e5\u672c\u8a9e + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=\u30e9\u30c8\u30d3\u30a2\u8a9e + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=\u30da\u30eb\u30b7\u30e3\u8a9e + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +Portuguese=\u30dd\u30eb\u30c8\u30ac\u30eb\u8a9e + +#: Preferences.java:109 +Romanian=\u30eb\u30fc\u30de\u30cb\u30a2\u8a9e + +#: Preferences.java:110 +Russian=\u30ed\u30b7\u30a2\u8a9e + +#: Preferences.java:111 +Spanish=\u30b9\u30da\u30a4\u30f3\u8a9e + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u65e2\u5b9a\u306e\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\nArduino IDE\u3092\u3082\u3046\u4e00\u5ea6\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=\u300c{0}\u300d\u304b\u3089\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f\u3002 + +#: Preferences.java:261 +Error\ reading\ preferences=\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u521d\u671f\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\u300c{0}\u300d\u3092\u524a\u9664\u307e\u305f\u306f\u79fb\u52d5\u3057\u3066\u304b\u3089\u3001Arduino IDE\u3092\u518d\u8d77\u52d5\u3057\u3066\u304f\u3060\u3055\u3044\u3002 + +#: Preferences.java:299 +Sketchbook\ location\:=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\uff1a + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\u3092\u6c7a\u3081\u308b + +#: Preferences.java:337 +Editor\ language\:\ =\u8a00\u8a9e\u8a2d\u5b9a\uff1a + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ \u5909\u66f4\u306e\u53cd\u6620\u306b\u306fArduino IDE\u306e\u518d\u8d77\u52d5\u304c\u5fc5\u8981 + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u30a8\u30c7\u30a3\u30bf\u306e\u6587\u5b57\u306e\u5927\u304d\u3055\uff1a + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u3088\u308a\u8a73\u7d30\u306a\u60c5\u5831\u3092\u8868\u793a\u3059\u308b\uff1a + +#: Preferences.java:373 +compilation\ =\u30b3\u30f3\u30d1\u30a4\u30eb + +#: Preferences.java:375 +upload=\u66f8\u304d\u8fbc\u307f + +#: Preferences.java:384 +Verify\ code\ after\ upload=\u66f8\u304d\u8fbc\u307f\u3092\u691c\u8a3c\u3059\u308b + +#: Preferences.java:393 +Use\ external\ editor=\u5916\u90e8\u306e\u30a8\u30c7\u30a3\u30bf\u3092\u4f7f\u7528\u3059\u308b + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u8d77\u52d5\u6642\u306b\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6709\u7121\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u969b\u306b\u3001\u62e1\u5f35\u5b50\u3092.pde\u304b\u3089.ino\u306b\u5909\u66f4\u3059\u308b + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=.ino\u30d5\u30a1\u30a4\u30eb\u3092Arduino IDE\u306b\u95a2\u9023\u3065\u3051\u308b + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u76f4\u63a5\u7de8\u96c6\u3059\u308c\u3070\u3001\u3088\u308a\u591a\u304f\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=\u7de8\u96c6\u3059\u308b\u969b\u306b\u306f\u3001Arduino IDE\u3092\u7d42\u4e86\u3055\u305b\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044\u3002 + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e\u6307\u5b9a\u300c{0}\u300d\u304c\u7570\u5e38\u306a\u306e\u3067\u7121\u8996\u3057\u307e\u3059\u3002 diff --git a/app/src/processing/app/Resources_ko.po b/app/src/processing/app/Resources_ko.po new file mode 100644 index 000000000..8ba1dd432 --- /dev/null +++ b/app/src/processing/app/Resources_ko.po @@ -0,0 +1,1656 @@ +# Korean translations for PACKAGE package. +# Copyright (C) 2012 www.wiznet.co.kr +# This file is distributed under the same license as the PACKAGE package. +# Jinbuhm Kim , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: Jinbuhm Kim \n" +"Language-Team: Korean\n" +"Language: ko\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "스케치에 파일이 추가되지 않았습니다." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "스케치에 1개의 파일이 추가되었습니다." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "스케치에 {0}파일이 추가되었습니다." + +#: Editor.java:484 +msgid "File" +msgstr "파일" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "새 파일" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "열기..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "스케치북" + +#: Editor.java:509 +msgid "Examples" +msgstr "예제" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "닫기" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "저장" + +#: Editor.java:530 +msgid "Save As..." +msgstr "다른 이름으로 저장..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "업로드" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "프로그래머를 이용해 업로드" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "페이지 설정" + +#: Editor.java:564 +msgid "Print" +msgstr "인쇄" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "환경 설정" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "종료" + +#: Editor.java:600 +msgid "Sketch" +msgstr "스케치" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "확인 / 컴파일" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "라이브러리 가져오기..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "스케치 폴더 보이기" + +#: Editor.java:643 +msgid "Add File..." +msgstr "파일 추가..." + +#: Editor.java:656 +msgid "Tools" +msgstr "도구" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "시리얼 모니터" + +#: Editor.java:682 +msgid "Board" +msgstr "보드" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "시리얼 포트" + +#: Editor.java:695 +msgid "Programmer" +msgstr "프로그래머" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "부트로더 굽기" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu가 Null입니다" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "name 이 null입니다." + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "포트 리스르를 가져오는데 오류" + +#: Editor.java:1002 +msgid "Help" +msgstr "도움말" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "시작하기" + +#: Editor.java:1049 +msgid "Environment" +msgstr "환경" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "문제해결" + +#: Editor.java:1065 +msgid "Reference" +msgstr "참조" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "참조에서 찾기" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "자주 묻는 질문" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Arduino.cc를 방문" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "아두이노 정보" + +#: Editor.java:1116 +msgid "Edit" +msgstr "편집" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "취소" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "다시 실행" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "잘라내기" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "복사" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "포럼을 위해 복사" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "HTML로 복사" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "붙여넣기" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "모두 선택" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "주석추가/주석삭제" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "들여쓰기 추가" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "들여쓰기 삭제" + +#: Editor.java:1220 +msgid "Find..." +msgstr "찾기..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "다음 찾기" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "이전 찾기" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "찾기위해 선택된 부분을 사용" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "참조에서 찾기위해 단어를 선택" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "\"{0}\" 가 참조에존재하지 않습니다." + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "스케치 컴파일..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "컴파일 완료" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "변경 사항을 \"{0}\"? 에 저장하시겠습니까? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" " +"
닫기전에 변경사항을 저장하시겠습니까 ?

만약 저장하지 않으면" +"변경된 사항은 손실됩니다." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "취소" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "저장하지 않습니다" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "잘못된 파일이 선택됐습니다" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"프로세싱은 자체 스케치와 .ino 나 .pde로 끝나는 파일을\n" +"열수 있습니니다. " + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "확인" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"\"{0}\" 파일은 스케치 폴더 \"{1}\" 에 있어야 합니다.\n" +"a sketch folder named .\n" +"이 폴더를 생성하고 파일을 이동하고 계속하시겠습니까?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "이동" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "에러" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr " \"{0}\" 폴더 이름이 존재합니다. 스케치를 열수 없습니다." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "스케치 폴더를 생성할 수 없습니다." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "지정한 위치로 파일을 복사할 수 없습니다." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "스케치를 생성할 수 없습니다." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | 아두이노 {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "저장..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "저장 완료" + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "저장 취소" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"시리얼 포트 {0} 를 찾을 수 없습니다.\n" +"다른 시리얼 포트로 업로드를 다시 시도하시겠습니까?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "I/O 보드에 업로드..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "업로드 완료" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "업로드 취소" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "내보내기전에 변경내용을 저장하시겠습니까?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "내보내기 취소, 변경사항은 먼저 저장되야 합니다." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "I/O 보드에 부트로더 굽기 (이것은 시간이 걸릴 수 있습니다)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "부트로더 굽기 완료" + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "부트로더 굽는중 에러발생" + +#: Editor.java:2500 +msgid "Printing..." +msgstr "인쇄..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "인쇄 완료" + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "인쇄하는 중에 오류 발생했습니다." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "인쇄가 취소되었습니다." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "잘못된 오류 라인: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "URL 열기" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "새로운 버젼의 아두이노가 다운로드 가능합니다,\n" +"아두이노 다운로드 페이지로 방문할까요?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "예" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "아니요" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "업데이트" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "찾기:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "대체:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "대소문자 무시" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "자동 줄바꿈" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "모두 바꾸기" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "바꾸기" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "바꾸기 & 찾기" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "이전" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "찾기" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Send" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Autoscroll" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "No line ending" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Newline" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Carriage return" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Both NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr "baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"시리얼 포트 ''{0}'' 가 이미 사용되고 있습니다. 이 포트를 사용하는 다른 프로그램을 " +"종료하십시요. " + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "시리얼 포트 ''{0}'' 를 여는데 에러 발생" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"시리얼 포트 ''{0}''를 찾을 수 없습니다. Tools > Serial Port 메뉴에서 올바른 포트를" +"선택했나요?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"char {1}을 포함 {0} 바이트를 위한 readBytesUntil() 바이트 버퍼가" +" 너무 작습니니다." + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Serial.{0}() 내부 에러" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "자동 포맷" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "자동 포맷을 위해 변경이 필요없습니다." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "자동 포맷 취소: 너무 많은 오른 괄호" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "자동 포맷 취소: 너무 많은 왼 괄호" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "자동 포맷 취소: 너무 많은 오른 중괄호" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "자동 포맷 취소: 너무 많은 왼 중괄호" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "자동 포맷 완료" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "인코딩 수정 & 새로 고침" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "스케치 보관하기" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "스케치를 보관 할 수 없습니다" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"스케치가 제대로 저장되지 않아서 스케치를 보관하는 것이\n" +"취소되었습니다." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "스케치를 보관:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "스케치 보관 취소" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "코드 {0}를 로딩하는 중 에러" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\"에 인식할 수 없는 문자가 포함되어 있습니다. 만약 이 코드가" +"이전 버전의 프로세싱으로 만들어졌다면, Tools -> Fix Encoding & Reload 로" +" UTF-8 인토딩으로 업데이트 할 수 있습니다." +"아니면 잘못된 문자를 삭제하여 이 경고를 제거할 수 있습니다." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "스케치가 읽기 전용입니다" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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" +"다른 장소에 스케치를 다시 저장을 하고\n" +"다시 시도하십시요." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "새로운 파일을 위한 이름:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "스케치가 제목이 없습니다" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"스케치를 다른 이름으로 바꾸기 전에 \n" +"저장하는 것은 어떤가요?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "이름바꾸기 문제" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "이름은 마침표로 시작할 수 없습니다." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" 는 확장자로 사용할 수 없습니다." + +#: Sketch.java:378 +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 "" +"메인 파일은 확장자를 사용할 수 없습니다.\n" +"(\"real\" 프로그래밍 환경으로 전환하는\n" +" 시간일 수도 있습니다.)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "아니요" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "\"{0}\" 파일 이름이 \"{1}\"에 이미 존재합니다." + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "스케치와 동일한 이름의 .cpp 파일을 가질수 없습니다." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"스케치가 이미 같은 이름의 .cpp파일을 가지고 있기 때문에" +"스케치의 이름을 \"{0}\"로 바꿀 수 없습니다\n" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "이름을 바꿀 수 없습니다" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "죄송합니다, \"{0}\"이름의 스케치(또는 폴더)가 이미 존재합니다." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "스케치 이름을 바꿀 수 없습니다. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "\"{0}\" 를 \"{1}\"로 이름을 바꿀 수 없습니다." + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "스케치 이름을 바꿀 수 없습니다. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "스케치 이름을 바꿀 수 없습니다. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile()가 false를 반환했습니다" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "정말로 스케치를 삭제하시겠습니까?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "정말로 \"{0}\"를 삭제하시겠습니까?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "삭제" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "할 수 없습니다." + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "\"{0}\"를 삭제할 수 없습니다." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: 내부 에러.. 코드를 찾을 수 없습니다" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "스케치는 읽기전용입니다" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"파일이 \"읽기 전용\" 으로 표시됩니다.\n" +"다른 장소에 스케치를 다시 저장을 해야 합니다." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"아두이노 1.0에 기본 확장자가 .pde 에서 .ino로 변경이 되었습니다\n" +"새로운 스케치(\"Save-As\"를 통해서 생성된 것도 포함해서)는\n" +"새로운 확장자를 사용합니다.\n" +"기존 스케치는 저장시 업데이트되지만 환경설정 대화상자에서 이 기능을\n" +"해제할 수 있습니다.\n" +"\n" +"스케치를 저장하고 확장자를 업데이트 할까요?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "스케치 폴더를 다른이름으로 저장..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"스케치가 이미 같은 이름의 .cpp파일을 가지고 있기 때문에" +"스케치의 이름을 \"{0}\"로 바꿀 수 없습니다\n" + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "How very Borges of you" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"스케치를 그 자체의 폴더에 저장할 수 없습니다.\n" +"무한 반복될 수 있습니다." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "스케치에 복사하기위해 이미지 또는 다른 데이터 파일을 선택" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "{0}의 기존 버전을 교체하시겠습니까?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "파일 추가 오류" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "''{0}'' 파일을 삭제할 수 없습니다." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "날 속일 생각 말게" + +#: Sketch.java:1079 +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 "" +"이 파일은 이미 당신이 추가하려는\n" +"장소에 복사되었습니다.\n" +"더 이상 진행 할 수 없습니다.\n" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "''{0}''를 스케치에 추가할 수 없습니다." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "빌드 폴더가 사라졌거나 사용할 수 없습니다" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "메인 클래스를 찾을 수 없습니다" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "해결할 수 없는 예외상황 발생: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "빌드 폴더로 {0}를 이동할때 문제 발생" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "업로딩..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "바이너리 스케치 사이즈: {0} 바이트 (최대 {1} 바이트)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "프로그램의 사이즈를 결정할 수 없습니다: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"스케치가 너무 큼; http://www.arduino.cc/en/Guide/Troubleshooting#size" +"이것을 줄이기 위한 도움말" + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "/* 주석 */의 끝에 */ 누락" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "스케치가 사라졌습니다" + +#: Sketch.java:1797 +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 "" +"스케치 폴더가 사라졌습니다\n" +" 같은 장소에 다시 저장을 시도합니다,\n" +"하지만 코드를 제외한 나머지 부분은 잃어버립니다." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "재 저장을 할 수 없습니다" + +#: Sketch.java:1811 +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" +"복사하여 붙여넣을 수 있습니다." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"스케치 이름을 변경해야 합니다. 스케치 이름은 아스키 문자나\n" +" 숫자(하지만 숫자로 시장할 수 없습니다)만 가능합니다.\n" +"그리고 64자 미만이여야 합니다." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "컴파일 에러,이 코드를 {0}로 제출해 주시기 바랍니다" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"선택돤 시리얼 포트(0)는 존재하지 않거나 해당 보드가 연결되지 않았습니다." + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"디바이스가 응답하지 않습니다. 올바른 시리얼 포트가 선택이 되었는지 확인하거나" +"데이터를 내보내기 전에 보드를 리셋하기 바랍니다." + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"보드에 업로딩중에 문제 발생. http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload 를 참고하세요." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"잘못된 마이크로콘트롤러 발견. Tools > Board 메뉴에서 올바른 보드를 선택을 하셨나요?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "보드가 선택되지 않았습니다; 툴>보드 메뉴에서 보드를 선택하시기 바랍니다." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} 가 {1}를 리턴했습니다" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "컴파일 오류 발생" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "스케치 > 라이브러리 가져오기 메뉴에서 SPI 라이브러리를 가져오시기 바랍니다." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"아두이노 0019 경우, 이더넷 라이브러리는 SPI라이브러리에 의존합니다.\n" +"이 사이브러리를 사용하거나 SPI 라이브러리에 의존적인\n" +"다른 라이브러리를 사용하는 것 같습니다." +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "'BYTE' 키워드는 더이상 지원되지 않습니니다." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"아두이노 1.0 경우, 'BYTE' 키워드는 더 이상 지원하지 않습니니다.\n" +"대신 Serial.write()를 사용하시기 바랍니다.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Server 클래스는 EthernetServer로 이름이 변경되었습니다." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"아두이노 1.0 경우, 이더넷 라이브러리의 Server 클래스는 EthernetServer로 이름이 변경되었습니다" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Client 클래스는 EthernetClient로 이름이 변경되었습니다." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"아두이노 1.0 경우, 이더넷 라이브러리의 Client 클래스는 EthernetClient로 이름이 변경되었습니다" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Udp 클래스는 EthernetUdp로 이름이 변경되었습니다." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"아두이노 1.0 경우, 이더넷 라이브러리의 Udp 클래스는 EthernetClient로 이름이 변경되었습니다" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send()는 Wire.write()로 이름이 변경되었습니다." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"아두이노 1.0 경우, Wire.send()함수는 다른 라이브러리와의 일관성을 위해 " +"Wire.write()로 이름이 변경되었습니다" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive()는 Wire.read()로 이름이 변경되었습니다." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"아두이노 1.0 경우, Wire.receive()함수는 다른 라이브러리와의 일관성을 위해 " +"Wire.read()로 이름이 변경되었습니다" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "콘솔 오류" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"콘솔 출력을 저장하는데 사용된 파일을 여는 중에\n" +"문제가 발생했습니다." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "GUI 동작을 설정할때 에러가 발생을 했지만 치명적이지는 않습니다." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "에러 메시지는 다음에 표시됩니다. 하지만 아두이노는 이상 없이 동작합니다." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "플랫폼 설정 문제" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"플랫폼에 특정한 코드를 로드하는 동안\n" +"알수 없는 에러가 발생했습니니다." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "JDK 1.5 이상을 설치하시기 바랍니다." + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"아두이노를 실행하려면 단지 JRE뿐 아니라 전체 JDK가 필요합니니다.\n" +"JDK 1.5이상을 설치하시기 바랍니다.\n" +"자세한 내용은 레퍼런스에서 찾을 수 있습니니다." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "스케치북 폴더가 사라졌습니니다." + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"스케치북 폴더가 더 이상 존재하지 않습니다.\n" +"아두이노는 기본 스케치북 위치으로 전환합니다.\n" +"필요한면 새로운 스케치북 폴더를 만드세요\n" +"그러면 아두이노는 더 이상 얘기하지 않을겁니다.\n" + +#: Base.java:532 +msgid "Time for a Break" +msgstr "휴식 시간" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"새로운 스케치의 자동 네이밍의 한계에 도달했습니다.\n" +"산책을 하시는 것이 어떤가요?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "햇살" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "당신의 신선한 공기를 위한 시간입니다." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "아두이노 스케치를 여세요..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" 정말로" +"종료하기를 원하나요?

마지막에 연 스케치를 닫으면 아두이노를 종료합니니다." + +#: Base.java:970 +msgid "Contributed" +msgstr "기여" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "스케치가 존재하지 않습니다" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"선택한 스케치가 더 이상 존재하지 않습니니다.\n" +"스케체북 메뉴를 업데이트하기 위해 아두이노를\n" +"다시 시작해야 할 수도 있습니다." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +" 스케치 \"{0}\" 를 사용할 수 없습니다.\n" +"스케치 이름은 기본 문자와 숫자를 포함해야 합니다\n" +"(숫자로 시작할 수 없으며 스페이스 없는 아스키문자를 사용하세요).\n" +"이 메시지를 제거하려면 {1}에서 스케치를 제거하세요\n" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "잘못된 이름의 스케치를 무시" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"라이브러리 \"{0}\"를 사용할 수 없습니다.\n" +"라이브러리 이름은 기본 문자와 숫자를 포함해야 합니다\n" +"(숫자로 시작할 수 없으며 스페이스 없는 아스키문자를 사용하세요).\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "잘못된 라이브러리 이름을 무시" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "데이터 폴더를 가져오는데 문제 발생" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "아두이노 데이터 폴더를 가져올 때 에러 발생" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "설정 문제" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"설정을 저장하기 위한 폴더를 생성하지 못해서\n" +"아두이노를 실행할 수 없습니다." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "스케치북을 잊었습니다" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"스케치를 저장하기 위한 폴더를 생성하지 못해서\n" +"아두이노를 실행할 수 없습니다." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "스케치를 위한 폴더를 선택(또는 새로 만들기)..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "URL을 열때 문제 발생" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"URL {0}를\n" +"열 수 없습니다.\n" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "폴더를 열때 문제 발생" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"폴더 {0}를\n" +"열 수 없습니다.\n" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "환경" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "메시지" + +#: Base.java:1842 +msgid "Warning" +msgstr "경고" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "{0}의 이전 버젼을 삭제할 수 없습니다" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "{0}를 바꿀 수 없습니다" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "{0}를 삭제할 수 없습니다" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "새 탭" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "이름 바꾸기" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "이전 탭" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "다음 탭" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "확인" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "열기" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "새 에디터 창" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "다른 창에서 열기" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "런처를 사용할 수 없습니다" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" +"지정되지 않은 플랫폼, 런처를 사용할 수 없습니다.\n" +"URL 또는 폴더를 사용하려면,\n" +"\"launcher=/path/to/app\" 라인을 preferences.txt에 추가합니다." + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"컬러 테마를 읽을 수 없습니다.\n" +"프로세싱을 다시 설치해야 합니다." + +#: Preferences.java:80 +msgid "Browse" +msgstr "찾아보기" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"기본 설정을 읽을 수 없습니다.\n" +"아두이노를 다시 설치해야 합니다." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "{0}로 부터 환경설정을 읽을 수 없습니다" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "환경설정을 읽는 중 오류" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"환경설정을 읽는 중 오류. {0}을 삭제(또는 이동)하고\n" +"아두이노를 다시 시작합니다." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "스케치북 위치: " + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "새로운 스케치북 위치를 선택" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (아두이노를 재시작해야 함)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "에디터 글꼴 크기: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "다음 동작중 자세한 출력 보이기: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "컴파일 " + +#: Preferences.java:375 +msgid "upload" +msgstr "업로드" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "외부 에디터 사용" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "시작시 업데이트 확인" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "스케치 파일을 저장할때 새로운 확장자(.pde -> .ino)로 업데이트" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr ".ino파일을 아두이노와 자동으로 연결합니니다." + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "추가적인 환경 설정은 직접 파일에서 편집할 수 있습니다" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(아두이노가 실행되지 않는 경우에만 수정 가능)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "잘못된 글꼴크기 {0}를 무시" diff --git a/app/src/processing/app/Resources_ko.properties b/app/src/processing/app/Resources_ko.properties new file mode 100644 index 000000000..49214e92a --- /dev/null +++ b/app/src/processing/app/Resources_ko.properties @@ -0,0 +1,1034 @@ +# Korean translations for PACKAGE package. +# Copyright (C) 2012 www.wiznet.co.kr +# This file is distributed under the same license as the PACKAGE package. +# Jinbuhm Kim , 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: Jinbuhm Kim \nLanguage-Team\: Korean\nLanguage\: ko\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\uc2a4\ucf00\uce58\uc5d0 \ud30c\uc77c\uc774 \ucd94\uac00\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\uc2a4\ucf00\uce58\uc5d0 1\uac1c\uc758 \ud30c\uc77c\uc774 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=\uc2a4\ucf00\uce58\uc5d0 {0}\ud30c\uc77c\uc774 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: Editor.java:484 +File=\ud30c\uc77c + +#: Editor.java:486 EditorToolbar.java:41 +New=\uc0c8 \ud30c\uc77c + +#: Editor.java:494 Base.java:903 +Open...=\uc5f4\uae30... + +#: Editor.java:503 +Sketchbook=\uc2a4\ucf00\uce58\ubd81 + +#: Editor.java:509 +Examples=\uc608\uc81c + +#: Editor.java:514 Editor.java:1977 +Close=\ub2eb\uae30 + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\uc800\uc7a5 + +#: Editor.java:530 +Save\ As...=\ub2e4\ub978 \uc774\ub984\uc73c\ub85c \uc800\uc7a5... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\uc5c5\ub85c\ub4dc + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\ud504\ub85c\uadf8\ub798\uba38\ub97c \uc774\uc6a9\ud574 \uc5c5\ub85c\ub4dc + +#: Editor.java:556 +Page\ Setup=\ud398\uc774\uc9c0 \uc124\uc815 + +#: Editor.java:564 +Print=\uc778\uc1c4 + +#: Editor.java:576 Preferences.java:279 +Preferences=\ud658\uacbd \uc124\uc815 + +#: Editor.java:586 Base.java:782 +Quit=\uc885\ub8cc + +#: Editor.java:600 +Sketch=\uc2a4\ucf00\uce58 + +#: Editor.java:602 +Verify\ /\ Compile=\ud655\uc778 / \ucef4\ud30c\uc77c + +#: Editor.java:629 +Import\ Library...=\ub77c\uc774\ube0c\ub7ec\ub9ac \uac00\uc838\uc624\uae30... + +#: Editor.java:634 +Show\ Sketch\ Folder=\uc2a4\ucf00\uce58 \ud3f4\ub354 \ubcf4\uc774\uae30 + +#: Editor.java:643 +Add\ File...=\ud30c\uc77c \ucd94\uac00... + +#: Editor.java:656 +Tools=\ub3c4\uad6c + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\uc2dc\ub9ac\uc5bc \ubaa8\ub2c8\ud130 + +#: Editor.java:682 +Board=\ubcf4\ub4dc + +#: Editor.java:690 +Serial\ Port=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 + +#: Editor.java:695 +Programmer=\ud504\ub85c\uadf8\ub798\uba38 + +#: Editor.java:699 +Burn\ Bootloader=\ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu\uac00 Null\uc785\ub2c8\ub2e4 + +#: Editor.java:927 Editor.java:934 +name\ is\ null=name \uc774 null\uc785\ub2c8\ub2e4. + +#: Editor.java:986 +error\ retrieving\ port\ list=\ud3ec\ud2b8 \ub9ac\uc2a4\ub974\ub97c \uac00\uc838\uc624\ub294\ub370 \uc624\ub958 + +#: Editor.java:1002 +Help=\ub3c4\uc6c0\ub9d0 + +#: Editor.java:1041 +Getting\ Started=\uc2dc\uc791\ud558\uae30 + +#: Editor.java:1049 +Environment=\ud658\uacbd + +#: Editor.java:1057 +Troubleshooting=\ubb38\uc81c\ud574\uacb0 + +#: Editor.java:1065 +Reference=\ucc38\uc870 + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\ucc38\uc870\uc5d0\uc11c \ucc3e\uae30 + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\uc790\uc8fc \ubb3b\ub294 \uc9c8\ubb38 + +#: Editor.java:1091 +Visit\ Arduino.cc=Arduino.cc\ub97c \ubc29\ubb38 + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\uc544\ub450\uc774\ub178 \uc815\ubcf4 + +#: Editor.java:1116 +Edit=\ud3b8\uc9d1 + +#: Editor.java:1119 Editor.java:1341 +Undo=\ucde8\uc18c + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\ub2e4\uc2dc \uc2e4\ud589 + +#: Editor.java:1135 Editor.java:2652 +Cut=\uc798\ub77c\ub0b4\uae30 + +#: Editor.java:1143 Editor.java:2660 +Copy=\ubcf5\uc0ac + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\ud3ec\ub7fc\uc744 \uc704\ud574 \ubcf5\uc0ac + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=HTML\ub85c \ubcf5\uc0ac + +#: Editor.java:1175 Editor.java:2684 +Paste=\ubd99\uc5ec\ub123\uae30 + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\ubaa8\ub450 \uc120\ud0dd + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\uc8fc\uc11d\ucd94\uac00/\uc8fc\uc11d\uc0ad\uc81c + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\ub4e4\uc5ec\uc4f0\uae30 \ucd94\uac00 + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\ub4e4\uc5ec\uc4f0\uae30 \uc0ad\uc81c + +#: Editor.java:1220 +Find...=\ucc3e\uae30... + +#: Editor.java:1235 +Find\ Next=\ub2e4\uc74c \ucc3e\uae30 + +#: Editor.java:1245 +Find\ Previous=\uc774\uc804 \ucc3e\uae30 + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\ucc3e\uae30\uc704\ud574 \uc120\ud0dd\ub41c \ubd80\ubd84\uc744 \uc0ac\uc6a9 + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\ucc38\uc870\uc5d0\uc11c \ucc3e\uae30\uc704\ud574 \ub2e8\uc5b4\ub97c \uc120\ud0dd + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"="{0}" \uac00 \ucc38\uc870\uc5d0\uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\uc2a4\ucf00\uce58 \ucef4\ud30c\uc77c... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\ucef4\ud30c\uc77c \uc644\ub8cc + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\ubcc0\uacbd \uc0ac\ud56d\uc744 "{0}"? \uc5d0 \uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +#: Editor.java:2006 +\ \ 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.=
\ub2eb\uae30\uc804\uc5d0 \ubcc0\uacbd\uc0ac\ud56d\uc744 \uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c ?

\ub9cc\uc57d \uc800\uc7a5\ud558\uc9c0 \uc54a\uc73c\uba74\ubcc0\uacbd\ub41c \uc0ac\ud56d\uc740 \uc190\uc2e4\ub429\ub2c8\ub2e4. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\ucde8\uc18c + +#: Editor.java:2017 +Don't\ Save=\uc800\uc7a5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4 + +#: Editor.java:2089 +Bad\ file\ selected=\uc798\ubabb\ub41c \ud30c\uc77c\uc774 \uc120\ud0dd\ub410\uc2b5\ub2c8\ub2e4 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\ud504\ub85c\uc138\uc2f1\uc740 \uc790\uccb4 \uc2a4\ucf00\uce58\uc640 .ino \ub098 .pde\ub85c \ub05d\ub098\ub294 \ud30c\uc77c\uc744\n\uc5f4\uc218 \uc788\uc2b5\ub2c8\ub2c8\ub2e4. + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=\ud655\uc778 + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?="{0}" \ud30c\uc77c\uc740 \uc2a4\ucf00\uce58 \ud3f4\ub354 "{1}" \uc5d0 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.\na sketch folder named .\n\uc774 \ud3f4\ub354\ub97c \uc0dd\uc131\ud558\uace0 \ud30c\uc77c\uc744 \uc774\ub3d9\ud558\uace0 \uacc4\uc18d\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +#: Editor.java:2109 +Moving=\uc774\ub3d9 + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\uc5d0\ub7ec + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\ "{0}" \ud3f4\ub354 \uc774\ub984\uc774 \uc874\uc7ac\ud569\ub2c8\ub2e4. \uc2a4\ucf00\uce58\ub97c \uc5f4\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\uc2a4\ucf00\uce58 \ud3f4\ub354\ub97c \uc0dd\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\uc9c0\uc815\ud55c \uc704\uce58\ub85c \ud30c\uc77c\uc744 \ubcf5\uc0ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\uc2a4\ucf00\uce58\ub97c \uc0dd\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | \uc544\ub450\uc774\ub178 {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\uc800\uc7a5... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\uc800\uc7a5 \uc644\ub8cc + +#: Editor.java:2270 +Save\ Canceled.=\uc800\uc7a5 \ucde8\uc18c + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 {0} \ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ub2e4\ub978 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8\ub85c \uc5c5\ub85c\ub4dc\ub97c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=I/O \ubcf4\ub4dc\uc5d0 \uc5c5\ub85c\ub4dc... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\uc5c5\ub85c\ub4dc \uc644\ub8cc + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\uc5c5\ub85c\ub4dc \ucde8\uc18c + +#: Editor.java:2420 +Save\ changes\ before\ export?=\ub0b4\ubcf4\ub0b4\uae30\uc804\uc5d0 \ubcc0\uacbd\ub0b4\uc6a9\uc744 \uc800\uc7a5\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\ub0b4\ubcf4\ub0b4\uae30 \ucde8\uc18c, \ubcc0\uacbd\uc0ac\ud56d\uc740 \uba3c\uc800 \uc800\uc7a5\ub418\uc57c \ud569\ub2c8\ub2e4. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=I/O \ubcf4\ub4dc\uc5d0 \ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 (\uc774\uac83\uc740 \uc2dc\uac04\uc774 \uac78\ub9b4 \uc218 \uc788\uc2b5\ub2c8\ub2e4)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 \uc644\ub8cc + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\ubd80\ud2b8\ub85c\ub354 \uad7d\ub294\uc911 \uc5d0\ub7ec\ubc1c\uc0dd + +#: Editor.java:2500 +Printing...=\uc778\uc1c4... + +#: Editor.java:2517 +Done\ printing.=\uc778\uc1c4 \uc644\ub8cc + +#: Editor.java:2520 +Error\ while\ printing.=\uc778\uc1c4\ud558\ub294 \uc911\uc5d0 \uc624\ub958 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. + +#: Editor.java:2524 +Printing\ canceled.=\uc778\uc1c4\uac00 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\uc798\ubabb\ub41c \uc624\ub958 \ub77c\uc778\: {0} + +#: Editor.java:2641 +Open\ URL=URL \uc5f4\uae30 + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\uc0c8\ub85c\uc6b4 \ubc84\uc83c\uc758 \uc544\ub450\uc774\ub178\uac00 \ub2e4\uc6b4\ub85c\ub4dc \uac00\ub2a5\ud569\ub2c8\ub2e4,\n\uc544\ub450\uc774\ub178 \ub2e4\uc6b4\ub85c\ub4dc \ud398\uc774\uc9c0\ub85c \ubc29\ubb38\ud560\uae4c\uc694? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\uc608 + +#: UpdateCheck.java:108 Preferences.java:77 +No=\uc544\ub2c8\uc694 + +#: UpdateCheck.java:111 +Update=\uc5c5\ub370\uc774\ud2b8 + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\ucc3e\uae30\: + +#: FindReplace.java:81 +Replace\ with\:=\ub300\uccb4\: + +#: FindReplace.java:96 +Ignore\ Case=\ub300\uc18c\ubb38\uc790 \ubb34\uc2dc + +#: FindReplace.java:105 +Wrap\ Around=\uc790\ub3d9 \uc904\ubc14\uafc8 + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\ubaa8\ub450 \ubc14\uafb8\uae30 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\ubc14\uafb8\uae30 + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\ubc14\uafb8\uae30 & \ucc3e\uae30 + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\uc774\uc804 + +#: FindReplace.java:124 FindReplace.java:127 +Find=\ucc3e\uae30 + +#: SerialMonitor.java:93 +Send=Send + +#: SerialMonitor.java:110 +Autoscroll=Autoscroll + +#: SerialMonitor.java:112 +No\ line\ ending=No line ending + +#: SerialMonitor.java:112 +Newline=Newline + +#: SerialMonitor.java:112 +Carriage\ return=Carriage return + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Both NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}'' \uac00 \uc774\ubbf8 \uc0ac\uc6a9\ub418\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774 \ud3ec\ud2b8\ub97c \uc0ac\uc6a9\ud558\ub294 \ub2e4\ub978 \ud504\ub85c\uadf8\ub7a8\uc744 \uc885\ub8cc\ud558\uc2ed\uc2dc\uc694. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}'' \ub97c \uc5ec\ub294\ub370 \uc5d0\ub7ec \ubc1c\uc0dd + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 ''{0}''\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. Tools > Serial Port \uba54\ub274\uc5d0\uc11c \uc62c\ubc14\ub978 \ud3ec\ud2b8\ub97c\uc120\ud0dd\ud588\ub098\uc694? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=char {1}\uc744 \ud3ec\ud568 {0} \ubc14\uc774\ud2b8\ub97c \uc704\ud55c readBytesUntil() \ubc14\uc774\ud2b8 \ubc84\ud37c\uac00 \ub108\ubb34 \uc791\uc2b5\ub2c8\ub2c8\ub2e4. + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Serial.{0}() \ub0b4\ubd80 \uc5d0\ub7ec + +#: tools/AutoFormat.java:91 +Auto\ Format=\uc790\ub3d9 \ud3ec\ub9f7 + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\uc790\ub3d9 \ud3ec\ub9f7\uc744 \uc704\ud574 \ubcc0\uacbd\uc774 \ud544\uc694\uc5c6\uc2b5\ub2c8\ub2e4. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\uc790\ub3d9 \ud3ec\ub9f7 \ucde8\uc18c\: \ub108\ubb34 \ub9ce\uc740 \uc624\ub978 \uad04\ud638 + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\uc790\ub3d9 \ud3ec\ub9f7 \ucde8\uc18c\: \ub108\ubb34 \ub9ce\uc740 \uc67c \uad04\ud638 + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\uc790\ub3d9 \ud3ec\ub9f7 \ucde8\uc18c\: \ub108\ubb34 \ub9ce\uc740 \uc624\ub978 \uc911\uad04\ud638 + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\uc790\ub3d9 \ud3ec\ub9f7 \ucde8\uc18c\: \ub108\ubb34 \ub9ce\uc740 \uc67c \uc911\uad04\ud638 + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\uc790\ub3d9 \ud3ec\ub9f7 \uc644\ub8cc + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\uc778\ucf54\ub529 \uc218\uc815 & \uc0c8\ub85c \uace0\uce68 + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\ubaa8\ub4e0 \ubcc0\uacbd\uc744 \ucde8\uc18c\ud558\uace0 \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \ub85c\ub4dc\ud558\ub098\uc694? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\ud30c\uc77c \uc778\ucf54\ub529 \ubb38\uc81c\ub97c \ud574\uacb0\ud558\ub294 \ub3d9\uc548 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.\n\uc774\uc804 \ubc84\uc83c\uc744 \ub36e\uc5b4\uc4f8 \uc218 \uc788\uc73c\ubbc0\ub85c \uc774 \uc2a4\ucf00\uce58 \uc800\uc7a5\ud558\uc9c0 \ub9c8\uc2ed\uc2dc\uc694.\n\uc5f4\uae30 \uba54\ub274\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \uc5f4\uace0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2ed\uc2dc\uc694.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=\uc2a4\ucf00\uce58 \ubcf4\uad00\ud558\uae30 + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\uc2a4\ucf00\uce58\ub97c \ubcf4\uad00 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\uc2a4\ucf00\uce58\uac00 \uc81c\ub300\ub85c \uc800\uc7a5\ub418\uc9c0 \uc54a\uc544\uc11c \uc2a4\ucf00\uce58\ub97c \ubcf4\uad00\ud558\ub294 \uac83\uc774\n\ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\uc2a4\ucf00\uce58\ub97c \ubcf4\uad00\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\uc2a4\ucf00\uce58 \ubcf4\uad00 \ucde8\uc18c + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\ucf54\ub4dc {0}\ub97c \ub85c\ub529\ud558\ub294 \uc911 \uc5d0\ub7ec + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\uc5d0 \uc778\uc2dd\ud560 \uc218 \uc5c6\ub294 \ubb38\uc790\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \ub9cc\uc57d \uc774 \ucf54\ub4dc\uac00\uc774\uc804 \ubc84\uc804\uc758 \ud504\ub85c\uc138\uc2f1\uc73c\ub85c \ub9cc\ub4e4\uc5b4\uc84c\ub2e4\uba74, Tools -> Fix Encoding & Reload \ub85c UTF-8 \uc778\ud1a0\ub529\uc73c\ub85c \uc5c5\ub370\uc774\ud2b8 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\uc544\ub2c8\uba74 \uc798\ubabb\ub41c \ubb38\uc790\ub97c \uc0ad\uc81c\ud558\uc5ec \uc774 \uacbd\uace0\ub97c \uc81c\uac70\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\uc2a4\ucf00\uce58\uac00 \uc77d\uae30 \uc804\uc6a9\uc785\ub2c8\ub2e4 + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\ud30c\uc77c\uc774 "\uc77d\uae30 \uc804\uc6a9" \uc73c\ub85c \ud45c\uc2dc\ub429\ub2c8\ub2e4. \ub530\ub77c\uc11c \n\ub2e4\ub978 \uc7a5\uc18c\uc5d0 \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \uc800\uc7a5\uc744 \ud558\uace0\n\ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2ed\uc2dc\uc694. + +#: Sketch.java:286 +Name\ for\ new\ file\:=\uc0c8\ub85c\uc6b4 \ud30c\uc77c\uc744 \uc704\ud55c \uc774\ub984\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=\uc2a4\ucf00\uce58\uac00 \uc81c\ubaa9\uc774 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\uc2a4\ucf00\uce58\ub97c \ub2e4\ub978 \uc774\ub984\uc73c\ub85c \ubc14\uafb8\uae30 \uc804\uc5d0 \n\uc800\uc7a5\ud558\ub294 \uac83\uc740 \uc5b4\ub5a4\uac00\uc694? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\uc774\ub984\ubc14\uafb8\uae30 \ubb38\uc81c + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=\uc774\ub984\uc740 \ub9c8\uce68\ud45c\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \ub294 \ud655\uc7a5\uc790\ub85c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\uba54\uc778 \ud30c\uc77c\uc740 \ud655\uc7a5\uc790\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n("real" \ud504\ub85c\uadf8\ub798\ubc0d \ud658\uacbd\uc73c\ub85c \uc804\ud658\ud558\ub294\n \uc2dc\uac04\uc77c \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\uc544\ub2c8\uc694 + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"="{0}" \ud30c\uc77c \uc774\ub984\uc774 "{1}"\uc5d0 \uc774\ubbf8 \uc874\uc7ac\ud569\ub2c8\ub2e4. + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\uc2a4\ucf00\uce58\uc640 \ub3d9\uc77c\ud55c \uc774\ub984\uc758 .cpp \ud30c\uc77c\uc744 \uac00\uc9c8\uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:425 +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\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc744 "{0}"\ub85c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4\n + +#: Sketch.java:459 +Cannot\ Rename=\uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\uc8c4\uc1a1\ud569\ub2c8\ub2e4, "{0}"\uc774\ub984\uc758 \uc2a4\ucf00\uce58(\ub610\ub294 \ud3f4\ub354)\uac00 \uc774\ubbf8 \uc874\uc7ac\ud569\ub2c8\ub2e4. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}" \ub97c "{1}"\ub85c \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile()\uac00 false\ub97c \ubc18\ud658\ud588\uc2b5\ub2c8\ub2e4 + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\uc815\ub9d0\ub85c \uc2a4\ucf00\uce58\ub97c \uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\uc815\ub9d0\ub85c "{0}"\ub97c \uc0ad\uc81c\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\uc0ad\uc81c + +#: Sketch.java:620 +Couldn't\ do\ it=\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".="{0}"\ub97c \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \ub0b4\ubd80 \uc5d0\ub7ec.. \ucf54\ub4dc\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Sketch.java:724 +Sketch\ is\ read-only=\uc2a4\ucf00\uce58\ub294 \uc77d\uae30\uc804\uc6a9\uc785\ub2c8\ub2e4 + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\ud30c\uc77c\uc774 "\uc77d\uae30 \uc804\uc6a9" \uc73c\ub85c \ud45c\uc2dc\ub429\ub2c8\ub2e4.\n\ub2e4\ub978 \uc7a5\uc18c\uc5d0 \uc2a4\ucf00\uce58\ub97c \ub2e4\uc2dc \uc800\uc7a5\uc744 \ud574\uc57c \ud569\ub2c8\ub2e4. + +#: Sketch.java:743 +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?=\uc544\ub450\uc774\ub178 1.0\uc5d0 \uae30\ubcf8 \ud655\uc7a5\uc790\uac00 .pde \uc5d0\uc11c .ino\ub85c \ubcc0\uacbd\uc774 \ub418\uc5c8\uc2b5\ub2c8\ub2e4\n\uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58("Save-As"\ub97c \ud1b5\ud574\uc11c \uc0dd\uc131\ub41c \uac83\ub3c4 \ud3ec\ud568\ud574\uc11c)\ub294\n\uc0c8\ub85c\uc6b4 \ud655\uc7a5\uc790\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4.\n\uae30\uc874 \uc2a4\ucf00\uce58\ub294 \uc800\uc7a5\uc2dc \uc5c5\ub370\uc774\ud2b8\ub418\uc9c0\ub9cc \ud658\uacbd\uc124\uc815 \ub300\ud654\uc0c1\uc790\uc5d0\uc11c \uc774 \uae30\ub2a5\uc744\n\ud574\uc81c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n\n\uc2a4\ucf00\uce58\ub97c \uc800\uc7a5\ud558\uace0 \ud655\uc7a5\uc790\ub97c \uc5c5\ub370\uc774\ud2b8 \ud560\uae4c\uc694? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=\uc2a4\ucf00\uce58 \ud3f4\ub354\ub97c \ub2e4\ub978\uc774\ub984\uc73c\ub85c \uc800\uc7a5... + +#: Sketch.java:865 +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\uc2a4\ucf00\uce58\uc758 \uc774\ub984\uc744 "{0}"\ub85c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4\n + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=How very Borges of you + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\uc2a4\ucf00\uce58\uc5d0 \ubcf5\uc0ac\ud558\uae30\uc704\ud574 \uc774\ubbf8\uc9c0 \ub610\ub294 \ub2e4\ub978 \ub370\uc774\ud130 \ud30c\uc77c\uc744 \uc120\ud0dd + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?={0}\uc758 \uae30\uc874 \ubc84\uc804\uc744 \uad50\uccb4\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=\ud30c\uc77c \ucd94\uac00 \uc624\ub958 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=''{0}'' \ud30c\uc77c\uc744 \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:1078 +You\ can't\ fool\ me=\ub0a0 \uc18d\uc77c \uc0dd\uac01 \ub9d0\uac8c + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\uc774 \ud30c\uc77c\uc740 \uc774\ubbf8 \ub2f9\uc2e0\uc774 \ucd94\uac00\ud558\ub824\ub294\n\uc7a5\uc18c\uc5d0 \ubcf5\uc0ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\n\ub354 \uc774\uc0c1 \uc9c4\ud589 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}''\ub97c \uc2a4\ucf00\uce58\uc5d0 \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\ube4c\ub4dc \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uac70\ub098 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\uba54\uc778 \ud074\ub798\uc2a4\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=\ud574\uacb0\ud560 \uc218 \uc5c6\ub294 \uc608\uc678\uc0c1\ud669 \ubc1c\uc0dd\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=\ube4c\ub4dc \ud3f4\ub354\ub85c {0}\ub97c \uc774\ub3d9\ud560\ub54c \ubb38\uc81c \ubc1c\uc0dd + +#: Sketch.java:1661 +Uploading...=\uc5c5\ub85c\ub529... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\ubc14\uc774\ub108\ub9ac \uc2a4\ucf00\uce58 \uc0ac\uc774\uc988\: {0} \ubc14\uc774\ud2b8 (\ucd5c\ub300 {1} \ubc14\uc774\ud2b8) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\ud504\ub85c\uadf8\ub7a8\uc758 \uc0ac\uc774\uc988\ub97c \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\uc2a4\ucf00\uce58\uac00 \ub108\ubb34 \ud07c; http\://www.arduino.cc/en/Guide/Troubleshooting\#size\uc774\uac83\uc744 \uc904\uc774\uae30 \uc704\ud55c \ub3c4\uc6c0\ub9d0 + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* \uc8fc\uc11d */\uc758 \ub05d\uc5d0 */ \ub204\ub77d + +#: Sketch.java:1796 +Sketch\ Disappeared=\uc2a4\ucf00\uce58\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2e4 + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\uc2a4\ucf00\uce58 \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2e4\n \uac19\uc740 \uc7a5\uc18c\uc5d0 \ub2e4\uc2dc \uc800\uc7a5\uc744 \uc2dc\ub3c4\ud569\ub2c8\ub2e4,\n\ud558\uc9c0\ub9cc \ucf54\ub4dc\ub97c \uc81c\uc678\ud55c \ub098\uba38\uc9c0 \ubd80\ubd84\uc740 \uc783\uc5b4\ubc84\ub9bd\ub2c8\ub2e4. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\uc7ac \uc800\uc7a5\uc744 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Sketch.java:1811 +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.=\uc2a4\ucf00\uce58\ub97c \uc81c\ub300\ub85c \ub2e4\uc2dc \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ubb38\uc81c\uac00 \uc788\uc5b4\uc11c \uc544\ub9c8\ub3c4 \ub2e4\ub978 \ud14d\uc2a4\ud2b8 \uc5d0\ub514\ud130\uc5d0,\n\ubcf5\uc0ac\ud558\uc5ec \ubd99\uc5ec\ub123\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubcc0\uacbd\ud574\uc57c \ud569\ub2c8\ub2e4. \uc2a4\ucf00\uce58 \uc774\ub984\uc740 \uc544\uc2a4\ud0a4 \ubb38\uc790\ub098\n \uc22b\uc790(\ud558\uc9c0\ub9cc \uc22b\uc790\ub85c \uc2dc\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4)\ub9cc \uac00\ub2a5\ud569\ub2c8\ub2e4.\n\uadf8\ub9ac\uace0 64\uc790 \ubbf8\ub9cc\uc774\uc5ec\uc57c \ud569\ub2c8\ub2e4. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\ucef4\ud30c\uc77c \uc5d0\ub7ec,\uc774 \ucf54\ub4dc\ub97c {0}\ub85c \uc81c\ucd9c\ud574 \uc8fc\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4 + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\uc120\ud0dd\ub3e4 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8(0)\ub294 \uc874\uc7ac\ud558\uc9c0 \uc54a\uac70\ub098 \ud574\ub2f9 \ubcf4\ub4dc\uac00 \uc5f0\uacb0\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\ub514\ubc14\uc774\uc2a4\uac00 \uc751\ub2f5\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc62c\ubc14\ub978 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8\uac00 \uc120\ud0dd\uc774 \ub418\uc5c8\ub294\uc9c0 \ud655\uc778\ud558\uac70\ub098\ub370\uc774\ud130\ub97c \ub0b4\ubcf4\ub0b4\uae30 \uc804\uc5d0 \ubcf4\ub4dc\ub97c \ub9ac\uc14b\ud558\uae30 \ubc14\ub78d\ub2c8\ub2e4. + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\ubcf4\ub4dc\uc5d0 \uc5c5\ub85c\ub529\uc911\uc5d0 \ubb38\uc81c \ubc1c\uc0dd. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \ub97c \ucc38\uace0\ud558\uc138\uc694. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\uc798\ubabb\ub41c \ub9c8\uc774\ud06c\ub85c\ucf58\ud2b8\ub864\ub7ec \ubc1c\uacac. Tools > Board \uba54\ub274\uc5d0\uc11c \uc62c\ubc14\ub978 \ubcf4\ub4dc\ub97c \uc120\ud0dd\uc744 \ud558\uc168\ub098\uc694? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\ubcf4\ub4dc\uac00 \uc120\ud0dd\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4; \ud234>\ubcf4\ub4dc \uba54\ub274\uc5d0\uc11c \ubcf4\ub4dc\ub97c \uc120\ud0dd\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} \uac00 {1}\ub97c \ub9ac\ud134\ud588\uc2b5\ub2c8\ub2e4 + +#: debug/Compiler.java:426 +Error\ compiling.=\ucef4\ud30c\uc77c \uc624\ub958 \ubc1c\uc0dd + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\uc2a4\ucf00\uce58 > \ub77c\uc774\ube0c\ub7ec\ub9ac \uac00\uc838\uc624\uae30 \uba54\ub274\uc5d0\uc11c SPI \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uac00\uc838\uc624\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\uc544\ub450\uc774\ub178 0019 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub294 SPI\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \uc758\uc874\ud569\ub2c8\ub2e4.\n\uc774 \uc0ac\uc774\ube0c\ub7ec\ub9ac\ub97c \uc0ac\uc6a9\ud558\uac70\ub098 SPI \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \uc758\uc874\uc801\uc778\n\ub2e4\ub978 \ub77c\uc774\ube0c\ub7ec\ub9ac\ub97c \uc0ac\uc6a9\ud558\ub294 \uac83 \uac19\uc2b5\ub2c8\ub2e4.\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' \ud0a4\uc6cc\ub4dc\ub294 \ub354\uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2c8\ub2e4. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, 'BYTE' \ud0a4\uc6cc\ub4dc\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2c8\ub2e4.\n\ub300\uc2e0 Serial.write()\ub97c \uc0ac\uc6a9\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server \ud074\ub798\uc2a4\ub294 EthernetServer\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 Server \ud074\ub798\uc2a4\ub294 EthernetServer\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client \ud074\ub798\uc2a4\ub294 EthernetClient\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 Client \ud074\ub798\uc2a4\ub294 EthernetClient\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp \ud074\ub798\uc2a4\ub294 EthernetUdp\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, \uc774\ub354\ub137 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 Udp \ud074\ub798\uc2a4\ub294 EthernetClient\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send()\ub294 Wire.write()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, Wire.send()\ud568\uc218\ub294 \ub2e4\ub978 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc640\uc758 \uc77c\uad00\uc131\uc744 \uc704\ud574 Wire.write()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()\ub294 Wire.read()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4. + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\uc544\ub450\uc774\ub178 1.0 \uacbd\uc6b0, Wire.receive()\ud568\uc218\ub294 \ub2e4\ub978 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc640\uc758 \uc77c\uad00\uc131\uc744 \uc704\ud574 Wire.read()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4\n + +#: EditorConsole.java:152 +Console\ Error=\ucf58\uc194 \uc624\ub958 + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\ucf58\uc194 \ucd9c\ub825\uc744 \uc800\uc7a5\ud558\ub294\ub370 \uc0ac\uc6a9\ub41c \ud30c\uc77c\uc744 \uc5ec\ub294 \uc911\uc5d0\n\ubb38\uc81c\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI \ub3d9\uc791\uc744 \uc124\uc815\ud560\ub54c \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\uc744 \ud588\uc9c0\ub9cc \uce58\uba85\uc801\uc774\uc9c0\ub294 \uc54a\uc2b5\ub2c8\ub2e4. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\uc5d0\ub7ec \uba54\uc2dc\uc9c0\ub294 \ub2e4\uc74c\uc5d0 \ud45c\uc2dc\ub429\ub2c8\ub2e4. \ud558\uc9c0\ub9cc \uc544\ub450\uc774\ub178\ub294 \uc774\uc0c1 \uc5c6\uc774 \ub3d9\uc791\ud569\ub2c8\ub2e4. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\ud50c\ub7ab\ud3fc \uc124\uc815 \ubb38\uc81c + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\ud50c\ub7ab\ud3fc\uc5d0 \ud2b9\uc815\ud55c \ucf54\ub4dc\ub97c \ub85c\ub4dc\ud558\ub294 \ub3d9\uc548\n\uc54c\uc218 \uc5c6\ub294 \uc5d0\ub7ec\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2c8\ub2e4. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=JDK 1.5 \uc774\uc0c1\uc744 \uc124\uce58\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\uc544\ub450\uc774\ub178\ub97c \uc2e4\ud589\ud558\ub824\uba74 \ub2e8\uc9c0 JRE\ubfd0 \uc544\ub2c8\ub77c \uc804\uccb4 JDK\uac00 \ud544\uc694\ud569\ub2c8\ub2c8\ub2e4.\nJDK 1.5\uc774\uc0c1\uc744 \uc124\uce58\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4.\n\uc790\uc138\ud55c \ub0b4\uc6a9\uc740 \ub808\ud37c\ub7f0\uc2a4\uc5d0\uc11c \ucc3e\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2c8\ub2e4. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2c8\ub2e4. + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\uac00 \ub354 \uc774\uc0c1 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub294 \uae30\ubcf8 \uc2a4\ucf00\uce58\ubd81 \uc704\uce58\uc73c\ub85c \uc804\ud658\ud569\ub2c8\ub2e4.\n\ud544\uc694\ud55c\uba74 \uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\ub97c \ub9cc\ub4dc\uc138\uc694\n\uadf8\ub7ec\uba74 \uc544\ub450\uc774\ub178\ub294 \ub354 \uc774\uc0c1 \uc598\uae30\ud558\uc9c0 \uc54a\uc744\uac81\ub2c8\ub2e4.\n + +#: Base.java:532 +Time\ for\ a\ Break=\ud734\uc2dd \uc2dc\uac04 + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\uc758 \uc790\ub3d9 \ub124\uc774\ubc0d\uc758 \ud55c\uacc4\uc5d0 \ub3c4\ub2ec\ud588\uc2b5\ub2c8\ub2e4.\n\uc0b0\ucc45\uc744 \ud558\uc2dc\ub294 \uac83\uc774 \uc5b4\ub5a4\uac00\uc694? + +#: Base.java:537 +Sunshine=\ud587\uc0b4 + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\ub2f9\uc2e0\uc758 \uc2e0\uc120\ud55c \uacf5\uae30\ub97c \uc704\ud55c \uc2dc\uac04\uc785\ub2c8\ub2e4. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\uc544\ub450\uc774\ub178 \uc2a4\ucf00\uce58\ub97c \uc5ec\uc138\uc694... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \uc815\ub9d0\ub85c\uc885\ub8cc\ud558\uae30\ub97c \uc6d0\ud558\ub098\uc694?

\ub9c8\uc9c0\ub9c9\uc5d0 \uc5f0 \uc2a4\ucf00\uce58\ub97c \ub2eb\uc73c\uba74 \uc544\ub450\uc774\ub178\ub97c \uc885\ub8cc\ud569\ub2c8\ub2c8\ub2e4. + +#: Base.java:970 +Contributed=\uae30\uc5ec + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\uc2a4\ucf00\uce58\uac00 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4 + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\uc120\ud0dd\ud55c \uc2a4\ucf00\uce58\uac00 \ub354 \uc774\uc0c1 \uc874\uc7ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2c8\ub2e4.\n\uc2a4\ucf00\uccb4\ubd81 \uba54\ub274\ub97c \uc5c5\ub370\uc774\ud2b8\ud558\uae30 \uc704\ud574 \uc544\ub450\uc774\ub178\ub97c\n\ub2e4\uc2dc \uc2dc\uc791\ud574\uc57c \ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. + +#: Base.java:1125 +#, 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}=\ \uc2a4\ucf00\uce58 "{0}" \ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\uc2a4\ucf00\uce58 \uc774\ub984\uc740 \uae30\ubcf8 \ubb38\uc790\uc640 \uc22b\uc790\ub97c \ud3ec\ud568\ud574\uc57c \ud569\ub2c8\ub2e4\n(\uc22b\uc790\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc73c\uba70 \uc2a4\ud398\uc774\uc2a4 \uc5c6\ub294 \uc544\uc2a4\ud0a4\ubb38\uc790\ub97c \uc0ac\uc6a9\ud558\uc138\uc694).\n\uc774 \uba54\uc2dc\uc9c0\ub97c \uc81c\uac70\ud558\ub824\uba74 {1}\uc5d0\uc11c \uc2a4\ucf00\uce58\ub97c \uc81c\uac70\ud558\uc138\uc694\n + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\uc798\ubabb\ub41c \uc774\ub984\uc758 \uc2a4\ucf00\uce58\ub97c \ubb34\uc2dc + +#: Base.java:1202 +#, 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)=\ub77c\uc774\ube0c\ub7ec\ub9ac "{0}"\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ub77c\uc774\ube0c\ub7ec\ub9ac \uc774\ub984\uc740 \uae30\ubcf8 \ubb38\uc790\uc640 \uc22b\uc790\ub97c \ud3ec\ud568\ud574\uc57c \ud569\ub2c8\ub2e4\n(\uc22b\uc790\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc73c\uba70 \uc2a4\ud398\uc774\uc2a4 \uc5c6\ub294 \uc544\uc2a4\ud0a4\ubb38\uc790\ub97c \uc0ac\uc6a9\ud558\uc138\uc694).\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\uc798\ubabb\ub41c \ub77c\uc774\ube0c\ub7ec\ub9ac \uc774\ub984\uc744 \ubb34\uc2dc + +#: Base.java:1432 +Problem\ getting\ data\ folder=\ub370\uc774\ud130 \ud3f4\ub354\ub97c \uac00\uc838\uc624\ub294\ub370 \ubb38\uc81c \ubc1c\uc0dd + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=\uc544\ub450\uc774\ub178 \ub370\uc774\ud130 \ud3f4\ub354\ub97c \uac00\uc838\uc62c \ub54c \uc5d0\ub7ec \ubc1c\uc0dd + +#: Base.java:1440 +Settings\ issues=\uc124\uc815 \ubb38\uc81c + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\uc124\uc815\uc744 \uc800\uc7a5\ud558\uae30 \uc704\ud55c \ud3f4\ub354\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud574\uc11c\n\uc544\ub450\uc774\ub178\ub97c \uc2e4\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\uc2a4\ucf00\uce58\ubd81\uc744 \uc78a\uc5c8\uc2b5\ub2c8\ub2e4 + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\uc2a4\ucf00\uce58\ub97c \uc800\uc7a5\ud558\uae30 \uc704\ud55c \ud3f4\ub354\ub97c \uc0dd\uc131\ud558\uc9c0 \ubabb\ud574\uc11c\n\uc544\ub450\uc774\ub178\ub97c \uc2e4\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\uc2a4\ucf00\uce58\ub97c \uc704\ud55c \ud3f4\ub354\ub97c \uc120\ud0dd(\ub610\ub294 \uc0c8\ub85c \ub9cc\ub4e4\uae30)... + +#: Base.java:1647 +Problem\ Opening\ URL=URL\uc744 \uc5f4\ub54c \ubb38\uc81c \ubc1c\uc0dd + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=URL {0}\ub97c\n\uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n + +#: Base.java:1671 +Problem\ Opening\ Folder=\ud3f4\ub354\ub97c \uc5f4\ub54c \ubb38\uc81c \ubc1c\uc0dd + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\ud3f4\ub354 {0}\ub97c\n\uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\ud658\uacbd + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\uba54\uc2dc\uc9c0 + +#: Base.java:1842 +Warning=\uacbd\uace0 + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}={0}\uc758 \uc774\uc804 \ubc84\uc83c\uc744 \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}={0}\ub97c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}={0}\ub97c \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: EditorHeader.java:292 +New\ Tab=\uc0c8 \ud0ed + +#: EditorHeader.java:300 +Rename=\uc774\ub984 \ubc14\uafb8\uae30 + +#: EditorHeader.java:326 +Previous\ Tab=\uc774\uc804 \ud0ed + +#: EditorHeader.java:340 +Next\ Tab=\ub2e4\uc74c \ud0ed + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\ud655\uc778 + +#: EditorToolbar.java:41 +Open=\uc5f4\uae30 + +#: EditorToolbar.java:46 +New\ Editor\ Window=\uc0c8 \uc5d0\ub514\ud130 \ucc3d + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\ub2e4\ub978 \ucc3d\uc5d0\uc11c \uc5f4\uae30 + +#: Platform.java:167 +No\ launcher\ available=\ub7f0\ucc98\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: 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=\uc9c0\uc815\ub418\uc9c0 \uc54a\uc740 \ud50c\ub7ab\ud3fc, \ub7f0\ucc98\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\nURL \ub610\ub294 \ud3f4\ub354\ub97c \uc0ac\uc6a9\ud558\ub824\uba74,\n"launcher\=/path/to/app" \ub77c\uc778\uc744 preferences.txt\uc5d0 \ucd94\uac00\ud569\ub2c8\ub2e4. + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\uceec\ub7ec \ud14c\ub9c8\ub97c \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ud504\ub85c\uc138\uc2f1\uc744 \ub2e4\uc2dc \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. + +#: Preferences.java:80 +Browse=\ucc3e\uc544\ubcf4\uae30 + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\uae30\ubcf8 \uc124\uc815\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub97c \ub2e4\uc2dc \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}={0}\ub85c \ubd80\ud130 \ud658\uacbd\uc124\uc815\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 + +#: Preferences.java:261 +Error\ reading\ preferences=\ud658\uacbd\uc124\uc815\uc744 \uc77d\ub294 \uc911 \uc624\ub958 + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\ud658\uacbd\uc124\uc815\uc744 \uc77d\ub294 \uc911 \uc624\ub958. {0}\uc744 \uc0ad\uc81c(\ub610\ub294 \uc774\ub3d9)\ud558\uace0\n\uc544\ub450\uc774\ub178\ub97c \ub2e4\uc2dc \uc2dc\uc791\ud569\ub2c8\ub2e4. + +#: Preferences.java:299 +Sketchbook\ location\:=\uc2a4\ucf00\uce58\ubd81 \uc704\uce58\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\uc0c8\ub85c\uc6b4 \uc2a4\ucf00\uce58\ubd81 \uc704\uce58\ub97c \uc120\ud0dd + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (\uc544\ub450\uc774\ub178\ub97c \uc7ac\uc2dc\uc791\ud574\uc57c \ud568) + +#: Preferences.java:354 +Editor\ font\ size\:\ =\uc5d0\ub514\ud130 \uae00\uaf34 \ud06c\uae30\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\ub2e4\uc74c \ub3d9\uc791\uc911 \uc790\uc138\ud55c \ucd9c\ub825 \ubcf4\uc774\uae30\: + +#: Preferences.java:373 +compilation\ =\ucef4\ud30c\uc77c + +#: Preferences.java:375 +upload=\uc5c5\ub85c\ub4dc + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +Use\ external\ editor=\uc678\ubd80 \uc5d0\ub514\ud130 \uc0ac\uc6a9 + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\uc2dc\uc791\uc2dc \uc5c5\ub370\uc774\ud2b8 \ud655\uc778 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\uc2a4\ucf00\uce58 \ud30c\uc77c\uc744 \uc800\uc7a5\ud560\ub54c \uc0c8\ub85c\uc6b4 \ud655\uc7a5\uc790(.pde -> .ino)\ub85c \uc5c5\ub370\uc774\ud2b8 + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=.ino\ud30c\uc77c\uc744 \uc544\ub450\uc774\ub178\uc640 \uc790\ub3d9\uc73c\ub85c \uc5f0\uacb0\ud569\ub2c8\ub2c8\ub2e4. + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\ucd94\uac00\uc801\uc778 \ud658\uacbd \uc124\uc815\uc740 \uc9c1\uc811 \ud30c\uc77c\uc5d0\uc11c \ud3b8\uc9d1\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4 + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(\uc544\ub450\uc774\ub178\uac00 \uc2e4\ud589\ub418\uc9c0 \uc54a\ub294 \uacbd\uc6b0\uc5d0\ub9cc \uc218\uc815 \uac00\ub2a5) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\uc798\ubabb\ub41c \uae00\uaf34\ud06c\uae30 {0}\ub97c \ubb34\uc2dc diff --git a/app/src/processing/app/Resources_lt.po b/app/src/processing/app/Resources_lt.po new file mode 100644 index 000000000..ebafb1b6e --- /dev/null +++ b/app/src/processing/app/Resources_lt.po @@ -0,0 +1,1661 @@ +# Lithuanian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Laimutis Palivonas , 2012 +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-07 08:00 +0100\n" +"PO-Revision-Date: 2012-04-09 21:25 +0100\n" +"Last-Translator: Laimutis Palivonas \n" +"Language-Team: Lithuanian\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Į projektą nebuvo pridėta jokių failų." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Į projektą pridėtas vienas failas." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "Į projektą pridėtas(-i) {0} failas(-ai)." + +#: Editor.java:484 +msgid "File" +msgstr "Failai" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Naujas" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Atidaryti..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Projektai" + +#: Editor.java:509 +msgid "Examples" +msgstr "Pavyzdžiai" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Uždaryti" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Išsaugoti" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Išsaugoti kaip..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Įkelti" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Įkelti naudojant programatorių" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Puslapio nustatymai" + +#: Editor.java:564 +msgid "Print" +msgstr "Spausdinti" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Nustatymai" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Išeiti" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Projektas" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Patikrinti / Kompiliuoti" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Pridėti biblioteką..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Parodyti projekto aplanką" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Pridėti failą..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Įrankiai" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Nuosekliojo porto monitorius" + +#: Editor.java:682 +msgid "Board" +msgstr "Plokštė" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Nuoseklusis portas" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programatorius" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Įrašyti įkrovos programą" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "Nuosekliojo porto meniu tuščias" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "nėra pavadinimo" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "klaida sudarant portų sąrašą" + +#: Editor.java:1002 +msgid "Help" +msgstr "Pagalba" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Pradedantiesiems" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Programos aplinka" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Klaidų diagnostika" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Žinynas" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Ieškoti žinyne" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Dažniausiai užduodami klausimai" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Eiti į Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Apie Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Redaguoti" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Atšaukti" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Perdaryti" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Iškirpti" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopijuoti" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopijuoti forumui" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopijuoti kaip HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Įterpti" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Pažymėti viską" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Komentuoti/Nekomentuoti" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Padidinti teksto postumį" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Sumažinti teksto postumį" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Ieškoti..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Ieškoti sekančio" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Ieškoti ankstesnio" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Naudoti žymėjimą ieškant" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Prieš paiešką žinyne, pirmiausia pažymėkite žodį." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Įrašas nerastas apie \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Projektas kompiliuojamas..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Kompiliacija baigta." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Išsaugoti pakeitimus \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Ar " +"norite išsaugoti šio projekto pakeitimus
prieš išeinant?

Jei neišsaugosite, " +"jūsų pakeitimai bus prarasti." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Atšaukti" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Neišsaugoti" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Pasirinktas netinkamas failas" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Programa gali atidaryti tik savo projektus\n" +"ir failus su plėtiniais .ino ir .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "Gerai" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Failas \"{0}\" turi būti\n" +"projekto aplanke, pavadinimu \"{1}\".\n" +"Sukurti šį aplanką, perkelti failą ir testi??" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Perkėlimas" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Klaida" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Aplankas \"{0}\" jau egzistuoja. Negalima atidaryti projekto." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Nepavyko sukurti projekto aplanko." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Nepavyko nukopijuoti projekto į reikiamą aplanką." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Nepavyko sukurti projekto." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Išsaugoma..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Išsaugota." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Išsaugojimas atšauktas." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Nuoseklusis portas {0} nerastas.\n" +"Tęsti įkėlimą naudojant kitą nuoseklujį portą?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Įkeliama į I/O plokštę..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Įkėlimas baigtas." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Įkėlimas atšauktas." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Įšsaugoti pakeitimus prieš eksportuojant?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Eksportavimas atšauktas, pirmiausia turi būti išsaugoti pakeitimai." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Į I/O plokštę įkeliama įkrovos programa (tai gali užtrukti kelias minutes)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Įkrovos programa įkelta." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Klaida įkeliant įkrovos programą." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Spausdinama..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Spausdinimas baigtas." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Klaida spausdinant." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Spausdinimas atšauktas." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Eilutė su klaida: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Atidaryti nuorodą" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Yra nauja Arduino programos versija,\n" +"ar norite eiti į Arduino atsisiuntimų tinklapį?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Taip" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Ne" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Atnaujinti" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Ieškoti:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Pakeisti į:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignoruoti kapitaliaciją" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Laužyti tekstą" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Pakeisti viską" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Pakeisti" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Pakeisti ir surasti" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Ankstesnis" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Ieškoti" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Siųsti" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Automatinis teksto slinkimas" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Be eilutės pabaigos" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Nauja eilutė" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Grįžimas (CR)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Naudoti NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " greitis" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Nuoseklusis portas ''{0}'' naudojamas. Pabandykite išjungti programą, kuri " +"gali jį naudoti." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Klaida atidarant nuoseklujį portą ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Nuoseklusis portas ''{0}'' nerastas. Ar pasirinkote tinkamą iš Įrankiai > " +"Nuoseklusis portas meniu?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() baitų buferis yra per mažas {0} baitams(-ų) ir " +"įskaitant simbolį {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Klaida Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Automatinis formatavimas" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Automatiniam formatavimui pakeitimai nereikalingi." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Automatinis formatavims atšauktas: perdaug dešiniųjų skliaustų." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Automatinis formatavims atšauktas: perdaug kairiųjų skliaustų." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Automatinis formatavimas atšauktas: perdaug dešiniųjų figūrinių skliaustų." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Automatinis formatavimas atšauktas: perdaug kairiųjų figūrinių skliaustų." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Automatinis formatavimas baigtas." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Pataisyti kodavimą ir įkelti iš naujo." + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Atšaukti pakeitimus ir įkelti iš naujo??" + +#: 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 "" +"Klaida bandant pataisyti failo kodavimą.\n" +"Nebandykite išsaugoti projekto, nes tai gali panaikinti seną\n" +"versiją. Naudokite Atidaryti, kad įkelti projektą iš naujo ir bandyti dar kartą.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Archyvuoti projektą" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Neįmanoma archyvuoti projekto" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Projekto archyvavimas atšauktas, nes neimanoma\n" +"jo tinkamai išsaugoti." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Archyvuoti projektą kaip:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Projekto archyvavimas atšauktas." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Klaida įkeliant kodą {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" sudaro nežinomi simboliai. Jei šis kodas buvo sukurtas naudojant senesnę " +"programos versiją, turėtumėte naudoti Įrankiai -> Pataisyti kodavimą ir įkelti iš naujo, " +"kad atnaujinti projektą naudojant UTF-8 kodavimą. Arba turėtumėte ištrinti " +"nežinomus simbolius kad panaikinti šią klaidą." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Projektas skirtas tik skaitymui" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Kaikurie failai pažymėti kaip \"tik skaitymui\",\n" +"todėl turėtumėte išsaugoti projektą į kitą vietą,\n" +"ir bandyti iš naujo." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Naujo failo pavadinimas:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Projektas be pavadinimo" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Pirmiausia išsaugoti projektą \n" +"prieš bandant jį pervadinti?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Klaida pervadinant" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Pavadinimas negali prasidėti tašku." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" yra klaidingas plėtinys." + +#: Sketch.java:378 +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 "" +"Pagrindinis failas negali turėti plėtinio.\n" +"(Turbūt laikas jums pereiti prie\n" +"\"tikros\" programavimo aplinkos)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Ne" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Failas \"{0}\" jau egzistuoja \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Failas .cpp negali būti tuo pačiu pavadinimu kaip ir projektas." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Negalite pervadinti projekto į \"{0}\"\n" +"nes projektas jau turi .cpp failą tokiu pavadinimu." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Neįmanoma pervadinti" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Atsiprašome, projektas (arba aplankas) pavadinimu \"{0}\" jau egzistuoja." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Neįmanoma pervadinti projekto. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Neįmanoma pervadinti \"{0}\" į \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Neįmanoma pervadinti projekto. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Neįmanoma pervadinti projekto. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() grąžino klaidą (false)" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Ar tikrai norite ištrinti projektą?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Ar tikrai norite ištrinti \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Ištrinti" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Neįmanoma to padaryti" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Neįmanoma ištrinti \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: vidinė klaida... kodas nerastas" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Projektas skirtas tik skaitymui" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Kaikurie failai pažymėti kaip \"tik skaitymui\",\n" +"turėtumėte išsaugoti projektą i kitą vietą." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"Nuo Arduino 1.0, failų plėtinys pasikeitė iš .pde į .ino.\n" +"Nauji projektai (įskaitant sukurtus naudojant\n" +"\"Išsaugoti kaip\" turės naujus plėtinius. Esamų projektų\n" +"plėtiniai bus pakeisti juos išsaugant, bet jūs galite šią funkciją\n" +"išjungti Nustatymų dialoge.\n" +"\n" +"Išsaugoti projektą ir pakeisti jo plėtinį?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Išsaugoti projekto aplanką kaip..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Negalite išsaugoti projekto kaip \"{0}\"\n" +"nes projektas jau turi .cpp failą tokiu pavadinimu." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Kaip siurrealu" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Negalite išsaugoti į aplanką, projekto\n" +"aplanko viduje. Tai tęstusi amžinai." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Pasirinkite atvaizdą arba kitą duomenų failą, kad įkelti į jūsų projektą" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Pakeisti esamą {0} versiją?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Klaida pridedant failą" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Neįmanoma ištrinti esamo ''{0}'' failo." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Manęs neapgausi" + +#: Sketch.java:1079 +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 "" +"Šis failas jau buvo nokipijuotas i aplanką, iš\n" +"kurio bandote jį pridėti.\n" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "''{0}'' neįmanoma pridėti į projektą." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Programos aplankas nerastas arba neįmanoma į jį rašyti" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Neįmanoma rasti pagrindinės klasės (class)" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Nežinomas išimties tipas: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Klaida perkeliant {0} į programos aplanką" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Įkeliama..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Dvejetainis projekto dydis: {0} baitų (iš {1} leistinų)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Neįmanoma nustatyti programos dydžio: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Projektas per dydelis; ieškokite http://www.arduino.cc/en/Guide/Troubleshooting#size " +"patarimų, ją mažinant." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Trūksta */ komentarų /* pabaigoje */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Projektas nerastas" + +#: Sketch.java:1797 +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 "" +"Nerastas projekto aplankas.\n" +" Bus bandoma jį išsaugoti į tą pačią vietą,\n" +"bet viskas, išskyrus kodą, bus prarasta." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Neįmanoma išnaujo išsaugoti projekto." + +#: Sketch.java:1811 +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 "" +"Neįmanoma iš naujo išsaugoti projekto. Pabandykite nukopijuoti programos \n" +"kodą į kitą tekstinį redaktorių." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Projekto pavadinimas turi būti pakeistas. Projektų pavadinimai turi būti\n" +"sudaryti tik iš ASCII simbolių ir skaičių (bet negali prasidėti\n" +"skaičiumi). Taip pat turi būti ne ilgesni nei 64 simboliai.\n" + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Kompiliatoriaus klaida, prašome perkelti šį kodą į {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"pasirinktas nuoseklusis portas {0} neegzistuoja arba jūsų plokštė nepajungta" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Įrenginys neatsako, patikrinkite ar pasirinktas tinkamas nuoseklusis portas" +"arba perkraukite plokštę prieš įkrovą" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Klaida įkeliant į plokštę. Ieškokite http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload klaidos sprendimo." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Rastas netinkamas mokrokontroleris. Ar pasirinkote tinkamą plokštę \n" +"iš Įrankiai > Plokštė meniu?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Nepasirinkta plokštė; prašome ją pasirinkti iš Įrankiai > Plokštė \n" +"meniu." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} grąžino {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Klaida kompiliuojant." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Prašome pridėti SPI biblioteką iš Projektas > Pridėti biblioteką meniu." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"Nuo Arduino 0019, Ethernet biblioteka priklausoma nuo SPI bibliotekos.\n" +"Panašu, kad naudojate šią arba kitą biblioteką, kuri priklausoma nuo " +"SPI bibliotekos." + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Raktažodis 'BYTE' daugiau nebepalaikomas." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Nuo Arduino 1.0, raktažodis 'BYTE' nebepalaikomas.\n" +"Vietoje jo prašome naudoti Serial.write().\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Klasė Server buvo pervardinta į EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Nuo Arduino 1.0, Ethernet bibliotekos klasė Server buvo pervardinta " +"į EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Klasė Client buvo pervardinta į EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Nuo Arduino 1.0, Ethernet bibliotekos klasė Client buvo pervardinta\n" +"į EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Klasė Udp buvo pervardinta į EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Nuo Arduino 1.0, Ethernet bibliotekos klasė Udp buvo pervardinta\n" +"į EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() buvo pervardinta į Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Nuo Arduino 1.0, funkcija Wire.send() buvo pervardinta į Wire.write() dėl" +"geresnio derėjimo su kitomis bibliotekomis.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() buvo pervardinta į Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Nuo Arduino 1.0, funkcija Wire.receive() buvo pervardinta į Wire.read() dėl" +"geresnio derėjimo su kitomis bibliotekomis.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Konsolės klaida" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Klaida bandant atidaryti failą,\n" +"naudojamą konsolės išvesties saugojimui." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Nekritinė klaida nustatant bendrają išvaizdą." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Klaida neišnyksta, tačiau Arduino turėtų veikti gerai." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problema nustatant platformą." + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Nežinoma klaida bandant atidaryti\n" +"specifinį jūsų įrenginiui kodą." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Prašome instaliuoti JDK 1.5 arba vėlesnį" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino reikalingas pilnas JDK (nevien tik JRE).\n" +"Prašome instaliuoti JDL 1.5 arba vėlesnį.\n" +"Daugiau informacijos galima rasti žinyne." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Nerandamas projekto aplankas" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Projekto aplankas nebeegzistuoja.\n" +"Arduino pereis i projekto aplanką pagal nutylėjimą ir, \n" +"jei tas reikalinga, sukurs naują projekto aplanką.\n" +"Tada Arduino liausis kalbėti apie save trečiuoju asmeniu.\n" + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Laikas pertraukai" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Pasiektas automatinio projekto vardų suteikimo limitas šiai dienai.\n" +"Ką manote apie pasivaikščiojimą?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Saulėta" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Ištikrųjų, jums laikas įkvėpti gryno oro." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Atidaryti Arduino projektą..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Ar \n" +"tikrai norite išeiti?

Uždarant paskutinijį atdarą projektą išsijungs Arduino \n" +"programa." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribuido" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Projektas neegzistuoja" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Pasirinktas projektas nebeegzistuoja.\n" +"Turbūt turėtumėte perleisti Arduino, kad atnaujinti\n" +"projektų meniu." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Projektas \"{0}\" negali būti naudojamas.\n" +"Projekto pavadinimą turi sudaryti tik raidės ir skaičiai\n" +"(tik ASCII be tarpų, ir negali prasidėti skaičiumi).\n" +"Kad panaikinti šį pranešimą, ištrinkite projektą iš\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignoruojamas projektas su netinkamu pavadinimu" + +#: Base.java:1202 +#, java-format +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 "" +"Biblioteka \"{0}\" negali būti naudojama.\n" +"Bibliotekų pavadinimus turi sudaryti tik raidės ir skaičiai.\n" +"(Tik ASCII be tarpų, ir negali prasidėti skaičiumi).\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignoruojamas netinkamas bibliotekos pavadinimas" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Klaida kreipiantis į duomenų aplanką" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Klaida kreipiantis į Arduino duomenų aplanką." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Nustatymų klaidos" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino negali veikti, nes neįmanoma\n" +"sukurti aplanko jūsų nustatymų saugojimui." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Pamiršote savo projektų segtuvą" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino negali veikti, nes neįmanoma\n" +"sukurti aplanko jūsų projektų saugojimui." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Pasirinkite (arba sukurkite naują) projektų aplanką ..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Klaida atidarant nuorodą" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Neįmanoma atidaryti nuorodos\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Klaida atidarant aplanką" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Neįmanoma atidaryti aplanko\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "darbinė aplinka" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Pranešimas" + +#: Base.java:1842 +msgid "Warning" +msgstr "Perspėjimas" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Neįmanoma panaikinti senos {0} versijos" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Neįmanoma pakeisti {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Neįmanoma ištrinti {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Naujas skirtukas" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Pervadinti" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Ankstesnis skirtukas" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Sekantis skirtukas" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Patvirtinti" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Atidaryti" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Naujas redaktoriaus langas" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Atidaryti naujame lange" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Nerasta jokio paleidėjo" + +#: 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 "" +"Neatpažinta platforma, nerasta jokio paleidėjo.\n" +"Kad galėtumėte atidaryti nuorodas arba aplankus, pridėkite \n" +"\"launcher=/kelias/į/programą\" į failą preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Neįmanoma nuskaityti spalvų nustatymų." +"Turėsite perinstaliuoti Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Naršyti" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Katalonų" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Kinų (supaprastinta)" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Danų" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Olandų" + +#: Preferences.java:91 +msgid "English" +msgstr "Anglų" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Prancūzų" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipinų" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galų" + +#: Preferences.java:96 +msgid "German" +msgstr "Vokiečių" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Graikų" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Vengrų" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italų" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Japonų" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Latvių" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persų" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Rumunų" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Ispanų" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Neįmanoma nuskaityti nustatymų pagal nutylėjimą.\n" +"Turėsite perinstaliuoti Arduino programą." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Neįmanoma nuskaityti nustatymų iš {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Klaida nuskaitant nustatymus" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Klaida nuskaitant nustatymų failą. Prašome ištrinti (arba perkelti)\n" +"{0} ir perleisti Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Projektų vieta:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Pasirinkite naują vietą projektams" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (reikalauja perleisti Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Redaktoriaus šrifto dydis: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Parodyti išsamius rezultatus: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "kompiliacija " + +#: Preferences.java:375 +msgid "upload" +msgstr "įkelti" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Po įkėlimo patvirtinti kodą" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Naudoti išorinį redaktorių" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Paleidžiant programą tikrinti atnaujinimus" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Išsaugant atnaujinti projektų failų plėtinius (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Automatiškai asocijuoti .ino failus su Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Daugiau nustatymų galima pakeisti tiesiogiai faile" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(redaguoti tik tada, kai Arduino išjungtas)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignoruojamas netinkamas šrifto dydis {0}" diff --git a/app/src/processing/app/Resources_lt.properties b/app/src/processing/app/Resources_lt.properties new file mode 100644 index 000000000..903bb799b --- /dev/null +++ b/app/src/processing/app/Resources_lt.properties @@ -0,0 +1,1035 @@ +# Lithuanian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Laimutis Palivonas , 2012 +# +#, fuzzy +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-07 08\:00 +0100\nPO-Revision-Date\: 2012-04-09 21\:25 +0100\nLast-Translator\: Laimutis Palivonas \nLanguage-Team\: Lithuanian\nLanguage\: lt\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u012e projekt\u0105 nebuvo prid\u0117ta joki\u0173 fail\u0173. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u012e projekt\u0105 prid\u0117tas vienas failas. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=\u012e projekt\u0105 prid\u0117tas(-i) {0} failas(-ai). + +#: Editor.java:484 +File=Failai + +#: Editor.java:486 EditorToolbar.java:41 +New=Naujas + +#: Editor.java:494 Base.java:903 +Open...=Atidaryti... + +#: Editor.java:503 +Sketchbook=Projektai + +#: Editor.java:509 +Examples=Pavyzd\u017eiai + +#: Editor.java:514 Editor.java:1977 +Close=U\u017edaryti + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=I\u0161saugoti + +#: Editor.java:530 +Save\ As...=I\u0161saugoti kaip... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u012ekelti + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u012ekelti naudojant programatori\u0173 + +#: Editor.java:556 +Page\ Setup=Puslapio nustatymai + +#: Editor.java:564 +Print=Spausdinti + +#: Editor.java:576 Preferences.java:279 +Preferences=Nustatymai + +#: Editor.java:586 Base.java:782 +Quit=I\u0161eiti + +#: Editor.java:600 +Sketch=Projektas + +#: Editor.java:602 +Verify\ /\ Compile=Patikrinti / Kompiliuoti + +#: Editor.java:629 +Import\ Library...=Prid\u0117ti bibliotek\u0105... + +#: Editor.java:634 +Show\ Sketch\ Folder=Parodyti projekto aplank\u0105 + +#: Editor.java:643 +Add\ File...=Prid\u0117ti fail\u0105... + +#: Editor.java:656 +Tools=\u012erankiai + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Nuosekliojo porto monitorius + +#: Editor.java:682 +Board=Plok\u0161t\u0117 + +#: Editor.java:690 +Serial\ Port=Nuoseklusis portas + +#: Editor.java:695 +Programmer=Programatorius + +#: Editor.java:699 +Burn\ Bootloader=\u012era\u0161yti \u012fkrovos program\u0105 + +#: Editor.java:923 +serialMenu\ is\ null=Nuosekliojo porto meniu tu\u0161\u010dias + +#: Editor.java:927 Editor.java:934 +name\ is\ null=n\u0117ra pavadinimo + +#: Editor.java:986 +error\ retrieving\ port\ list=klaida sudarant port\u0173 s\u0105ra\u0161\u0105 + +#: Editor.java:1002 +Help=Pagalba + +#: Editor.java:1041 +Getting\ Started=Pradedantiesiems + +#: Editor.java:1049 +Environment=Programos aplinka + +#: Editor.java:1057 +Troubleshooting=Klaid\u0173 diagnostika + +#: Editor.java:1065 +Reference=\u017dinynas + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Ie\u0161koti \u017einyne + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Da\u017eniausiai u\u017eduodami klausimai + +#: Editor.java:1091 +Visit\ Arduino.cc=Eiti \u012f Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Apie Arduino + +#: Editor.java:1116 +Edit=Redaguoti + +#: Editor.java:1119 Editor.java:1341 +Undo=At\u0161aukti + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Perdaryti + +#: Editor.java:1135 Editor.java:2652 +Cut=I\u0161kirpti + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopijuoti + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kopijuoti forumui + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kopijuoti kaip HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=\u012eterpti + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Pa\u017eym\u0117ti visk\u0105 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Komentuoti/Nekomentuoti + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Padidinti teksto postum\u012f + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Suma\u017einti teksto postum\u012f + +#: Editor.java:1220 +Find...=Ie\u0161koti... + +#: Editor.java:1235 +Find\ Next=Ie\u0161koti sekan\u010dio + +#: Editor.java:1245 +Find\ Previous=Ie\u0161koti ankstesnio + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Naudoti \u017eym\u0117jim\u0105 ie\u0161kant + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Prie\u0161 paie\u0161k\u0105 \u017einyne, pirmiausia pa\u017eym\u0117kite \u017eod\u012f. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=\u012era\u0161as nerastas apie "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Projektas kompiliuojamas... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Kompiliacija baigta. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =I\u0161saugoti pakeitimus "{0}"? + +#: Editor.java:2006 +\ \ 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.= Ar norite i\u0161saugoti \u0161io projekto pakeitimus
prie\u0161 i\u0161einant?

Jei nei\u0161saugosite, j\u016bs\u0173 pakeitimai bus prarasti. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=At\u0161aukti + +#: Editor.java:2017 +Don't\ Save=Nei\u0161saugoti + +#: Editor.java:2089 +Bad\ file\ selected=Pasirinktas netinkamas failas + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Programa gali atidaryti tik savo projektus\nir failus su pl\u0117tiniais .ino ir .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=Gerai + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Failas "{0}" turi b\u016bti\nprojekto aplanke, pavadinimu "{1}".\nSukurti \u0161\u012f aplank\u0105, perkelti fail\u0105 ir testi?? + +#: Editor.java:2109 +Moving=Perk\u0117limas + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Klaida + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Aplankas "{0}" jau egzistuoja. Negalima atidaryti projekto. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Nepavyko sukurti projekto aplanko. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Nepavyko nukopijuoti projekto \u012f reikiam\u0105 aplank\u0105. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Nepavyko sukurti projekto. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=I\u0161saugoma... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=I\u0161saugota. + +#: Editor.java:2270 +Save\ Canceled.=I\u0161saugojimas at\u0161auktas. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Nuoseklusis portas {0} nerastas.\nT\u0119sti \u012fk\u0117lim\u0105 naudojant kit\u0105 nuosekluj\u012f port\u0105? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u012ekeliama \u012f I/O plok\u0161t\u0119... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u012ek\u0117limas baigtas. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u012ek\u0117limas at\u0161auktas. + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u012e\u0161saugoti pakeitimus prie\u0161 eksportuojant? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksportavimas at\u0161auktas, pirmiausia turi b\u016bti i\u0161saugoti pakeitimai. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u012e I/O plok\u0161t\u0119 \u012fkeliama \u012fkrovos programa (tai gali u\u017etrukti kelias minutes)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u012ekrovos programa \u012fkelta. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Klaida \u012fkeliant \u012fkrovos program\u0105. + +#: Editor.java:2500 +Printing...=Spausdinama... + +#: Editor.java:2517 +Done\ printing.=Spausdinimas baigtas. + +#: Editor.java:2520 +Error\ while\ printing.=Klaida spausdinant. + +#: Editor.java:2524 +Printing\ canceled.=Spausdinimas at\u0161auktas. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Eilut\u0117 su klaida\: {0} + +#: Editor.java:2641 +Open\ URL=Atidaryti nuorod\u0105 + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Yra nauja Arduino programos versija,\nar norite eiti \u012f Arduino atsisiuntim\u0173 tinklap\u012f? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Taip + +#: UpdateCheck.java:108 Preferences.java:77 +No=Ne + +#: UpdateCheck.java:111 +Update=Atnaujinti + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Ie\u0161koti\: + +#: FindReplace.java:81 +Replace\ with\:=Pakeisti \u012f\: + +#: FindReplace.java:96 +Ignore\ Case=Ignoruoti kapitaliacij\u0105 + +#: FindReplace.java:105 +Wrap\ Around=Lau\u017eyti tekst\u0105 + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Pakeisti visk\u0105 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Pakeisti + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Pakeisti ir surasti + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Ankstesnis + +#: FindReplace.java:124 FindReplace.java:127 +Find=Ie\u0161koti + +#: SerialMonitor.java:93 +Send=Si\u0173sti + +#: SerialMonitor.java:110 +Autoscroll=Automatinis teksto slinkimas + +#: SerialMonitor.java:112 +No\ line\ ending=Be eilut\u0117s pabaigos + +#: SerialMonitor.java:112 +Newline=Nauja eilut\u0117 + +#: SerialMonitor.java:112 +Carriage\ return=Gr\u012f\u017eimas (CR) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Naudoti NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ greitis + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Nuoseklusis portas ''{0}'' naudojamas. Pabandykite i\u0161jungti program\u0105, kuri gali j\u012f naudoti. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Klaida atidarant nuosekluj\u012f port\u0105 ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Nuoseklusis portas ''{0}'' nerastas. Ar pasirinkote tinkam\u0105 i\u0161 \u012erankiai > Nuoseklusis portas meniu? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() bait\u0173 buferis yra per ma\u017eas {0} baitams(-\u0173) ir \u012fskaitant simbol\u012f {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Klaida Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Automatinis formatavimas + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Automatiniam formatavimui pakeitimai nereikalingi. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Automatinis formatavims at\u0161auktas\: perdaug de\u0161ini\u0173j\u0173 skliaust\u0173. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Automatinis formatavims at\u0161auktas\: perdaug kairi\u0173j\u0173 skliaust\u0173. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Automatinis formatavimas at\u0161auktas\: perdaug de\u0161ini\u0173j\u0173 fig\u016brini\u0173 skliaust\u0173. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Automatinis formatavimas at\u0161auktas\: perdaug kairi\u0173j\u0173 fig\u016brini\u0173 skliaust\u0173. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Automatinis formatavimas baigtas. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Pataisyti kodavim\u0105 ir \u012fkelti i\u0161 naujo. + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=At\u0161aukti pakeitimus ir \u012fkelti i\u0161 naujo?? + +#: 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=Klaida bandant pataisyti failo kodavim\u0105.\nNebandykite i\u0161saugoti projekto, nes tai gali panaikinti sen\u0105\nversij\u0105. Naudokite Atidaryti, kad \u012fkelti projekt\u0105 i\u0161 naujo ir bandyti dar kart\u0105.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Archyvuoti projekt\u0105 + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Ne\u012fmanoma archyvuoti projekto + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Projekto archyvavimas at\u0161auktas, nes neimanoma\njo tinkamai i\u0161saugoti. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Archyvuoti projekt\u0105 kaip\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Projekto archyvavimas at\u0161auktas. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Klaida \u012fkeliant kod\u0105 {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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}" sudaro ne\u017einomi simboliai. Jei \u0161is kodas buvo sukurtas naudojant senesn\u0119 programos versij\u0105, tur\u0117tum\u0117te naudoti \u012erankiai -> Pataisyti kodavim\u0105 ir \u012fkelti i\u0161 naujo, kad atnaujinti projekt\u0105 naudojant UTF-8 kodavim\u0105. Arba tur\u0117tum\u0117te i\u0161trinti ne\u017einomus simbolius kad panaikinti \u0161i\u0105 klaid\u0105. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Projektas skirtas tik skaitymui + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Kaikurie failai pa\u017eym\u0117ti kaip "tik skaitymui",\ntod\u0117l tur\u0117tum\u0117te i\u0161saugoti projekt\u0105 \u012f kit\u0105 viet\u0105,\nir bandyti i\u0161 naujo. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Naujo failo pavadinimas\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Projektas be pavadinimo + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Pirmiausia i\u0161saugoti projekt\u0105 \nprie\u0161 bandant j\u012f pervadinti? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Klaida pervadinant + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Pavadinimas negali prasid\u0117ti ta\u0161ku. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" yra klaidingas pl\u0117tinys. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Pagrindinis failas negali tur\u0117ti pl\u0117tinio.\n(Turb\u016bt laikas jums pereiti prie\n"tikros" programavimo aplinkos) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Ne + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Failas "{0}" jau egzistuoja "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Failas .cpp negali b\u016bti tuo pa\u010diu pavadinimu kaip ir projektas. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Negalite pervadinti projekto \u012f "{0}"\nnes projektas jau turi .cpp fail\u0105 tokiu pavadinimu. + +#: Sketch.java:459 +Cannot\ Rename=Ne\u012fmanoma pervadinti + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Atsipra\u0161ome, projektas (arba aplankas) pavadinimu "{0}" jau egzistuoja. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Ne\u012fmanoma pervadinti projekto. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Ne\u012fmanoma pervadinti "{0}" \u012f "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Ne\u012fmanoma pervadinti projekto. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Ne\u012fmanoma pervadinti projekto. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() gr\u0105\u017eino klaid\u0105 (false) + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Ar tikrai norite i\u0161trinti projekt\u0105? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Ar tikrai norite i\u0161trinti "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=I\u0161trinti + +#: Sketch.java:620 +Couldn't\ do\ it=Ne\u012fmanoma to padaryti + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Ne\u012fmanoma i\u0161trinti "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: vidin\u0117 klaida... kodas nerastas + +#: Sketch.java:724 +Sketch\ is\ read-only=Projektas skirtas tik skaitymui + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Kaikurie failai pa\u017eym\u0117ti kaip "tik skaitymui",\ntur\u0117tum\u0117te i\u0161saugoti projekt\u0105 i kit\u0105 viet\u0105. + +#: Sketch.java:743 +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?=Nuo Arduino 1.0, fail\u0173 pl\u0117tinys pasikeit\u0117 i\u0161 .pde \u012f .ino.\nNauji projektai (\u012fskaitant sukurtus naudojant\n"I\u0161saugoti kaip" tur\u0117s naujus pl\u0117tinius. Esam\u0173 projekt\u0173\npl\u0117tiniai bus pakeisti juos i\u0161saugant, bet j\u016bs galite \u0161i\u0105 funkcij\u0105\ni\u0161jungti Nustatym\u0173 dialoge.\n\nI\u0161saugoti projekt\u0105 ir pakeisti jo pl\u0117tin\u012f? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=I\u0161saugoti projekto aplank\u0105 kaip... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Negalite i\u0161saugoti projekto kaip "{0}"\nnes projektas jau turi .cpp fail\u0105 tokiu pavadinimu. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Kaip siurrealu + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Negalite i\u0161saugoti \u012f aplank\u0105, projekto\naplanko viduje. Tai t\u0119stusi am\u017einai. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Pasirinkite atvaizd\u0105 arba kit\u0105 duomen\u0173 fail\u0105, kad \u012fkelti \u012f j\u016bs\u0173 projekt\u0105 + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Pakeisti esam\u0105 {0} versij\u0105? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Klaida pridedant fail\u0105 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Ne\u012fmanoma i\u0161trinti esamo ''{0}'' failo. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Man\u0119s neapgausi + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0160is failas jau buvo nokipijuotas i aplank\u0105, i\u0161\nkurio bandote j\u012f prid\u0117ti.\n + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}'' ne\u012fmanoma prid\u0117ti \u012f projekt\u0105. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Programos aplankas nerastas arba ne\u012fmanoma \u012f j\u012f ra\u0161yti + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Ne\u012fmanoma rasti pagrindin\u0117s klas\u0117s (class) + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Ne\u017einomas i\u0161imties tipas\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Klaida perkeliant {0} \u012f programos aplank\u0105 + +#: Sketch.java:1661 +Uploading...=\u012ekeliama... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Dvejetainis projekto dydis\: {0} bait\u0173 (i\u0161 {1} leistin\u0173) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Ne\u012fmanoma nustatyti programos dyd\u017eio\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Projektas per dydelis; ie\u0161kokite http\://www.arduino.cc/en/Guide/Troubleshooting\#size patarim\u0173, j\u0105 ma\u017einant. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Tr\u016bksta */ komentar\u0173 /* pabaigoje */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Projektas nerastas + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Nerastas projekto aplankas.\n Bus bandoma j\u012f i\u0161saugoti \u012f t\u0105 pa\u010di\u0105 viet\u0105,\nbet viskas, i\u0161skyrus kod\u0105, bus prarasta. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Ne\u012fmanoma i\u0161naujo i\u0161saugoti projekto. + +#: Sketch.java:1811 +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.=Ne\u012fmanoma i\u0161 naujo i\u0161saugoti projekto. Pabandykite nukopijuoti programos \nkod\u0105 \u012f kit\u0105 tekstin\u012f redaktori\u0173. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Projekto pavadinimas turi b\u016bti pakeistas. Projekt\u0173 pavadinimai turi b\u016bti\nsudaryti tik i\u0161 ASCII simboli\u0173 ir skai\u010di\u0173 (bet negali prasid\u0117ti\nskai\u010diumi). Taip pat turi b\u016bti ne ilgesni nei 64 simboliai.\n + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompiliatoriaus klaida, pra\u0161ome perkelti \u0161\u012f kod\u0105 \u012f {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=pasirinktas nuoseklusis portas {0} neegzistuoja arba j\u016bs\u0173 plok\u0161t\u0117 nepajungta + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u012erenginys neatsako, patikrinkite ar pasirinktas tinkamas nuoseklusis portasarba perkraukite plok\u0161t\u0119 prie\u0161 \u012fkrov\u0105 + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Klaida \u012fkeliant \u012f plok\u0161t\u0119. Ie\u0161kokite http\://www.arduino.cc/en/Guide/Troubleshooting\#upload klaidos sprendimo. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Rastas netinkamas mokrokontroleris. Ar pasirinkote tinkam\u0105 plok\u0161t\u0119 \ni\u0161 \u012erankiai > Plok\u0161t\u0117 meniu? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nepasirinkta plok\u0161t\u0117; pra\u0161ome j\u0105 pasirinkti i\u0161 \u012erankiai > Plok\u0161t\u0117 \nmeniu. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} gr\u0105\u017eino {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Klaida kompiliuojant. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Pra\u0161ome prid\u0117ti SPI bibliotek\u0105 i\u0161 Projektas > Prid\u0117ti bibliotek\u0105 meniu. + +#: debug/Compiler.java:466 +\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=Nuo Arduino 0019, Ethernet biblioteka priklausoma nuo SPI bibliotekos.\nPana\u0161u, kad naudojate \u0161i\u0105 arba kit\u0105 bibliotek\u0105, kuri priklausoma nuo SPI bibliotekos. + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Rakta\u017eodis 'BYTE' daugiau nebepalaikomas. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nNuo Arduino 1.0, rakta\u017eodis 'BYTE' nebepalaikomas.\nVietoje jo pra\u0161ome naudoti Serial.write().\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klas\u0117 Server buvo pervardinta \u012f EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nNuo Arduino 1.0, Ethernet bibliotekos klas\u0117 Server buvo pervardinta \u012f EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klas\u0117 Client buvo pervardinta \u012f EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nNuo Arduino 1.0, Ethernet bibliotekos klas\u0117 Client buvo pervardinta\n\u012f EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klas\u0117 Udp buvo pervardinta \u012f EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nNuo Arduino 1.0, Ethernet bibliotekos klas\u0117 Udp buvo pervardinta\n\u012f EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() buvo pervardinta \u012f Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nNuo Arduino 1.0, funkcija Wire.send() buvo pervardinta \u012f Wire.write() d\u0117lgeresnio der\u0117jimo su kitomis bibliotekomis.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() buvo pervardinta \u012f Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nNuo Arduino 1.0, funkcija Wire.receive() buvo pervardinta \u012f Wire.read() d\u0117lgeresnio der\u0117jimo su kitomis bibliotekomis.\n\n + +#: EditorConsole.java:152 +Console\ Error=Konsol\u0117s klaida + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Klaida bandant atidaryti fail\u0105,\nnaudojam\u0105 konsol\u0117s i\u0161vesties saugojimui. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Nekritin\u0117 klaida nustatant bendraj\u0105 i\u0161vaizd\u0105. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Klaida nei\u0161nyksta, ta\u010diau Arduino tur\u0117t\u0173 veikti gerai. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problema nustatant platform\u0105. + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ne\u017einoma klaida bandant atidaryti\nspecifin\u012f j\u016bs\u0173 \u012frenginiui kod\u0105. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Pra\u0161ome instaliuoti JDK 1.5 arba v\u0117lesn\u012f + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino reikalingas pilnas JDK (nevien tik JRE).\nPra\u0161ome instaliuoti JDL 1.5 arba v\u0117lesn\u012f.\nDaugiau informacijos galima rasti \u017einyne. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Nerandamas projekto aplankas + +#: Base.java:258 +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.=Projekto aplankas nebeegzistuoja.\nArduino pereis i projekto aplank\u0105 pagal nutyl\u0117jim\u0105 ir, \njei tas reikalinga, sukurs nauj\u0105 projekto aplank\u0105.\nTada Arduino liausis kalb\u0117ti apie save tre\u010diuoju asmeniu.\n + +#: Base.java:532 +Time\ for\ a\ Break=Laikas pertraukai + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Pasiektas automatinio projekto vard\u0173 suteikimo limitas \u0161iai dienai.\nK\u0105 manote apie pasivaik\u0161\u010diojim\u0105? + +#: Base.java:537 +Sunshine=Saul\u0117ta + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=I\u0161tikr\u0173j\u0173, jums laikas \u012fkv\u0117pti gryno oro. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Atidaryti Arduino projekt\u0105... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Ar \ntikrai norite i\u0161eiti?

U\u017edarant paskutinij\u012f atdar\u0105 projekt\u0105 i\u0161sijungs Arduino \nprograma. + +#: Base.java:970 +Contributed=Contribuido + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Projektas neegzistuoja + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Pasirinktas projektas nebeegzistuoja.\nTurb\u016bt tur\u0117tum\u0117te perleisti Arduino, kad atnaujinti\nprojekt\u0173 meniu. + +#: Base.java:1125 +#, 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}=Projektas "{0}" negali b\u016bti naudojamas.\nProjekto pavadinim\u0105 turi sudaryti tik raid\u0117s ir skai\u010diai\n(tik ASCII be tarp\u0173, ir negali prasid\u0117ti skai\u010diumi).\nKad panaikinti \u0161\u012f prane\u0161im\u0105, i\u0161trinkite projekt\u0105 i\u0161\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignoruojamas projektas su netinkamu pavadinimu + +#: Base.java:1202 +#, 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)=Biblioteka "{0}" negali b\u016bti naudojama.\nBibliotek\u0173 pavadinimus turi sudaryti tik raid\u0117s ir skai\u010diai.\n(Tik ASCII be tarp\u0173, ir negali prasid\u0117ti skai\u010diumi).\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignoruojamas netinkamas bibliotekos pavadinimas + +#: Base.java:1432 +Problem\ getting\ data\ folder=Klaida kreipiantis \u012f duomen\u0173 aplank\u0105 + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Klaida kreipiantis \u012f Arduino duomen\u0173 aplank\u0105. + +#: Base.java:1440 +Settings\ issues=Nustatym\u0173 klaidos + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino negali veikti, nes ne\u012fmanoma\nsukurti aplanko j\u016bs\u0173 nustatym\u0173 saugojimui. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Pamir\u0161ote savo projekt\u0173 segtuv\u0105 + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino negali veikti, nes ne\u012fmanoma\nsukurti aplanko j\u016bs\u0173 projekt\u0173 saugojimui. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Pasirinkite (arba sukurkite nauj\u0105) projekt\u0173 aplank\u0105 ... + +#: Base.java:1647 +Problem\ Opening\ URL=Klaida atidarant nuorod\u0105 + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Ne\u012fmanoma atidaryti nuorodos\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Klaida atidarant aplank\u0105 + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplanko\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=darbin\u0117 aplinka + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Prane\u0161imas + +#: Base.java:1842 +Warning=Persp\u0117jimas + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Ne\u012fmanoma panaikinti senos {0} versijos + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Ne\u012fmanoma pakeisti {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Ne\u012fmanoma i\u0161trinti {0} + +#: EditorHeader.java:292 +New\ Tab=Naujas skirtukas + +#: EditorHeader.java:300 +Rename=Pervadinti + +#: EditorHeader.java:326 +Previous\ Tab=Ankstesnis skirtukas + +#: EditorHeader.java:340 +Next\ Tab=Sekantis skirtukas + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Patvirtinti + +#: EditorToolbar.java:41 +Open=Atidaryti + +#: EditorToolbar.java:46 +New\ Editor\ Window=Naujas redaktoriaus langas + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Atidaryti naujame lange + +#: Platform.java:167 +No\ launcher\ available=Nerasta jokio paleid\u0117jo + +#: 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=Neatpa\u017einta platforma, nerasta jokio paleid\u0117jo.\nKad gal\u0117tum\u0117te atidaryti nuorodas arba aplankus, prid\u0117kite \n"launcher\=/kelias/\u012f/program\u0105" \u012f fail\u0105 preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Ne\u012fmanoma nuskaityti spalv\u0173 nustatym\u0173.Tur\u0117site perinstaliuoti Processing. + +#: Preferences.java:80 +Browse=Nar\u0161yti + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Katalon\u0173 + +#: Preferences.java:87 +Chinese\ Simplified=Kin\u0173 (supaprastinta) + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Dan\u0173 + +#: Preferences.java:90 +Dutch=Oland\u0173 + +#: Preferences.java:91 +English=Angl\u0173 + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Pranc\u016bz\u0173 + +#: Preferences.java:94 +Filipino=Filipin\u0173 + +#: Preferences.java:95 +Galician=Gal\u0173 + +#: Preferences.java:96 +German=Vokie\u010di\u0173 + +#: Preferences.java:97 +Greek=Graik\u0173 + +#: Preferences.java:98 +Hungarian=Vengr\u0173 + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Ital\u0173 + +#: Preferences.java:101 +Japanese=Japon\u0173 + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Latvi\u0173 + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Pers\u0173 + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Rumun\u0173 + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Ispan\u0173 + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ne\u012fmanoma nuskaityti nustatym\u0173 pagal nutyl\u0117jim\u0105.\nTur\u0117site perinstaliuoti Arduino program\u0105. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Ne\u012fmanoma nuskaityti nustatym\u0173 i\u0161 {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Klaida nuskaitant nustatymus + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Klaida nuskaitant nustatym\u0173 fail\u0105. Pra\u0161ome i\u0161trinti (arba perkelti)\n{0} ir perleisti Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Projekt\u0173 vieta\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Pasirinkite nauj\u0105 viet\u0105 projektams + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (reikalauja perleisti Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Redaktoriaus \u0161rifto dydis\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Parodyti i\u0161samius rezultatus\: + +#: Preferences.java:373 +compilation\ =kompiliacija + +#: Preferences.java:375 +upload=\u012fkelti + +#: Preferences.java:384 +Verify\ code\ after\ upload=Po \u012fk\u0117limo patvirtinti kod\u0105 + +#: Preferences.java:393 +Use\ external\ editor=Naudoti i\u0161orin\u012f redaktori\u0173 + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Paleid\u017eiant program\u0105 tikrinti atnaujinimus + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=I\u0161saugant atnaujinti projekt\u0173 fail\u0173 pl\u0117tinius (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Automati\u0161kai asocijuoti .ino failus su Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Daugiau nustatym\u0173 galima pakeisti tiesiogiai faile + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(redaguoti tik tada, kai Arduino i\u0161jungtas) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignoruojamas netinkamas \u0161rifto dydis {0} diff --git a/app/src/processing/app/Resources_lv.po b/app/src/processing/app/Resources_lv.po new file mode 100644 index 000000000..fe2d57f31 --- /dev/null +++ b/app/src/processing/app/Resources_lv.po @@ -0,0 +1,1669 @@ +# Latvian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Kristofers Celms, 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 18:10 +0600\n" +"PO-Revision-Date: 2012-04-15 00:34+0200\n" +"Last-Translator: Kristofers Celms\n" +"Language-Team: Latvian\n" +"Language: lv\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : " +"2);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Neviens fails netika pievienots skicei." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Viens fails tika pievienots skicei." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} faili tika pievienoti skicei." + +#: Editor.java:484 +msgid "File" +msgstr "Fails" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Jauns" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Atvērt..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Skiču burtnīca" + +#: Editor.java:509 +msgid "Examples" +msgstr "Piemēri" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Aizvērt" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Saglabāt" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Saglabāt kā..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Augšupielādēt" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Augšupielādēt, izmantojot programmatoru" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Lapas iestatījumi" + +#: Editor.java:564 +msgid "Print" +msgstr "Drukāt" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Iestatījumi" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Iziet" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Skice" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Pārbaudīt un kompilēt" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importēt bibliotēku..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Parādīt skiču mapi" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Pievienot failu..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Rīki" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Seriālā porta monitors" + +#: Editor.java:682 +msgid "Board" +msgstr "Plate" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Seriālais ports" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmators" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Iededzināt sāknēšanas ielādētāju" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu ir tukšs" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "vārds ir tukšs" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "kļūda, iegūstot portu sarakstu" + +#: Editor.java:1002 +msgid "Help" +msgstr "Palīdzība" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Pirmie soļi" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Vide" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Traucējummeklēšana" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Atsauce" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Meklēt atsaucē" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Bieži uzdotie jautājumi" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Apmeklēt Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Par Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Rediģēt" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Atsaukt" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Atkārtot" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Izgriezt" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopēt" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopēt priekš foruma" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopēt kā HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Ielīmēt" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Iezīmēt visu" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Komentēt/atkomentēt" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Palielināt atkāpi" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Samazināt atkāpi" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Meklēt..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Meklēt nākamo" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Meklēt iepriekšējo" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Izmantot iezīmēto vietu meklēšanai" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Vispirms izvēlieties vārdu, ko meklēt atsaucē." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Nevar atrast atsauci priekš \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Kompilē skici..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Kompilēšana pabeigta." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Vai saglabāt izmaiņas failā \"{0}\"?" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Vai vēlaties " +"saglabāt izmaiņas šajā skicē
pirms aizvēršanas?

Ja nesaglabāsiet, " +"visas jūsu veiktās izmaiņas pazudīs." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Atcelt" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Nesaglabāt" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Izvēlētais fails nav derīgs" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"\"Processing\" var atvērt tikai paša skices\n" +"un citus failus, kas beidzas ar .ino vai .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "Labi" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Failam \"{0}\" jābūt iekš\n" +"skiču mapes ar nosaukumu \"{1}\".\n" +"Izveidot šo mapi, pārvietot failu un turpināt?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Pārvieto" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Kļūda" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Mape ar nosaukumu \"{0}\" jau eksistē. Nevar atvērt skici." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Nevar izveidot skices mapi." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Neizdevās pārkopēt uz pareizo atrašanās vietu." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Neizdevās izveidot skici." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Saglabā..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Saglabāšana pabeigta." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Saglabāšana atcelta." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Seriālais ports {0} netika atrasts.\n" +"Atkārtot augšupielādi ar citu seriālo portu?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Augšupielādē I/O platē..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Augšupielādēšana pabeigta." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Augšupielādēšana atcelta." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Vai saglabāt izmaiņas pirms eksportēšanas?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Eksportēšana atcelta, vispirms jāsaglabā izmaiņas." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "" +"Iededzina sāknēšanas ielādētāju I/O platē (tas var aizņemt kādu laiku)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Sāknēšanas ielādētājs iededzināts." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Neizdevāš iededzināt sāknēšanas ielādētāju." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Drukā..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Drukāšana pabeigta." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Drukājot radās kļūda." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Drukāšana atcelta." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Kļūdas rinda: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Atvērt URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Ir pieejama jauna Arduino versija\n" +"vai vēlaties apmeklēt Arduino lejupielādes lapu?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Jā" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Nē" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Atjaunināt" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Meklēt:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Aizvietot ar:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignorēt reģistrjūtību" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Apliekt" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Aizvietot visus" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Aizvietot" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Aizvietot un atrast" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Iepriekšējais" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Meklēt" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Sūtīt" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Automātiski ritināt" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Bez rindu beigām" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Jauna rinda" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Kursora atgriešanās" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Abi - jauna rinda un kursora atgriešanās" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " bodu" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Seriālais ports \"{0}\" jau tiek izmantots. Pamēģiniet iziet no programmām, " +"kas to varētu izmantot." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Kļūda, atverot seriālo portu \"{0}\"." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Seriālais ports \"{0}\" netika atrasts. Vai jūs izvēlējāties pareizo no Rīki > " +"Seriālais ports izvēlnes?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() baitu buferis ir pārāk mazs priekš {0} baitiem līdz un " +"ieskaitot rakstzīmi {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Kļūda iekš Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Automātiskā formatēšana" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Izmaiņas nav nepieciešamas priekš automātiskās formatēšanas." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Automātiskā formatēšana atcelta: Pārāk daudz labās iekavas." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Automātiskā formatēšana atcelta: Pārāk daudz kreisās iekavas." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Automātiskā formatēšana atcelta: Pārāk daudz viļņotās iekavas." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Automātiskā formatēšana atcelta: Pārāk daudz kreisās viļņotās iekavas." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Automātiskā formatēšana pabeigta." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Salabot kodējumu un pārlādēt" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Atcelt visas izmaiņas un pārlādēt skici?" + +#: 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 "" +"Radās kļūda, labojot faila kodējumu.\n" +"Nemēģiniet saglabāt šo skici, jo var tikt pārrakstīta vecā versija.\n" +"Izmantojiet Atvērt, lai atvērtu pa jaunu skici un mēģinātu vēlreiz.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arhivēt skici" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Neizdevās arhivēt skici" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Skices arhivēšana neizdevās, jo\n" +"skici nevarēja korekti saglabāt." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arhivēt skici kā:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Skices arhivēšana atcelta." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Radās kļūda, ielādējot kodu {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" satur nezināmas rakstzīmes. Ja šis kods tika izveidots ar vecāku " +"Processing versiju, jums var vajadzēt izmantot Rīki > Salabot kodējumu un " +"pārlādēt funkciju, lai atjauninātu skici, lai izmantotu UTF-8 kodējumu. Ja " +"ne, jums var vajadzēt izdzēst nekorektās rakstzīmes, lai atbrīvotos no šī " +"ziņojuma." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Skice ir tikai-lasāma" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Daži faili ir atzīmēi kā \"tikai-lasīt\", tādēļ jums\n" +"var vajadzēt saglabāt skici jaunā vietā un \n" +"mēģināt vēlreiz." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Jaunā faila nosaukums:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Skice ir nenosaukta" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Kā būtu ar skices saglabāšanu\n" +"pirms tās pārsaukšanas?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problēma ar pārsaukšanu" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Nosaukums nedrīkst sākties ar punktu." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" nav derīgs paplašinājums." + +#: Sketch.java:378 +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 "" +"Galvenais fails nedrīkst izmantot paplašinājumu.\n" +"(Varbūt ir laiks izmantot \"īstu\" programmēšanas vidi)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Vēl ne" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Fails ar nosaukumu \"{0}\" jau eksistē iekš \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Jūs nedrīkstat uzturēt .cpp failu ar tādu pašu nosaukumu kā skice." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Jūs nevarat pārsaukt skici uz \"{0}\"\n" +"jo skicei jau ir .cpp fails ar tādu nosaukumu." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Nevar pārsaukt" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Atvainojiet, skice (vai mape) ar nosaukumu \"{0}\" jau eksistē." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Neizdevās pārsaukt skici. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Neizdevās pārsaukt \"{0}\" uz \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Neizdevās pārsaukt skici. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Neizdevās pārsaukt skici. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() atgrieza kļūdu" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Vai tiešām vēlaties izdzēst šo skici?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Vai tiešām vēlaties izdzēst \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Dzēst" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Neizdevās to izdarīt" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Neidevās izdzēst \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: iekšēja kļūda... nevar atrast kodu" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Skice ir tikai-lasāma" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Daži faili ir atzīmēti kā \"tikai-lasāmi\", tādēļ jums\n" +"vajadzēs saglabāt šo skici citā vietā." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"Arduino 1.0 ierastais failu paplašinājums ir ticis nomainīts no .pde uz " +".ino.\n" +"Jaunas skices, (ieskaitot tās, kas izveidotas ar \"Saglabāt kā\"),\n" +"izmantos jauno paplašinājumu. Esošo skiču\n" +"paplašinājumi tiks atjaunināti, tas saglabājot, bet jūs varat\n" +"to atslēgt Iestatījumos.\n" +"\n" +"Vai saglabāt skici un atjaunināt tās paplašinājumu?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Saglabāt skices mapi kā..." + +#: Sketch.java:865 +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}\",\n" +"jo skicei jau ir .cpp fails ar tādu nosaukumu." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Cik ļoti Borhess no jums" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Jūs nevarat saglabāt skici pašas\n" +"mapē. Tas turpinātos bezgalīgi." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Izvēlieties attēlu vai citu datu failu, ko kopēt jūsu skicē" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Aizstāt esošo {0} versiju?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Kļūda pievienojot failu" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Neizdevās izdzēst esošo \"{0}\" failu." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Tu nevari mani piemuļķot" + +#: Sketch.java:1079 +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 "" +"Fails jau ir ticis iekopēts vietā,\n" +"no kurienes jūs to centāties pievienot.\n" +"Es neko nedarīšu." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Neizdevās pievienot \"{0}\" skicei." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Būvējamā mape pazuda, vai nevarēja tajā ierakstīt" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Nevar atrast galveno klasi" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Nenoķerts izņēmuma veids: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Kļūda pārvietojot {0} būvējamajā mapē" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Augšupielādē..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Binārās skices izmērs: {0} baiti (no maksimālajiem {1})" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Neizdevās noteikt programmas izmēru: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Skice ir pārāk liela; apmeklējiet " +"http://www.arduino.cc/en/Guide/Troubleshooting#size padomiem, kā to " +"samazināt." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Trūkst */ no /* komentārs */ beigām" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Skice pazuda" + +#: Sketch.java:1797 +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 "" +"Skices mape ir pazudusi.\n" +"Tiks mēģināts saglabāt tajā pašā vietā,\n" +"bet viss, izņemot kodu, zudīs." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Neizdevās pa jaunam saglabāt skici." + +#: Sketch.java:1811 +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 "" +"Neizdevās korekti saglabāt skici. Jūs varat būt problēmās šobrīd,\n" +"tādēļ būtu laiks pārkopēt kodu citā teksta redaktorā." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Skices nosaukums bija jāizmaina. Skiču nosaukumi var saturēt tikai\n" +"ASCII rakstzīmes un numurus (bet nevar sākties ar ciparu).\n" +"Tām vajadētu būt arī mazāk par 64 rakstzīmēm." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Kompilatora kļūda, lūdzu, nosūtiet šo kodu uz {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"izvēlētais seriālais ports {0} neeksistē, vai arī jūsu plate nav pievienota" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Ierīce nereaģē, pārbaudiet vai pareizais seriālais ports ir izvēlēts vai " +"atiestatiet plati tieši pirms eksportēšanas" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Neizdevās augšupielādēt platē. Apmeklējiet " +"http://www.arduino.cc/en/Guide/Troubleshooting#upload ieteikumiem." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Atrasts cits mikrokontrolieris. Vai izvēlējāties pareizo plati no Rīki > " +"Plate izvēlnes?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Lūdzu, vispirms izvēlieties platie no Rīki > Plate izvēlnes." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} atgrieza {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Neizdevās nokompilēt." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "" +"Lūdzu, importējiet SPI bibliotēku no Skice > Importēt bibliotēku izvēlnes." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Kopš Arduino 0019 Ethernet bibliotēka ir atkarīga no SPI bibliotēkas.\n" +"Izskatās, ka jūs izmantojat to vai citu bibliotēku, kas ir atkarīga no SPI " +"bibliotēkas.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "'BYTE' atslēgasvārds vairs netiek atbalstīts." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Kopš Arduino 1.0 'BYTE' atslēgasvārds vairs nav atbalstīts.\n" +"Lūdzu, izmantojiet Serial.write() tā vietā.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Servera klase ir pārsaukta par EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Kopš Arduino 1.0 Servera klase Ethernet bibliotēkā ir tikusi pārsaukta par " +"EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Klienta klase ir pārsaukta par EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Kopš Arduino 1.0 Klienta klase ir pārsaukta par EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Udp klase ir pārsaukta par EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Kopš Arduino 1.0 Udp klase Ethernet bibliotēkā ir tikusi pārsaukta par " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() ir ticis pārsaukts par Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Kopš Arduino 1.0 Wire.send() funkcija ir tikusi pārsaukta par Wire.write(), " +"lai saglabātu saskaņu ar pārējām bibliotēkām.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() ir ticis pārsaukts par Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Kopš Arduino 1.0 Wire.receive() funkcija ir tikusi pārsaukta par " +"Wire.read(), lai saglabātu saskaņu ar pārējām bibliotēkām.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Konsoles kļūda" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Radās kļūda, mēģinot atvērt failus, ko\n" +"izmanto, lai uzglabātu konsoles izvaddatus." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Radās nefatāla kļūda, mēģinot iestatīt Skatu un sajūtu." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Kļūdas ziņojums ir sekojošs, bet Arduino vajadzētu darboties labi." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Radās kļūda iestatot platformu." + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"Radās nezināma kļūda, mēģinot ielādēt\n" +"platformai pielāgotu kodu jūsu datorā." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Lūdzu, instalējiet JDK 1.5 vai jaunāku" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino nepieciešams pilns JDK (ne tikai JRE),\n" +"lai darbotos. Lūdzu, instalējiet JDK 1.5 vai jaunāku.\n" +"Vairāk informāciju varat atrast atsaucē." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Skiču burtnīcas mape ir pazudusi" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Skiču burtnīcas mape vairs neeksistē.\n" +"Arduino pārslēgsies uz noklusējuma skiču burtnīcas\n" +"atrašanās vietu un izveidos jaunu skiču burtnīcas mapi,\n" +"ja nepieciešams. Tad Arduino pārstās runāt par sevi\n" +"trešajā personā." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Laiks atpūtai" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Jūs sasniedzāt šodienas limitu jaunu skiču automātiskajai\n" +"nosaukšanai. Kā būtu ar kādu pastaigu tā vietā?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Saules gaisma" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Nē, patiešām, laiks ieelpot svaigu gaisu!" + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Atvērt Arduino skici..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Vai tiešām " +"vēlaties iziet?

Aizverot pēdējo atvērto skici, tiks iziets no Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Piedalījās" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Skice nepastāv" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Izvēlētā skice vairs nepastāv.\n" +"Jums var būt nepieciešams pārstartēt Arduino,\n" +"lai atjauninātu skiču burtnīcas izvēlni." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Skice \"{0}\" nevar tikt izmantota.\n" +"Skiču nosaukumiem jāsatur tikai parastos burtus un ciparus.\n" +"(Tikai ASCII, bez atstarpēm, un tas nedrīkst sākties ar ciparu).\n" +"Lai atbrīvotos no šī ziņojuma, aizvāciet skici no\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignorē skici ar nekorektu nosaukumu" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"\"{0}\" bibliotēka nevar tikt izmantota.\n" +"Bibliotēku nosaukumiem jāsatur tikai parastos burtus un ciparus.\n" +"(Tikai ASCII, bez atstarpēm, un tas nedrīkst sākties ar ciparu)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignorē nekorektu bibliotēkas nosaukumu" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Radās problēma, iegūstot datu mapi" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Radās kļūda, iegūstot Arduino datu mapi." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Iestatījumu problēmas" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino nevar tikt palaists, jo tas nevar \n" +"izveidot mapi, kur saglabāt jūsu iestatījumus." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Jūs aizmirsāt skiču burtnīcu" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino nevar tikt palaists, jo tas nevar \n" +"izveidot mapi, kur saglabāt jūsu skiču mapi." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Izvēlieties (vai izveidojiet jaunu) mapi skicēm..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problēma, atverot URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Neizdevās atvērt URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problēma, atverot mapi" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Neizdevās atvērt mapi\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "vide" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Ziņojums" + +#: Base.java:1842 +msgid "Warning" +msgstr "Brīdinājums" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Neizdevās aizvākt {0} veco versiju" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Neizdevās aizvietot {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Neidevās izdzēst {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Jauna cilne" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Pārsaukt" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Iepriekšējā cilne" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Nākamā cilne" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Pārbaudīt" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Atvērt" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Jauns redaktora logs" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Atvērt citā logā" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Neviens palaidējs nav pieejams" + +#: 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 "" +"Nekonkrēta platforma, palaidējs nav pieejams.\n" +"Lai ieslēgtu URL vai mapju atvēršanu, pievienojiet\n" +"\"launcher=/ceļš/līdz/programmai\" rindu failā preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Nevar nolasīt krāsu tēmas iestatījumus.\n" +"Jums vajadzēs pārinstalēt Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Pārlūkot" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Latviešu" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Nevar nolasīt noklusējuma iestatījumus.\n" +"Jums vajadzēs pārinstalēt Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Neizdevās nolasīt iestatījumus no {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Kļūda, nolasot iestatījumus" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Kļūda, nolasot iestatījumu failu. Lūdzu, izdzēsiet (vai pārvietojiet)\n" +"{0} un pārstartējiet Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Skiču burtnīcas atrašanās vieta:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Izvēlieties jaunu skiču burtnīcas atrašanās vietu" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (būs nepieciešams pārstartēt Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Redaktora fonta izmērs:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Rādīt detalizētāku izvadi, kad:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "kompilē" + +#: Preferences.java:375 +msgid "upload" +msgstr "augšupielādē" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Pārbaudīt kodu pēc augšupielādes" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Izmantot ārējo redaktoru" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Pārbaudīt atjauninājumus palaišanas laikā" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "" +"Veicot saglabāšanu, atjaunināt skiču failus uz jauno paplašinājumu (.pde -> " +".ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Automātiski asociēt .ino failus ar Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Vairāk iestatījumus var izmainīt tieši failā" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(rediģējiet tikai tad, kad Arduino nav palaists)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignorē nederīgu fontu izmēru {0}" diff --git a/app/src/processing/app/Resources_lv.properties b/app/src/processing/app/Resources_lv.properties new file mode 100644 index 000000000..078b74d41 --- /dev/null +++ b/app/src/processing/app/Resources_lv.properties @@ -0,0 +1,1034 @@ +# Latvian translations for the Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# Kristofers Celms, 2012 +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 18\:10 +0600\nPO-Revision-Date\: 2012-04-15 00\:34+0200\nLast-Translator\: Kristofers Celms\nLanguage-Team\: Latvian\nLanguage\: lv\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n \!\= 0 ? 1 \: 2);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Neviens fails netika pievienots skicei. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Viens fails tika pievienots skicei. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} faili tika pievienoti skicei. + +#: Editor.java:484 +File=Fails + +#: Editor.java:486 EditorToolbar.java:41 +New=Jauns + +#: Editor.java:494 Base.java:903 +Open...=Atv\u0113rt... + +#: Editor.java:503 +Sketchbook=Ski\u010du burtn\u012bca + +#: Editor.java:509 +Examples=Piem\u0113ri + +#: Editor.java:514 Editor.java:1977 +Close=Aizv\u0113rt + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Saglab\u0101t + +#: Editor.java:530 +Save\ As...=Saglab\u0101t k\u0101... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Aug\u0161upiel\u0101d\u0113t + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Aug\u0161upiel\u0101d\u0113t, izmantojot programmatoru + +#: Editor.java:556 +Page\ Setup=Lapas iestat\u012bjumi + +#: Editor.java:564 +Print=Druk\u0101t + +#: Editor.java:576 Preferences.java:279 +Preferences=Iestat\u012bjumi + +#: Editor.java:586 Base.java:782 +Quit=Iziet + +#: Editor.java:600 +Sketch=Skice + +#: Editor.java:602 +Verify\ /\ Compile=P\u0101rbaud\u012bt un kompil\u0113t + +#: Editor.java:629 +Import\ Library...=Import\u0113t bibliot\u0113ku... + +#: Editor.java:634 +Show\ Sketch\ Folder=Par\u0101d\u012bt ski\u010du mapi + +#: Editor.java:643 +Add\ File...=Pievienot failu... + +#: Editor.java:656 +Tools=R\u012bki + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Seri\u0101l\u0101 porta monitors + +#: Editor.java:682 +Board=Plate + +#: Editor.java:690 +Serial\ Port=Seri\u0101lais ports + +#: Editor.java:695 +Programmer=Programmators + +#: Editor.java:699 +Burn\ Bootloader=Iededzin\u0101t s\u0101kn\u0113\u0161anas iel\u0101d\u0113t\u0101ju + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu ir tuk\u0161s + +#: Editor.java:927 Editor.java:934 +name\ is\ null=v\u0101rds ir tuk\u0161s + +#: Editor.java:986 +error\ retrieving\ port\ list=k\u013c\u016bda, ieg\u016bstot portu sarakstu + +#: Editor.java:1002 +Help=Pal\u012bdz\u012bba + +#: Editor.java:1041 +Getting\ Started=Pirmie so\u013ci + +#: Editor.java:1049 +Environment=Vide + +#: Editor.java:1057 +Troubleshooting=Trauc\u0113jummekl\u0113\u0161ana + +#: Editor.java:1065 +Reference=Atsauce + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Mekl\u0113t atsauc\u0113 + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Bie\u017ei uzdotie jaut\u0101jumi + +#: Editor.java:1091 +Visit\ Arduino.cc=Apmekl\u0113t Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Par Arduino + +#: Editor.java:1116 +Edit=Redi\u0123\u0113t + +#: Editor.java:1119 Editor.java:1341 +Undo=Atsaukt + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Atk\u0101rtot + +#: Editor.java:1135 Editor.java:2652 +Cut=Izgriezt + +#: Editor.java:1143 Editor.java:2660 +Copy=Kop\u0113t + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kop\u0113t priek\u0161 foruma + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kop\u0113t k\u0101 HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Iel\u012bm\u0113t + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Iez\u012bm\u0113t visu + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Koment\u0113t/atkoment\u0113t + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Palielin\u0101t atk\u0101pi + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Samazin\u0101t atk\u0101pi + +#: Editor.java:1220 +Find...=Mekl\u0113t... + +#: Editor.java:1235 +Find\ Next=Mekl\u0113t n\u0101kamo + +#: Editor.java:1245 +Find\ Previous=Mekl\u0113t iepriek\u0161\u0113jo + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Izmantot iez\u012bm\u0113to vietu mekl\u0113\u0161anai + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Vispirms izv\u0113lieties v\u0101rdu, ko mekl\u0113t atsauc\u0113. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Nevar atrast atsauci priek\u0161 "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Kompil\u0113 skici... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Kompil\u0113\u0161ana pabeigta. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Vai saglab\u0101t izmai\u0146as fail\u0101 "{0}"? + +#: Editor.java:2006 +\ \ 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.= Vai v\u0113laties saglab\u0101t izmai\u0146as \u0161aj\u0101 skic\u0113
pirms aizv\u0113r\u0161anas?

Ja nesaglab\u0101siet, visas j\u016bsu veikt\u0101s izmai\u0146as pazud\u012bs. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Atcelt + +#: Editor.java:2017 +Don't\ Save=Nesaglab\u0101t + +#: Editor.java:2089 +Bad\ file\ selected=Izv\u0113l\u0113tais fails nav der\u012bgs + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde="Processing" var atv\u0113rt tikai pa\u0161a skices\nun citus failus, kas beidzas ar .ino vai .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=Labi + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Failam "{0}" j\u0101b\u016bt iek\u0161\nski\u010du mapes ar nosaukumu "{1}".\nIzveidot \u0161o mapi, p\u0101rvietot failu un turpin\u0101t? + +#: Editor.java:2109 +Moving=P\u0101rvieto + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=K\u013c\u016bda + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Mape ar nosaukumu "{0}" jau eksist\u0113. Nevar atv\u0113rt skici. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Nevar izveidot skices mapi. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Neizdev\u0101s p\u0101rkop\u0113t uz pareizo atra\u0161an\u0101s vietu. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Neizdev\u0101s izveidot skici. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Saglab\u0101... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Saglab\u0101\u0161ana pabeigta. + +#: Editor.java:2270 +Save\ Canceled.=Saglab\u0101\u0161ana atcelta. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seri\u0101lais ports {0} netika atrasts.\nAtk\u0101rtot aug\u0161upiel\u0101di ar citu seri\u0101lo portu? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Aug\u0161upiel\u0101d\u0113 I/O plat\u0113... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Aug\u0161upiel\u0101d\u0113\u0161ana pabeigta. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Aug\u0161upiel\u0101d\u0113\u0161ana atcelta. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Vai saglab\u0101t izmai\u0146as pirms eksport\u0113\u0161anas? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport\u0113\u0161ana atcelta, vispirms j\u0101saglab\u0101 izmai\u0146as. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Iededzina s\u0101kn\u0113\u0161anas iel\u0101d\u0113t\u0101ju I/O plat\u0113 (tas var aiz\u0146emt k\u0101du laiku)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=S\u0101kn\u0113\u0161anas iel\u0101d\u0113t\u0101js iededzin\u0101ts. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Neizdev\u0101\u0161 iededzin\u0101t s\u0101kn\u0113\u0161anas iel\u0101d\u0113t\u0101ju. + +#: Editor.java:2500 +Printing...=Druk\u0101... + +#: Editor.java:2517 +Done\ printing.=Druk\u0101\u0161ana pabeigta. + +#: Editor.java:2520 +Error\ while\ printing.=Druk\u0101jot rad\u0101s k\u013c\u016bda. + +#: Editor.java:2524 +Printing\ canceled.=Druk\u0101\u0161ana atcelta. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=K\u013c\u016bdas rinda\: {0} + +#: Editor.java:2641 +Open\ URL=Atv\u0113rt URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Ir pieejama jauna Arduino versija\nvai v\u0113laties apmekl\u0113t Arduino lejupiel\u0101des lapu? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=J\u0101 + +#: UpdateCheck.java:108 Preferences.java:77 +No=N\u0113 + +#: UpdateCheck.java:111 +Update=Atjaunin\u0101t + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Mekl\u0113t\: + +#: FindReplace.java:81 +Replace\ with\:=Aizvietot ar\: + +#: FindReplace.java:96 +Ignore\ Case=Ignor\u0113t re\u0123istrj\u016bt\u012bbu + +#: FindReplace.java:105 +Wrap\ Around=Apliekt + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Aizvietot visus + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Aizvietot + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Aizvietot un atrast + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Iepriek\u0161\u0113jais + +#: FindReplace.java:124 FindReplace.java:127 +Find=Mekl\u0113t + +#: SerialMonitor.java:93 +Send=S\u016bt\u012bt + +#: SerialMonitor.java:110 +Autoscroll=Autom\u0101tiski ritin\u0101t + +#: SerialMonitor.java:112 +No\ line\ ending=Bez rindu beig\u0101m + +#: SerialMonitor.java:112 +Newline=Jauna rinda + +#: SerialMonitor.java:112 +Carriage\ return=Kursora atgrie\u0161an\u0101s + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Abi - jauna rinda un kursora atgrie\u0161an\u0101s + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ bodu + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Seri\u0101lais ports "{0}" jau tiek izmantots. Pam\u0113\u0123iniet iziet no programm\u0101m, kas to var\u0113tu izmantot. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=K\u013c\u016bda, atverot seri\u0101lo portu "{0}". + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seri\u0101lais ports "{0}" netika atrasts. Vai j\u016bs izv\u0113l\u0113j\u0101ties pareizo no R\u012bki > Seri\u0101lais ports izv\u0113lnes? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() baitu buferis ir p\u0101r\u0101k mazs priek\u0161 {0} baitiem l\u012bdz un ieskaitot rakstz\u012bmi {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=K\u013c\u016bda iek\u0161 Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Autom\u0101tisk\u0101 format\u0113\u0161ana + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Izmai\u0146as nav nepiecie\u0161amas priek\u0161 autom\u0101tisk\u0101s format\u0113\u0161anas. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Autom\u0101tisk\u0101 format\u0113\u0161ana atcelta\: P\u0101r\u0101k daudz lab\u0101s iekavas. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Autom\u0101tisk\u0101 format\u0113\u0161ana atcelta\: P\u0101r\u0101k daudz kreis\u0101s iekavas. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Autom\u0101tisk\u0101 format\u0113\u0161ana atcelta\: P\u0101r\u0101k daudz vi\u013c\u0146ot\u0101s iekavas. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Autom\u0101tisk\u0101 format\u0113\u0161ana atcelta\: P\u0101r\u0101k daudz kreis\u0101s vi\u013c\u0146ot\u0101s iekavas. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Autom\u0101tisk\u0101 format\u0113\u0161ana pabeigta. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Salabot kod\u0113jumu un p\u0101rl\u0101d\u0113t + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Atcelt visas izmai\u0146as un p\u0101rl\u0101d\u0113t skici? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Rad\u0101s k\u013c\u016bda, labojot faila kod\u0113jumu.\nNem\u0113\u0123iniet saglab\u0101t \u0161o skici, jo var tikt p\u0101rrakst\u012bta vec\u0101 versija.\nIzmantojiet Atv\u0113rt, lai atv\u0113rtu pa jaunu skici un m\u0113\u0123in\u0101tu v\u0113lreiz.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Arhiv\u0113t skici + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Neizdev\u0101s arhiv\u0113t skici + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Skices arhiv\u0113\u0161ana neizdev\u0101s, jo\nskici nevar\u0113ja korekti saglab\u0101t. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arhiv\u0113t skici k\u0101\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Skices arhiv\u0113\u0161ana atcelta. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Rad\u0101s k\u013c\u016bda, iel\u0101d\u0113jot kodu {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" satur nezin\u0101mas rakstz\u012bmes. Ja \u0161is kods tika izveidots ar vec\u0101ku Processing versiju, jums var vajadz\u0113t izmantot R\u012bki > Salabot kod\u0113jumu un p\u0101rl\u0101d\u0113t funkciju, lai atjaunin\u0101tu skici, lai izmantotu UTF-8 kod\u0113jumu. Ja ne, jums var vajadz\u0113t izdz\u0113st nekorekt\u0101s rakstz\u012bmes, lai atbr\u012bvotos no \u0161\u012b zi\u0146ojuma. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Skice ir tikai-las\u0101ma + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Da\u017ei faili ir atz\u012bm\u0113i k\u0101 "tikai-las\u012bt", t\u0101d\u0113\u013c jums\nvar vajadz\u0113t saglab\u0101t skici jaun\u0101 viet\u0101 un \nm\u0113\u0123in\u0101t v\u0113lreiz. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Jaun\u0101 faila nosaukums\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Skice ir nenosaukta + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=K\u0101 b\u016btu ar skices saglab\u0101\u0161anu\npirms t\u0101s p\u0101rsauk\u0161anas? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Probl\u0113ma ar p\u0101rsauk\u0161anu + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Nosaukums nedr\u012bkst s\u0101kties ar punktu. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" nav der\u012bgs papla\u0161in\u0101jums. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Galvenais fails nedr\u012bkst izmantot papla\u0161in\u0101jumu.\n(Varb\u016bt ir laiks izmantot "\u012bstu" programm\u0113\u0161anas vidi) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=V\u0113l ne + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Fails ar nosaukumu "{0}" jau eksist\u0113 iek\u0161 "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=J\u016bs nedr\u012bkstat uztur\u0113t .cpp failu ar t\u0101du pa\u0161u nosaukumu k\u0101 skice. + +#: Sketch.java:425 +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:459 +Cannot\ Rename=Nevar p\u0101rsaukt + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Atvainojiet, skice (vai mape) ar nosaukumu "{0}" jau eksist\u0113. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Neizdev\u0101s p\u0101rsaukt skici. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Neizdev\u0101s p\u0101rsaukt "{0}" uz "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Neizdev\u0101s p\u0101rsaukt skici. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Neizdev\u0101s p\u0101rsaukt skici. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() atgrieza k\u013c\u016bdu + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Vai tie\u0161\u0101m v\u0113laties izdz\u0113st \u0161o skici? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Vai tie\u0161\u0101m v\u0113laties izdz\u0113st "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Dz\u0113st + +#: Sketch.java:620 +Couldn't\ do\ it=Neizdev\u0101s to izdar\u012bt + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Neidev\u0101s izdz\u0113st "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: iek\u0161\u0113ja k\u013c\u016bda... nevar atrast kodu + +#: Sketch.java:724 +Sketch\ is\ read-only=Skice ir tikai-las\u0101ma + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Da\u017ei faili ir atz\u012bm\u0113ti k\u0101 "tikai-las\u0101mi", t\u0101d\u0113\u013c jums\nvajadz\u0113s saglab\u0101t \u0161o skici cit\u0101 viet\u0101. + +#: Sketch.java:743 +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 1.0 ierastais failu papla\u0161in\u0101jums ir ticis nomain\u012bts no .pde uz .ino.\nJaunas skices, (ieskaitot t\u0101s, kas izveidotas ar "Saglab\u0101t k\u0101"),\nizmantos jauno papla\u0161in\u0101jumu. Eso\u0161o ski\u010du\npapla\u0161in\u0101jumi tiks atjaunin\u0101ti, tas saglab\u0101jot, bet j\u016bs varat\nto atsl\u0113gt Iestat\u012bjumos.\n\nVai saglab\u0101t skici un atjaunin\u0101t t\u0101s papla\u0161in\u0101jumu? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Saglab\u0101t skices mapi k\u0101... + +#: Sketch.java:865 +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. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Cik \u013coti Borhess no jums + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Izv\u0113lieties att\u0113lu vai citu datu failu, ko kop\u0113t j\u016bsu skic\u0113 + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Aizst\u0101t eso\u0161o {0} versiju? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=K\u013c\u016bda pievienojot failu + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Neizdev\u0101s izdz\u0113st eso\u0161o "{0}" failu. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Tu nevari mani piemu\u013c\u0137ot + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Fails jau ir ticis iekop\u0113ts viet\u0101,\nno kurienes j\u016bs to cent\u0101ties pievienot.\nEs neko nedar\u012b\u0161u. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Neizdev\u0101s pievienot "{0}" skicei. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=B\u016bv\u0113jam\u0101 mape pazuda, vai nevar\u0113ja taj\u0101 ierakst\u012bt + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Nevar atrast galveno klasi + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Neno\u0137erts iz\u0146\u0113muma veids\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=K\u013c\u016bda p\u0101rvietojot {0} b\u016bv\u0113jamaj\u0101 map\u0113 + +#: Sketch.java:1661 +Uploading...=Aug\u0161upiel\u0101d\u0113... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Bin\u0101r\u0101s skices izm\u0113rs\: {0} baiti (no maksim\u0101lajiem {1}) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Neizdev\u0101s noteikt programmas izm\u0113ru\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Skice ir p\u0101r\u0101k liela; apmekl\u0113jiet http\://www.arduino.cc/en/Guide/Troubleshooting\#size padomiem, k\u0101 to samazin\u0101t. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Tr\u016bkst */ no /* koment\u0101rs */ beig\u0101m + +#: Sketch.java:1796 +Sketch\ Disappeared=Skice pazuda + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Skices mape ir pazudusi.\nTiks m\u0113\u0123in\u0101ts saglab\u0101t taj\u0101 pa\u0161\u0101 viet\u0101,\nbet viss, iz\u0146emot kodu, zud\u012bs. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Neizdev\u0101s pa jaunam saglab\u0101t skici. + +#: Sketch.java:1811 +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.=Neizdev\u0101s korekti saglab\u0101t skici. J\u016bs varat b\u016bt probl\u0113m\u0101s \u0161obr\u012bd,\nt\u0101d\u0113\u013c b\u016btu laiks p\u0101rkop\u0113t kodu cit\u0101 teksta redaktor\u0101. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Skices nosaukums bija j\u0101izmaina. Ski\u010du nosaukumi var satur\u0113t tikai\nASCII rakstz\u012bmes un numurus (bet nevar s\u0101kties ar ciparu).\nT\u0101m vajad\u0113tu b\u016bt ar\u012b maz\u0101k par 64 rakstz\u012bm\u0113m. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilatora k\u013c\u016bda, l\u016bdzu, nos\u016btiet \u0161o kodu uz {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=izv\u0113l\u0113tais seri\u0101lais ports {0} neeksist\u0113, vai ar\u012b j\u016bsu plate nav pievienota + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Ier\u012bce nerea\u0123\u0113, p\u0101rbaudiet vai pareizais seri\u0101lais ports ir izv\u0113l\u0113ts vai atiestatiet plati tie\u0161i pirms eksport\u0113\u0161anas + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Neizdev\u0101s aug\u0161upiel\u0101d\u0113t plat\u0113. Apmekl\u0113jiet http\://www.arduino.cc/en/Guide/Troubleshooting\#upload ieteikumiem. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Atrasts cits mikrokontrolieris. Vai izv\u0113l\u0113j\u0101ties pareizo plati no R\u012bki > Plate izv\u0113lnes? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=L\u016bdzu, vispirms izv\u0113lieties platie no R\u012bki > Plate izv\u0113lnes. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} atgrieza {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Neizdev\u0101s nokompil\u0113t. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=L\u016bdzu, import\u0113jiet SPI bibliot\u0113ku no Skice > Import\u0113t bibliot\u0113ku izv\u0113lnes. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nKop\u0161 Arduino 0019 Ethernet bibliot\u0113ka ir atkar\u012bga no SPI bibliot\u0113kas.\nIzskat\u0101s, ka j\u016bs izmantojat to vai citu bibliot\u0113ku, kas ir atkar\u012bga no SPI bibliot\u0113kas.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' atsl\u0113gasv\u0101rds vairs netiek atbalst\u012bts. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nKop\u0161 Arduino 1.0 'BYTE' atsl\u0113gasv\u0101rds vairs nav atbalst\u012bts.\nL\u016bdzu, izmantojiet Serial.write() t\u0101 viet\u0101.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Servera klase ir p\u0101rsaukta par EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nKop\u0161 Arduino 1.0 Servera klase Ethernet bibliot\u0113k\u0101 ir tikusi p\u0101rsaukta par EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klienta klase ir p\u0101rsaukta par EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nKop\u0161 Arduino 1.0 Klienta klase ir p\u0101rsaukta par EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp klase ir p\u0101rsaukta par EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nKop\u0161 Arduino 1.0 Udp klase Ethernet bibliot\u0113k\u0101 ir tikusi p\u0101rsaukta par EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() ir ticis p\u0101rsaukts par Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nKop\u0161 Arduino 1.0 Wire.send() funkcija ir tikusi p\u0101rsaukta par Wire.write(), lai saglab\u0101tu saska\u0146u ar p\u0101r\u0113j\u0101m bibliot\u0113k\u0101m.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ir ticis p\u0101rsaukts par Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nKop\u0161 Arduino 1.0 Wire.receive() funkcija ir tikusi p\u0101rsaukta par Wire.read(), lai saglab\u0101tu saska\u0146u ar p\u0101r\u0113j\u0101m bibliot\u0113k\u0101m.\n\n + +#: EditorConsole.java:152 +Console\ Error=Konsoles k\u013c\u016bda + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Rad\u0101s k\u013c\u016bda, m\u0113\u0123inot atv\u0113rt failus, ko\nizmanto, lai uzglab\u0101tu konsoles izvaddatus. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Rad\u0101s nefat\u0101la k\u013c\u016bda, m\u0113\u0123inot iestat\u012bt Skatu un saj\u016btu. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=K\u013c\u016bdas zi\u0146ojums ir sekojo\u0161s, bet Arduino vajadz\u0113tu darboties labi. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Rad\u0101s k\u013c\u016bda iestatot platformu. + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Rad\u0101s nezin\u0101ma k\u013c\u016bda, m\u0113\u0123inot iel\u0101d\u0113t\nplatformai piel\u0101gotu kodu j\u016bsu dator\u0101. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=L\u016bdzu, instal\u0113jiet JDK 1.5 vai jaun\u0101ku + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino nepiecie\u0161ams pilns JDK (ne tikai JRE),\nlai darbotos. L\u016bdzu, instal\u0113jiet JDK 1.5 vai jaun\u0101ku.\nVair\u0101k inform\u0101ciju varat atrast atsauc\u0113. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Ski\u010du burtn\u012bcas mape ir pazudusi + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Ski\u010du burtn\u012bcas mape vairs neeksist\u0113.\nArduino p\u0101rsl\u0113gsies uz noklus\u0113juma ski\u010du burtn\u012bcas\natra\u0161an\u0101s vietu un izveidos jaunu ski\u010du burtn\u012bcas mapi,\nja nepiecie\u0161ams. Tad Arduino p\u0101rst\u0101s run\u0101t par sevi\ntre\u0161aj\u0101 person\u0101. + +#: Base.java:532 +Time\ for\ a\ Break=Laiks atp\u016btai + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=J\u016bs sasniedz\u0101t \u0161odienas limitu jaunu ski\u010du autom\u0101tiskajai\nnosauk\u0161anai. K\u0101 b\u016btu ar k\u0101du pastaigu t\u0101 viet\u0101? + +#: Base.java:537 +Sunshine=Saules gaisma + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=N\u0113, patie\u0161\u0101m, laiks ieelpot svaigu gaisu\! + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Atv\u0113rt Arduino skici... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Vai tie\u0161\u0101m v\u0113laties iziet?

Aizverot p\u0113d\u0113jo atv\u0113rto skici, tiks iziets no Arduino. + +#: Base.java:970 +Contributed=Piedal\u012bj\u0101s + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Skice nepast\u0101v + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Izv\u0113l\u0113t\u0101 skice vairs nepast\u0101v.\nJums var b\u016bt nepiecie\u0161ams p\u0101rstart\u0113t Arduino,\nlai atjaunin\u0101tu ski\u010du burtn\u012bcas izv\u0113lni. + +#: Base.java:1125 +#, 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}=Skice "{0}" nevar tikt izmantota.\nSki\u010du nosaukumiem j\u0101satur tikai parastos burtus un ciparus.\n(Tikai ASCII, bez atstarp\u0113m, un tas nedr\u012bkst s\u0101kties ar ciparu).\nLai atbr\u012bvotos no \u0161\u012b zi\u0146ojuma, aizv\u0101ciet skici no\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignor\u0113 skici ar nekorektu nosaukumu + +#: Base.java:1202 +#, java-format +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)="{0}" bibliot\u0113ka nevar tikt izmantota.\nBibliot\u0113ku nosaukumiem j\u0101satur tikai parastos burtus un ciparus.\n(Tikai ASCII, bez atstarp\u0113m, un tas nedr\u012bkst s\u0101kties ar ciparu) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignor\u0113 nekorektu bibliot\u0113kas nosaukumu + +#: Base.java:1432 +Problem\ getting\ data\ folder=Rad\u0101s probl\u0113ma, ieg\u016bstot datu mapi + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Rad\u0101s k\u013c\u016bda, ieg\u016bstot Arduino datu mapi. + +#: Base.java:1440 +Settings\ issues=Iestat\u012bjumu probl\u0113mas + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nevar tikt palaists, jo tas nevar \nizveidot mapi, kur saglab\u0101t j\u016bsu iestat\u012bjumus. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=J\u016bs aizmirs\u0101t ski\u010du burtn\u012bcu + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nevar tikt palaists, jo tas nevar \nizveidot mapi, kur saglab\u0101t j\u016bsu ski\u010du mapi. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Izv\u0113lieties (vai izveidojiet jaunu) mapi skic\u0113m... + +#: Base.java:1647 +Problem\ Opening\ URL=Probl\u0113ma, atverot URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Neizdev\u0101s atv\u0113rt URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Probl\u0113ma, atverot mapi + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Neizdev\u0101s atv\u0113rt mapi\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=vide + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Zi\u0146ojums + +#: Base.java:1842 +Warning=Br\u012bdin\u0101jums + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Neizdev\u0101s aizv\u0101kt {0} veco versiju + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Neizdev\u0101s aizvietot {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Neidev\u0101s izdz\u0113st {0} + +#: EditorHeader.java:292 +New\ Tab=Jauna cilne + +#: EditorHeader.java:300 +Rename=P\u0101rsaukt + +#: EditorHeader.java:326 +Previous\ Tab=Iepriek\u0161\u0113j\u0101 cilne + +#: EditorHeader.java:340 +Next\ Tab=N\u0101kam\u0101 cilne + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=P\u0101rbaud\u012bt + +#: EditorToolbar.java:41 +Open=Atv\u0113rt + +#: EditorToolbar.java:46 +New\ Editor\ Window=Jauns redaktora logs + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Atv\u0113rt cit\u0101 log\u0101 + +#: Platform.java:167 +No\ launcher\ available=Neviens palaid\u0113js nav pieejams + +#: 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=Nekonkr\u0113ta platforma, palaid\u0113js nav pieejams.\nLai iesl\u0113gtu URL vai mapju atv\u0113r\u0161anu, pievienojiet\n"launcher\=/ce\u013c\u0161/l\u012bdz/programmai" rindu fail\u0101 preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nevar nolas\u012bt kr\u0101su t\u0113mas iestat\u012bjumus.\nJums vajadz\u0113s p\u0101rinstal\u0113t Processing. + +#: Preferences.java:80 +Browse=P\u0101rl\u016bkot + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Latvie\u0161u + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nevar nolas\u012bt noklus\u0113juma iestat\u012bjumus.\nJums vajadz\u0113s p\u0101rinstal\u0113t Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Neizdev\u0101s nolas\u012bt iestat\u012bjumus no {0} + +#: Preferences.java:261 +Error\ reading\ preferences=K\u013c\u016bda, nolasot iestat\u012bjumus + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=K\u013c\u016bda, nolasot iestat\u012bjumu failu. L\u016bdzu, izdz\u0113siet (vai p\u0101rvietojiet)\n{0} un p\u0101rstart\u0113jiet Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Ski\u010du burtn\u012bcas atra\u0161an\u0101s vieta\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Izv\u0113lieties jaunu ski\u010du burtn\u012bcas atra\u0161an\u0101s vietu + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (b\u016bs nepiecie\u0161ams p\u0101rstart\u0113t Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Redaktora fonta izm\u0113rs\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =R\u0101d\u012bt detaliz\u0113t\u0101ku izvadi, kad\: + +#: Preferences.java:373 +compilation\ =kompil\u0113 + +#: Preferences.java:375 +upload=aug\u0161upiel\u0101d\u0113 + +#: Preferences.java:384 +Verify\ code\ after\ upload=P\u0101rbaud\u012bt kodu p\u0113c aug\u0161upiel\u0101des + +#: Preferences.java:393 +Use\ external\ editor=Izmantot \u0101r\u0113jo redaktoru + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=P\u0101rbaud\u012bt atjaunin\u0101jumus palai\u0161anas laik\u0101 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Veicot saglab\u0101\u0161anu, atjaunin\u0101t ski\u010du failus uz jauno papla\u0161in\u0101jumu (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Autom\u0101tiski asoci\u0113t .ino failus ar Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Vair\u0101k iestat\u012bjumus var izmain\u012bt tie\u0161i fail\u0101 + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(redi\u0123\u0113jiet tikai tad, kad Arduino nav palaists) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignor\u0113 neder\u012bgu fontu izm\u0113ru {0} diff --git a/app/src/processing/app/Resources_mr.po b/app/src/processing/app/Resources_mr.po new file mode 100644 index 000000000..05878a9ca --- /dev/null +++ b/app/src/processing/app/Resources_mr.po @@ -0,0 +1,1518 @@ +# Marathi translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Sarvesh S. Karkhanis <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-04 10:24-0400\n" +"PO-Revision-Date: 2012-04-04 13:24-0400\n" +"Last-Translator: Sarvesh S. Karkhanis <>\n" +"Language-Team: \n" +"Language: mr\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "स्केच मध्ये फाईल सामील नाही." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "स्केच मध्ये एक फाईल सामील केली" + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "फाईल्स स्केच मध्ये सामील केल्या" + +#: Editor.java:484 +msgid "File" +msgstr "फाईल" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "नवीन" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "उघडा..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "स्केच पुस्तिका" + +#: Editor.java:509 +msgid "Examples" +msgstr "उदाहरणे" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "पण बंद करा" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "जतन करा" + +#: Editor.java:530 +msgid "Save As..." +msgstr "जतन करा असे की..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "अपलोड" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "प्रोग्रॅमरच्या सहाय्याने अपलोड" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "पानाचा नमुना" + +#: Editor.java:564 +msgid "Print" +msgstr "छापा" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "प्राधान्य" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "बंद" + +#: Editor.java:600 +msgid "Sketch" +msgstr "स्केच" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "पडताळणी / कंपाइल" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "लायब्ररीची आयात..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "स्केचचा फोल्डर उघडा" + +#: Editor.java:643 +msgid "Add File..." +msgstr "फाईल सामील करा" + +#: Editor.java:656 +msgid "Tools" +msgstr "साधने" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "सिरीयल नियंत्रक" + +#: Editor.java:682 +msgid "Board" +msgstr "बोर्ड" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "सिरीयल पोर्ट" + +#: Editor.java:695 +msgid "Programmer" +msgstr "प्रोग्रॅमर" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "बूटलोडर टाका" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "सिरिअल मेनू रिक्त आहे" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "नाव रिक्त आहे" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "पोर्टची यादी शिधाण्यात दोष" + +#: Editor.java:1002 +msgid "Help" +msgstr "मदत" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "सुरुवात करताना" + +#: Editor.java:1049 +msgid "Environment" +msgstr "परिसर" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "अडचणी सोडविणे" + +#: Editor.java:1065 +msgid "Reference" +msgstr "संदर्भ" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "संदर्भ शोध" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "नेहमी विचारले जाणारे प्रश्न" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "arduino.cc ला भेट द्या" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "अर्दुईनो संबंधी" + +#: Editor.java:1116 +msgid "Edit" +msgstr "संपादन" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "एक पाउल मागे" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "एक पाउल पुढे" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "कट" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "कॉपी" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "फोरम साठी कॉपी करा" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "HTML कॉपी करा" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "पेस्ट" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "सर्व निवडा" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "टिपणी करा / टिपणी काढा" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "अंतर वाढवा" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "अंतर कमी करा" + +#: Editor.java:1220 +msgid "Find..." +msgstr "शोध" + +#: Editor.java:1235 +msgid "Find Next" +msgstr "पुढे शोधा" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "मागे शोधा" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "ठळक केलेल्यामध्ये शिधा" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "संदर्भ शोधण्यासाठी प्रथम शब्द निवडा" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "साठी संदर्भ उपलब्ध नाही" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "स्केचचे कंपाइलिंग सुरु आहे..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "कंपाइलिंग पूर्ण" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "येथे बदल जतन करा" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" + +#: Editor.java:2109 +msgid "Moving" +msgstr "" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "" + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "" + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "" + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "" + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "" + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "" + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "" + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "" + +#: Editor.java:2500 +msgid "Printing..." +msgstr "" + +#: Editor.java:2517 +msgid "Done printing." +msgstr "" + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "" + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "" + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr "" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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 "" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,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 "" + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "" + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "" + +#: Sketch.java:378 +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 "" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "" + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "" + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "" + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr "" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "" + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "" + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "" + +#: Sketch.java:1079 +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 "" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "" + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "" + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "" + +#: Sketch.java:1797 +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 "" + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "" + +#: Sketch.java:1811 +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 "" + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "" + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "" + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "" + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "" + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "" + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" + +#: Base.java:532 +msgid "Time for a Break" +msgstr "" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" + +#: Base.java:537 +msgid "Sunshine" +msgstr "" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "" + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "" + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" + +#: Base.java:970 +msgid "Contributed" +msgstr "" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "" + +#: Base.java:1202 +#, java-format +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 "" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "" + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "" + +#: Base.java:1794 +msgid "index.html" +msgstr "" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "" + +#: Base.java:1804 +msgid "environment" +msgstr "" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "" + +#: Base.java:1826 +msgid "Message" +msgstr "" + +#: Base.java:1842 +msgid "Warning" +msgstr "" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" + +#: Preferences.java:80 +msgid "Browse" +msgstr "" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr "" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "" + +#: Preferences.java:373 +msgid "compilation " +msgstr "" + +#: Preferences.java:375 +msgid "upload" +msgstr "" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "" diff --git a/app/src/processing/app/Resources_mr.properties b/app/src/processing/app/Resources_mr.properties new file mode 100644 index 000000000..8d2613a3d --- /dev/null +++ b/app/src/processing/app/Resources_mr.properties @@ -0,0 +1,1034 @@ +# Marathi translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Sarvesh S. Karkhanis <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-04 10\:24-0400\nPO-Revision-Date\: 2012-04-04 13\:24-0400\nLast-Translator\: Sarvesh S. Karkhanis <>\nLanguage-Team\: \nLanguage\: mr\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0928\u093e\u0939\u0940. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u090f\u0915 \u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u0947\u0932\u0940 + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=\u092b\u093e\u0908\u0932\u094d\u0938 \u0938\u094d\u0915\u0947\u091a \u092e\u0927\u094d\u092f\u0947 \u0938\u093e\u092e\u0940\u0932 \u0915\u0947\u0932\u094d\u092f\u093e + +#: Editor.java:484 +File=\u092b\u093e\u0908\u0932 + +#: Editor.java:486 EditorToolbar.java:41 +New=\u0928\u0935\u0940\u0928 + +#: Editor.java:494 Base.java:903 +Open...=\u0909\u0918\u0921\u093e... + +#: Editor.java:503 +Sketchbook=\u0938\u094d\u0915\u0947\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e + +#: Editor.java:509 +Examples=\u0909\u0926\u093e\u0939\u0930\u0923\u0947 + +#: Editor.java:514 Editor.java:1977 +Close=\u092a\u0923 \u092c\u0902\u0926 \u0915\u0930\u093e + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u091c\u0924\u0928 \u0915\u0930\u093e + +#: Editor.java:530 +Save\ As...=\u091c\u0924\u0928 \u0915\u0930\u093e \u0905\u0938\u0947 \u0915\u0940... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u0905\u092a\u0932\u094b\u0921 + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u0945\u092e\u0930\u091a\u094d\u092f\u093e \u0938\u0939\u093e\u092f\u094d\u092f\u093e\u0928\u0947 \u0905\u092a\u0932\u094b\u0921 + +#: Editor.java:556 +Page\ Setup=\u092a\u093e\u0928\u093e\u091a\u093e \u0928\u092e\u0941\u0928\u093e + +#: Editor.java:564 +Print=\u091b\u093e\u092a\u093e + +#: Editor.java:576 Preferences.java:279 +Preferences=\u092a\u094d\u0930\u093e\u0927\u093e\u0928\u094d\u092f + +#: Editor.java:586 Base.java:782 +Quit=\u092c\u0902\u0926 + +#: Editor.java:600 +Sketch=\u0938\u094d\u0915\u0947\u091a + +#: Editor.java:602 +Verify\ /\ Compile=\u092a\u0921\u0924\u093e\u0933\u0923\u0940 / \u0915\u0902\u092a\u093e\u0907\u0932 + +#: Editor.java:629 +Import\ Library...=\u0932\u093e\u092f\u092c\u094d\u0930\u0930\u0940\u091a\u0940 \u0906\u092f\u093e\u0924... + +#: Editor.java:634 +Show\ Sketch\ Folder=\u0938\u094d\u0915\u0947\u091a\u091a\u093e \u092b\u094b\u0932\u094d\u0921\u0930 \u0909\u0918\u0921\u093e + +#: Editor.java:643 +Add\ File...=\u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u0930\u093e + +#: Editor.java:656 +Tools=\u0938\u093e\u0927\u0928\u0947 + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u0938\u093f\u0930\u0940\u092f\u0932 \u0928\u093f\u092f\u0902\u0924\u094d\u0930\u0915 + +#: Editor.java:682 +Board=\u092c\u094b\u0930\u094d\u0921 + +#: Editor.java:690 +Serial\ Port=\u0938\u093f\u0930\u0940\u092f\u0932 \u092a\u094b\u0930\u094d\u091f + +#: Editor.java:695 +Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u0945\u092e\u0930 + +#: Editor.java:699 +Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u091f\u093e\u0915\u093e + +#: Editor.java:923 +serialMenu\ is\ null=\u0938\u093f\u0930\u093f\u0905\u0932 \u092e\u0947\u0928\u0942 \u0930\u093f\u0915\u094d\u0924 \u0906\u0939\u0947 + +#: Editor.java:927 Editor.java:934 +name\ is\ null=\u0928\u093e\u0935 \u0930\u093f\u0915\u094d\u0924 \u0906\u0939\u0947 + +#: Editor.java:986 +error\ retrieving\ port\ list=\u092a\u094b\u0930\u094d\u091f\u091a\u0940 \u092f\u093e\u0926\u0940 \u0936\u093f\u0927\u093e\u0923\u094d\u092f\u093e\u0924 \u0926\u094b\u0937 + +#: Editor.java:1002 +Help=\u092e\u0926\u0924 + +#: Editor.java:1041 +Getting\ Started=\u0938\u0941\u0930\u0941\u0935\u093e\u0924 \u0915\u0930\u0924\u093e\u0928\u093e + +#: Editor.java:1049 +Environment=\u092a\u0930\u093f\u0938\u0930 + +#: Editor.java:1057 +Troubleshooting=\u0905\u0921\u091a\u0923\u0940 \u0938\u094b\u0921\u0935\u093f\u0923\u0947 + +#: Editor.java:1065 +Reference=\u0938\u0902\u0926\u0930\u094d\u092d + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u0938\u0902\u0926\u0930\u094d\u092d \u0936\u094b\u0927 + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u0928\u0947\u0939\u092e\u0940 \u0935\u093f\u091a\u093e\u0930\u0932\u0947 \u091c\u093e\u0923\u093e\u0930\u0947 \u092a\u094d\u0930\u0936\u094d\u0928 + +#: Editor.java:1091 +Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\u093e + +#: Editor.java:1094 +!http\://arduino.cc/= + +#: Editor.java:1102 +About\ Arduino=\u0905\u0930\u094d\u0926\u0941\u0908\u0928\u094b \u0938\u0902\u092c\u0902\u0927\u0940 + +#: Editor.java:1116 +Edit=\u0938\u0902\u092a\u093e\u0926\u0928 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u090f\u0915 \u092a\u093e\u0909\u0932 \u092e\u093e\u0917\u0947 + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u090f\u0915 \u092a\u093e\u0909\u0932 \u092a\u0941\u0922\u0947 + +#: Editor.java:1135 Editor.java:2652 +Cut=\u0915\u091f + +#: Editor.java:1143 Editor.java:2660 +Copy=\u0915\u0949\u092a\u0940 + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0938\u093e\u0920\u0940 \u0915\u0949\u092a\u0940 \u0915\u0930\u093e + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=HTML \u0915\u0949\u092a\u0940 \u0915\u0930\u093e + +#: Editor.java:1175 Editor.java:2684 +Paste=\u092a\u0947\u0938\u094d\u091f + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u0938\u0930\u094d\u0935 \u0928\u093f\u0935\u0921\u093e + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u091f\u093f\u092a\u0923\u0940 \u0915\u0930\u093e / \u091f\u093f\u092a\u0923\u0940 \u0915\u093e\u0922\u093e + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u0905\u0902\u0924\u0930 \u0915\u092e\u0940 \u0915\u0930\u093e + +#: Editor.java:1220 +Find...=\u0936\u094b\u0927 + +#: Editor.java:1235 +Find\ Next=\u092a\u0941\u0922\u0947 \u0936\u094b\u0927\u093e + +#: Editor.java:1245 +Find\ Previous=\u092e\u093e\u0917\u0947 \u0936\u094b\u0927\u093e + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u0920\u0933\u0915 \u0915\u0947\u0932\u0947\u0932\u094d\u092f\u093e\u092e\u0927\u094d\u092f\u0947 \u0936\u093f\u0927\u093e + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u0938\u0902\u0926\u0930\u094d\u092d \u0936\u094b\u0927\u0923\u094d\u092f\u093e\u0938\u093e\u0920\u0940 \u092a\u094d\u0930\u0925\u092e \u0936\u092c\u094d\u0926 \u0928\u093f\u0935\u0921\u093e + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=\u0938\u093e\u0920\u0940 \u0938\u0902\u0926\u0930\u094d\u092d \u0909\u092a\u0932\u092c\u094d\u0927 \u0928\u093e\u0939\u0940 + +#: Editor.java:1826 +#, java-format +!{0}.html= + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u0938\u094d\u0915\u0947\u091a\u091a\u0947 \u0915\u0902\u092a\u093e\u0907\u0932\u093f\u0902\u0917 \u0938\u0941\u0930\u0941 \u0906\u0939\u0947... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u0915\u0902\u092a\u093e\u0907\u0932\u093f\u0902\u0917 \u092a\u0942\u0930\u094d\u0923 + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u092f\u0947\u0925\u0947 \u092c\u0926\u0932 \u091c\u0924\u0928 \u0915\u0930\u093e + +#: Editor.java:2006 +!\ \ 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.= + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +!Cancel= + +#: Editor.java:2017 +!Don't\ Save= + +#: Editor.java:2089 +!Bad\ file\ selected= + +#: Editor.java:2090 +!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +!OK= + +#: Editor.java:2100 +#, java-format +!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= + +#: Editor.java:2109 +!Moving= + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +!Error= + +#: Editor.java:2122 +#, java-format +!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= + +#: Editor.java:2132 +!Could\ not\ create\ the\ sketch\ folder.= + +#: Editor.java:2141 +!Could\ not\ copy\ to\ a\ proper\ location.= + +#: Editor.java:2159 +!Could\ not\ create\ the\ sketch.= + +#: Editor.java:2166 +#, java-format +!{0}\ |\ Arduino\ {1}= + +#: Editor.java:2223 Editor.java:2261 +!Saving...= + +#: Editor.java:2228 Editor.java:2264 +!Done\ Saving.= + +#: Editor.java:2270 +!Save\ Canceled.= + +#: Editor.java:2296 +#, java-format +!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= + +#: Editor.java:2331 +!Uploading\ to\ I/O\ Board...= + +#: Editor.java:2348 Editor.java:2384 +!Done\ uploading.= + +#: Editor.java:2356 Editor.java:2392 +!Upload\ canceled.= + +#: Editor.java:2420 +!Save\ changes\ before\ export?= + +#: Editor.java:2435 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + +#: Editor.java:2457 +!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= + +#: Editor.java:2463 +!Done\ burning\ bootloader.= + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +!Error\ while\ burning\ bootloader.= + +#: Editor.java:2500 +!Printing...= + +#: Editor.java:2517 +!Done\ printing.= + +#: Editor.java:2520 +!Error\ while\ printing.= + +#: Editor.java:2524 +!Printing\ canceled.= + +#: Editor.java:2572 +#, java-format +!Bad\ error\ line\:\ {0}= + +#: Editor.java:2641 +!Open\ URL= + +#: UpdateCheck.java:53 +!http\://www.arduino.cc/latest.txt= + +#: UpdateCheck.java:103 +!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= + +#: UpdateCheck.java:108 Preferences.java:76 +!Yes= + +#: UpdateCheck.java:108 Preferences.java:77 +!No= + +#: UpdateCheck.java:111 +!Update= + +#: UpdateCheck.java:118 +!http\://www.arduino.cc/en/Main/Software= + +#: FindReplace.java:80 +!Find\:= + +#: FindReplace.java:81 +!Replace\ with\:= + +#: FindReplace.java:96 +!Ignore\ Case= + +#: FindReplace.java:105 +!Wrap\ Around= + +#: FindReplace.java:120 FindReplace.java:131 +!Replace\ All= + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +!Replace= + +#: FindReplace.java:122 FindReplace.java:129 +!Replace\ &\ Find= + +#: FindReplace.java:123 FindReplace.java:128 +!Previous= + +#: FindReplace.java:124 FindReplace.java:127 +!Find= + +#: SerialMonitor.java:93 +!Send= + +#: SerialMonitor.java:110 +!Autoscroll= + +#: SerialMonitor.java:112 +!No\ line\ ending= + +#: SerialMonitor.java:112 +!Newline= + +#: SerialMonitor.java:112 +!Carriage\ return= + +#: SerialMonitor.java:112 +!Both\ NL\ &\ CR= + +#: SerialMonitor.java:130 SerialMonitor.java:133 +!\ baud= + +#: Serial.java:147 +#, java-format +!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= + +#: Serial.java:154 +#, java-format +!Error\ opening\ serial\ port\ ''{0}''.= + +#: Serial.java:167 +#, java-format +!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= + +#: Serial.java:424 +#, java-format +!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= + +#: Serial.java:567 +#, java-format +!Error\ inside\ Serial.{0}()= + +#: tools/AutoFormat.java:91 +!Auto\ Format= + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +!No\ changes\ necessary\ for\ Auto\ Format.= + +#: tools/AutoFormat.java:919 +!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= + +#: tools/AutoFormat.java:922 +!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= + +#: tools/AutoFormat.java:928 +!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= + +#: tools/AutoFormat.java:931 +!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= + +#: tools/AutoFormat.java:941 +!Auto\ Format\ finished.= + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +!Fix\ Encoding\ &\ Reload= + +#: tools/FixEncoding.java:57 +!Discard\ all\ changes\ and\ reload\ sketch?= + +#: 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= + +#: tools/Archiver.java:48 +!Archive\ Sketch= + +#: tools/Archiver.java:59 +!yyMMdd= + +#: tools/Archiver.java:74 +!Couldn't\ archive\ sketch= + +#: tools/Archiver.java:75 +!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= + +#: tools/Archiver.java:109 +!Archive\ sketch\ as\:= + +#: tools/Archiver.java:139 +!Archive\ sketch\ canceled.= + +#: SketchCode.java:83 +#, java-format +!Error\ while\ loading\ code\ {0}= + +#: SketchCode.java:258 +#, java-format +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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.= + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +!Sketch\ is\ Read-Only= + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= + +#: Sketch.java:286 +!Name\ for\ new\ file\:= + +#: Sketch.java:298 +!Sketch\ is\ Untitled= + +#: Sketch.java:299 +!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +!Problem\ with\ rename= + +#: Sketch.java:360 +!The\ name\ cannot\ start\ with\ a\ period.= + +#: Sketch.java:368 +#, java-format +!".{0}"\ is\ not\ a\ valid\ extension.= + +#: Sketch.java:378 +!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +!Nope= + +#: Sketch.java:402 +#, java-format +!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= + +#: Sketch.java:415 +!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= + +#: Sketch.java:425 +!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= + +#: Sketch.java:459 +!Cannot\ Rename= + +#: Sketch.java:461 +#, java-format +!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= + +#: Sketch.java:479 +!Could\ not\ rename\ the\ sketch.\ (0)= + +#: Sketch.java:487 Sketch.java:532 +#, java-format +!Could\ not\ rename\ "{0}"\ to\ "{1}"= + +#: Sketch.java:500 +!Could\ not\ rename\ the\ sketch.\ (1)= + +#: Sketch.java:507 +!Could\ not\ rename\ the\ sketch.\ (2)= + +#: Sketch.java:544 +!createNewFile()\ returned\ false= + +#: Sketch.java:591 +!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= + +#: Sketch.java:592 +#, java-format +!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= + +#: Sketch.java:595 EditorHeader.java:314 +!Delete= + +#: Sketch.java:620 +!Couldn't\ do\ it= + +#: Sketch.java:621 +#, java-format +!Could\ not\ delete\ "{0}".= + +#: Sketch.java:651 +!removeCode\:\ internal\ error..\ could\ not\ find\ code= + +#: Sketch.java:724 +!Sketch\ is\ read-only= + +#: Sketch.java:725 +!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= + +#: Sketch.java:743 +!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?= + +#: Sketch.java:750 +!.pde\ ->\ .ino= + +#: Sketch.java:829 +!Save\ sketch\ folder\ as...= + +#: Sketch.java:865 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= + +#: Sketch.java:886 +!How\ very\ Borges\ of\ you= + +#: Sketch.java:887 +!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= + +#: Sketch.java:979 +!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= + +#: Sketch.java:1047 +#, java-format +!Replace\ the\ existing\ version\ of\ {0}?= + +#: Sketch.java:1069 Sketch.java:1092 +!Error\ adding\ file= + +#: Sketch.java:1070 +#, java-format +!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= + +#: Sketch.java:1078 +!You\ can't\ fool\ me= + +#: Sketch.java:1079 +!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= + +#: Sketch.java:1093 +#, java-format +!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= + +#: Sketch.java:1393 Sketch.java:1424 +!Build\ folder\ disappeared\ or\ could\ not\ be\ written= + +#: Sketch.java:1408 +!Could\ not\ find\ main\ class= + +#: Sketch.java:1433 +#, java-format +!Uncaught\ exception\ type\:\ {0}= + +#: Sketch.java:1465 +#, java-format +!Problem\ moving\ {0}\ to\ the\ build\ folder= + +#: Sketch.java:1661 +!Uploading...= + +#: Sketch.java:1684 +#, java-format +!Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)= + +#: Sketch.java:1689 +!Couldn't\ determine\ program\ size\:\ {0}= + +#: Sketch.java:1694 +!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= + +#: Sketch.java:1754 +!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= + +#: Sketch.java:1796 +!Sketch\ Disappeared= + +#: Sketch.java:1797 +!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= + +#: Sketch.java:1810 +!Could\ not\ re-save\ sketch= + +#: Sketch.java:1811 +!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.= + +#: Sketch.java:2060 +!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.= + +#: debug/Uploader.java:52 +!https\://developer.berlios.de/bugs/?group_id\=3590= + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +!Compiler\ error,\ please\ submit\ this\ code\ to\ {0}= + +#: debug/Uploader.java:199 +#, java-format +!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= + +#: debug/Uploader.java:203 +!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= + +#: debug/Uploader.java:209 +!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= + +#: debug/Uploader.java:213 +!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= + +#: debug/Compiler.java:41 +!http\://code.google.com/p/arduino/issues/list= + +#: debug/Compiler.java:79 +!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= + +#: debug/Compiler.java:422 +#, java-format +!{0}\ returned\ {1}= + +#: debug/Compiler.java:426 +!Error\ compiling.= + +#: debug/Compiler.java:465 +!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + +#: debug/Compiler.java:466 +!\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= + +#: debug/Compiler.java:471 +!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= + +#: debug/Compiler.java:472 +!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= + +#: debug/Compiler.java:477 +!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= + +#: debug/Compiler.java:478 +!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= + +#: debug/Compiler.java:483 +!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= + +#: debug/Compiler.java:484 +!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= + +#: debug/Compiler.java:489 +!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= + +#: debug/Compiler.java:490 +!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= + +#: debug/Compiler.java:495 +!Wire.send()\ has\ been\ renamed\ Wire.write().= + +#: debug/Compiler.java:496 +!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= + +#: debug/Compiler.java:501 +!Wire.receive()\ has\ been\ renamed\ Wire.read().= + +#: debug/Compiler.java:502 +!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= + +#: EditorConsole.java:152 +!Console\ Error= + +#: EditorConsole.java:153 +!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= + +#: Base.java:184 +!Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.= + +#: Base.java:185 +!The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.= + +#: Base.java:220 +!Problem\ Setting\ the\ Platform= + +#: Base.java:221 +!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= + +#: Base.java:232 +!Please\ install\ JDK\ 1.5\ or\ later= + +#: Base.java:233 +!Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.= + +#: Base.java:257 +!Sketchbook\ folder\ disappeared= + +#: Base.java:258 +!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.= + +#: Base.java:532 +!Time\ for\ a\ Break= + +#: Base.java:533 +!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= + +#: Base.java:537 +!Sunshine= + +#: Base.java:538 +!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= + +#: Base.java:633 +!Open\ an\ Arduino\ sketch...= + +#: Base.java:772 +!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= + +#: Base.java:970 +!Contributed= + +#: Base.java:1095 +!Sketch\ Does\ Not\ Exist= + +#: Base.java:1096 +!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= + +#: Base.java:1125 +#, 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}= + +#: Base.java:1132 +!Ignoring\ sketch\ with\ bad\ name= + +#: Base.java:1202 +#, 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)= + +#: Base.java:1207 +!Ignoring\ bad\ library\ name= + +#: Base.java:1432 +!Problem\ getting\ data\ folder= + +#: Base.java:1433 +!Error\ getting\ the\ Arduino\ data\ folder.= + +#: Base.java:1440 +!Settings\ issues= + +#: Base.java:1441 +!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= + +#: Base.java:1602 +!You\ forgot\ your\ sketchbook= + +#: Base.java:1603 +!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= + +#: Base.java:1623 +!Select\ (or\ create\ new)\ folder\ for\ sketches...= + +#: Base.java:1647 +!Problem\ Opening\ URL= + +#: Base.java:1648 +#, java-format +!Could\ not\ open\ the\ URL\n{0}= + +#: Base.java:1671 +!Problem\ Opening\ Folder= + +#: Base.java:1672 +#, java-format +!Could\ not\ open\ the\ folder\n{0}= + +#: Base.java:1785 +!Guide_MacOSX.html= + +#: Base.java:1787 +!Guide_Windows.html= + +#: Base.java:1789 +!http\://www.arduino.cc/playground/Learning/Linux= + +#: Base.java:1794 +!index.html= + +#: Base.java:1799 +!Guide_Environment.html= + +#: Base.java:1804 +!environment= + +#: Base.java:1804 +!platforms.html= + +#: Base.java:1809 +!Guide_Troubleshooting.html= + +#: Base.java:1814 +!FAQ.html= + +#: Base.java:1826 +!Message= + +#: Base.java:1842 +!Warning= + +#: Base.java:2196 +#, java-format +!Could\ not\ remove\ old\ version\ of\ {0}= + +#: Base.java:2206 +#, java-format +!Could\ not\ replace\ {0}= + +#: Base.java:2247 Base.java:2270 +#, java-format +!Could\ not\ delete\ {0}= + +#: EditorHeader.java:292 +!New\ Tab= + +#: EditorHeader.java:300 +!Rename= + +#: EditorHeader.java:326 +!Previous\ Tab= + +#: EditorHeader.java:340 +!Next\ Tab= + +#: EditorToolbar.java:41 EditorToolbar.java:46 +!Verify= + +#: EditorToolbar.java:41 +!Open= + +#: EditorToolbar.java:46 +!New\ Editor\ Window= + +#: EditorToolbar.java:46 +!Open\ in\ Another\ Window= + +#: Platform.java:167 +!No\ launcher\ available= + +#: 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= + +#: Theme.java:52 +!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.= + +#: Preferences.java:80 +!Browse= + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= + +#: Preferences.java:242 +#, java-format +!Could\ not\ read\ preferences\ from\ {0}= + +#: Preferences.java:261 +!Error\ reading\ preferences= + +#: Preferences.java:263 +#, java-format +!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= + +#: Preferences.java:299 +!Sketchbook\ location\:= + +#: Preferences.java:314 +!Select\ new\ sketchbook\ location= + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +!\ \ (requires\ restart\ of\ Arduino)= + +#: Preferences.java:354 +!Editor\ font\ size\:\ = + +#: Preferences.java:371 +!Show\ verbose\ output\ during\:\ = + +#: Preferences.java:373 +!compilation\ = + +#: Preferences.java:375 +!upload= + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +!Use\ external\ editor= + +#: Preferences.java:403 +!Check\ for\ updates\ on\ startup= + +#: Preferences.java:412 +!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= + +#: Preferences.java:423 +!Automatically\ associate\ .ino\ files\ with\ Arduino= + +#: Preferences.java:433 +!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= + +#: Preferences.java:462 +!(edit\ only\ when\ Arduino\ is\ not\ running)= + +#: Preferences.java:609 +#, java-format +!ignoring\ invalid\ font\ size\ {0}= diff --git a/app/src/processing/app/Resources_nl.po b/app/src/processing/app/Resources_nl.po new file mode 100644 index 000000000..5c38bd08a --- /dev/null +++ b/app/src/processing/app/Resources_nl.po @@ -0,0 +1,1656 @@ +# Dutch translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Marcel Veldhuijzen <>, 2012. +# JO3RI , 2012. + +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-04-05 10:24-0400\n" +"Last-Translator: JO3RI \n" +"Language-Team: Dutch\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Er werden geen bestanden aan de sketch toegevoegd." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Er werd één bestand aan de sketch toegevoegd." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "Er werden {0} bestanden aan de sketch toegevoegd." + +#: Editor.java:484 +msgid "File" +msgstr "Bestand" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nieuw" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Openen..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Sketchbook" + +#: Editor.java:509 +msgid "Examples" +msgstr "Voorbeelden" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Sluiten" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Opslaan" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Opslaan als..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Uploaden" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Uploaden met programmer" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Pagina-instellingen" + +#: Editor.java:564 +msgid "Print" +msgstr "Afdrukken" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Voorkeuren" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Afsluiten" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Controleren/compileren" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Bibliotheek importeren..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Sketch-map tonen" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Bestand toevoegen..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Extra" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Seriële-monitor" + +#: Editor.java:682 +msgid "Board" +msgstr "Board" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Seriële poort" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmer" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Bootloader branden" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu heeft de waarde null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "name heeft de waarde null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "fout bij ophalen van de poortenlijst" + +#: Editor.java:1002 +msgid "Help" +msgstr "Help" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Aan de slag" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Omgeving" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Problemen oplossen" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referentie" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Zoeken in referentie" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Veel gestelde vragen" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Bezoek Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Over Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Bewerken" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Ongedaan maken" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Opnieuw" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Knippen" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopiëren" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopiëren voor forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopiëren als HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Plakken" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Alles selecteren" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "commentaar aan/commentaar uit" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Meer inspringen" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Minder inspringen" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Zoeken..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Zoek volgende" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Zoek vorige" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Gebruik selectie om te zoeken" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Selecteer eerst een woord om te zoeken in de referentie." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Geen verwijzing beschikbaar voor \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Bezig met compileren van de sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compileren voltooid" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Wijzigingen in \"{0}\" opslaan?" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Wilt u " +"de wijzigingen in deze sketch opslaan?

Als u ze niet opslaat zullen" +" de wijzigingen verloren gaan." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Annuleren" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Niet opslaan" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Verkeerd bestand geselecteerd" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing kan alleen haar eigen sketches openen,\n" +"en ook andere bestanden die eindigen op .ino of .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Het bestand \"{0}\" moet zich binnen\n" +"een sketch-map met de naam \"{1}\" bevinden.\n" +"Deze map aanmaken, bestand verplaatsen en doorgaan?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Bezig met verplaatsen" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Foutmelding" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Er bestaat al een map met de naam \"{0}\". Kan de sketch niet openen." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Kan de sketch-map niet openen." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Kon niet kopiëren naar een juiste locatie." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Kon de sketch niet aanmaken" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Bezig met opslaan..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Opslaan voltooid." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Opslaan geannuleerd." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Seriële poort {0} niet gevonden.\n" +"Upload opnieuw proberen met een andere seriële poort?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Bezig met upload naar I/O-board..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Upload voltooid." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Upload geannuleerd." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Wijzigingen opslaan voorafgaand aan de export?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exporteren geannuleerd, wijzigingen moeten eerst worden opgeslagen." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Bezig met het branden van de bootloader naar het I/O-board (dit kan even duren)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Branden van de bootloader voltooid." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Fout tijdens branden bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Bezig met afdrukken..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Afdrukken voltooid." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Fout tijdens afdrukken." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Afdrukken geannuleerd." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Slechte foutregel: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "URL openen" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Er is een nieuwe versie van Arduino beschikbaar,\n" +"wilt u de Arduino download pagina bezoeken?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Ja" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Nee" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Update" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Zoek:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Vervangen door:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Hoofd-/kleine letters negeren" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Regelafbreking inschakelen" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Alles vervangen" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Vervangen" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Zoek en vervang" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Vorige" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Zoeken" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Verzenden" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Automatisch scrollen" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Geen regeleinde" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Newline" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Carriage return" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Zowel NL en CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Seriële poort ''{0}'' is reeds in gebruik. Sluit de programma's die de poort " +"gebruiken af." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Fout bij het openen van de seriële poort ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Seriële poort ''{0}'' niet gevonden. Heeft u de juiste poort geselecteerd uit " +"het menu Extra > Seriële poort?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"De readBytesUntil()-byte-buffer is te klein voor de bytes {0} tot en " +"met karakter {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Fout binnen Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Automatische opmaak" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Geen wijzigingen nodig voor Automatische opmaak." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "automatische opmaak geannuleerd: te veel rechtse haakjes." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "automatische opmaak geannuleerd: te veel linkse haakjes" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "automatische opmaak geannuleerd: te veel rechtse accolades." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "automatische opmaak geannuleerd: te veel linkse accolades." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "automatische opmaak voltooid." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Herstel codering & herlaad" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Wijzigingen verloren laten gaan en sketch opnieuw inlezen?" + +#: 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 "" +"Er is een fout opgetreden bij het herstellen van de codering.\n" +"Probeer deze sketch niet op te slaan, want anders kan het\n" +"de oude versie overschrijven. Gebruik Openen om de sketch\n" +"opnieuw te openen en probeer het opnieuw." + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Sketch archiveren" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Kon de sketch niet archiveren" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Het archiveren van de sketch is geannuleerd,\n" +"omdat de sketch niet kon worden bewaard." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Sketch archiveren als:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Archiveren van sketch geannuleerd." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Fout bij het laden van code {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" bevat niet-herkende tekens. Als deze code werd gemaakt met een oudere versie " +"van Processing, dient u Extra -> Herstel codering & herlaad toe te passen, om de sketch " +"te updaten en UTF-8-encodering te gebruiken. Zo niet, dient u de foutieve tekens " +"handmatig te verwijderen." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Sketch is alleen-lezen" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Sommige bestanden zijn alleen-lezen, dus u moet\n" +"de sketch op een andere locatie opslaan en het opnieuw proberen." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Naam voor nieuw bestand:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Sketch heeft geen naam" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Wat denkt u ervan om de sketch eerst op te slaan,\n" +"voordat u het een andere naam geeft?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Probleem bij hernoemen" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "De naam mag niet met een punt beginnen." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" is geen geldige extensie." + +#: Sketch.java:378 +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 "" +"Het hoofdbestand mag geen extensie hebben.\n" +"(Het is tijd om af te studeren in een \"echte\" programeeromgeving)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Neen" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Een bestand met de naam \"{0}\" bestaat reeds in \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "U kunt geen .cpp-bestand met dezelfde naam als de sketch hebben." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"U kunt de sketch niet hernoemen naar \"{0}\"\n" +"omdat de sketch al een .cpp-bestand heeft met die naam." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Kan niet hernoemen" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Sorry maar er bestaat al een sketch (of map) met de naam \"{0}\"." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Kon de sketch niet hernoemen. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Kon niet \"{0}\" niet hernoemen naar \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Kon de sketch niet hernoemen. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Kon de sketch niet hernoemen. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() gaf fout" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Weet u zeker, dat u deze sketch wilt verwijderen?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Weet u zeker dat u \"{0}\" wilt verwijderen?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Verwijderen" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Kon het niet doen" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Kon \"{0}\" niet verwijderen." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: interne fout... kon de code niet vinden" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Sketch is alleen-lezen" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Sommige bestanden zijn alleen-lezen, dus u\n" +"moet de sketch op een andere locatie opslaan." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"De standaard bestandsextensie is in Arduino 1.0\n" +"gewijzigd van .pde naar .ino. Nieuwe sketches (inclusief sketches\n" +"die door \"Opslaan als\" worden aangemaakt) zullen de nieuwe extensie\n" +"gebruiken. U kunt dit uitschakelen in de instellingsdialoog.\n" +"\n" +"Sketch bewaren en de extensie updaten?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Sketchmap opslaan als..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"U kunt sketch niet opslaan onder \"{0}\",\n" +"omdat de sketch al een .cpp-bestand heeft met die naam." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Hoe surrealistisch van u" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"U kunt de sketch niet opslaan in een map in zichzelf.\n" +"Dat zou eeuwig blijven doorgaan." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Selecteer een afbeelding of ander bestand om naar uw sketch te kopiëren" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "De bestaande versie van {0} vervangen?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Fout bij toevoegen bestand" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Kon het bestaande ''{0}''-bestand niet verwijderen." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "U kunt mij niet bedotten" + +#: Sketch.java:1079 +msgid "" +"This file has already been copied to the\n" +"location from which where you're trying to add it.\n" +"I ain't not doin nuthin'." +msgstr "" +"Dit bestand is reeds gekopieerd naar de locatie,\n" +"waar u het probeert toe te voegen.\n" +"Ik doe lekker niets." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Kon ''{0}'' niet aan de sketch toevoegen." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "De build-map is verdwenen of kon niet worden geschreven." + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Kon de hoofd klasse niet vinden" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Exceptie-type niet opgevangen: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Probleem bij het verplaatsen van {0} naar de build-folder" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Bezig met uploaden..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Binaire sketch-grootte: {0} bytes (van een {1}-byte maximum)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Kon de programmagroote niet bepalen: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Sketch te groot; voor verklein tips zie http://www.arduino.cc/en/Guide/Troubleshooting#size" + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Er mist een */ aan het einde van een /* commentaar */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Sketch is verdwenen" + +#: Sketch.java:1797 +msgid "" +"The sketch folder has disappeared.\n" +" Will attempt to re-save in the same location,\n" +"but anything besides the code will be lost." +msgstr "" +"De sketch-map is verdwenen. Zal proberen,\n" +"om het nogmaals op te slaan in dezelfde locatie,\n" +"maar alles behalve de code zal verloren gaan." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Kon de sketch niet nogmaals opslaan" + +#: Sketch.java:1811 +msgid "" +"Could not properly re-save the sketch. You may be in trouble at this point,\n" +"and it might be time to copy and paste your code to another text editor." +msgstr "" +"Kon de sketch niet nogmaals opslaan. U heeft een groot probleem,\n" +"en het is misschien tijd, om uw code naar een andere editor te kopiëren." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"De naam van de sketch moest worden gewijzigd. Sketch-namen mogen alleen\n" +"ASCII-karakters en cijfers bevatten (en kunnen niet beginnen met\n" +"een cijfer). De naam moet ook korter dan 64 karakter zijn." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Compileerfout, stuur deze code a.u.b. naar {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"de geselecteerde seriële poort {0} is niet aanwezig of uw board is niet aangesloten" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Het apparaat reageert niet, controleer of de juiste seriële poort is geselecteerd" +" of RESET het board voor de exportactie" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Probleem bij upload naar het board. Zie http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload voor suggesties." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Verkeerde microcontroller gevonden. Heeft u het goede board gekozen uit het menu Extra " +"> Board?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Geen board geselecteerd; kies een board uit het menu Extra > Board." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} kwam terug met {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Fout bij compileren." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Importeer de SPI-bibliotheek middels het menu Sketch -> Bibliotheek importeren." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"De ethernetbibliotheek is sinds arduino 0019 afhankelijk van de SPI-bibliotheek. Het lijkt\n" +"erop dat u een andere bibliotheek gebruikt die afhankelijk is van de SPI-bibliotheek.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Het sleutelwoord 'BYTE' wordt niet langer ondersteund." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Het sleutelwoord 'BYTE' wordt sinds Arduino 1.0 niet meer ondersteund.\n" +"Gebruik in plaats daarvan Serial.write().\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "De Server klasse heet nu EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"De Server klasse uit de ethernetbibliotheek heet sinds Arduino 1.0 EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "De class Client heet nu EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"De Client klasse uit de ethernetbibliotheek heet sinds Arduino 1.0 EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "De Udp klasse heet nu EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"De Udp klasse uit de ethernetbibliotheek heet sinds Arduino 1.0 EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() heet nu Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"De Wire.send()-functie heet sinds Arduino 1.0 Wire.write() " +"vanwege samenhang met andere bibliotheken.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() heet nu Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"De Wire.receive()-functie heet sinds Arduino 1.0 Wire.read() " +"vanwege samenhang met andere bibliotheken.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Console-fout" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Er is een probleem opgetreden bij het openen\n" +"van bestanden om de console-uitvoer in op te slaan." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Niet-fatale fout bij het instellen van de Look & Feel" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "De foutmelding volgt, Arduino zou echter normaal moeten functioneren." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Probleem bij instellen van het platform" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"Er is een onbekende fout opgetreden bij het\n" +"laden van platformspecifieke code voor uw systeem." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Installeer a.u.b. JDK 1.5 of nieuwer" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino heeft een complete JDK nodig,\n" +"(niet slechts een JRE). Installeer a.u.b. JDK versie 1.5 of nieuwer.\n" +"Meer informatie vindt u in de referentie." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "De sketchbook-map is verdwenen." + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"De sketchbook-map bestaat niet meer.\n" +"Arduino zal de standaard sketchbook-map\n" +"gebruiken en desgewenst een nieuwe map aanmaken,\n" +"Arduino zal nu stoppen met over zichzelf in derde\n" +"persoon te spreken." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Tijd voor een kleine pauze" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"U heeft de dagelijkse limiet voor het automatisch benoemen\n" +"van sketches bereikt. Ga anders even wandelen." + +#: Base.java:537 +msgid "Sunshine" +msgstr "Zonneschijn" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Nee echt, het is tijd voor wat frisse lucht voor u." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Een arduino-sketch openen..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Weet u zeker dat u wilt stoppen?

Na het sluiten van de laatste sketch zal Arduino worden afgesloten." + +#: Base.java:970 +msgid "Contributed" +msgstr "Bijgedragen" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Sketch bestaat niet" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"De geselecteerde sketch bestaat niet meer.\n" +"Het kan nodig zijn om Arduino opnieuw op te starten\n" +"om het sketchbook-menu bij te werken." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Sketch \"{0}\" kan niet worden gebruikt.\n" +"De naam van een sketch mag alleen letters en cijfers bevatten\n" +"(alleen ASCII zonder spaties, en mag niet beginnen met een cijfer).\n" +"Om dit bericht niet meer te zien, kunt u de sketch verwijderen uit\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Sketch met verkeerde naam wordt genegeerd" + +#: Base.java:1202 +#, java-format +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 "" +"Bibliotheek \"{0}\" kan niet worden gebruikt.\n" +"De naam van een bibliotheek mag alleen letters en cijfers bevatten\n" +"(alleen ASCII zonder spaties, en mag niet beginnen met een cijfer)." + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Foutieve bibliotheeknaam wordt genegeerd" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Probleem bij verkrijgen data-map" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Fout bij verkrijgen van de Arduino-data-map" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Instellingsproblemen" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino kan niet uitgevoerd worden, omdat het geen map\n" +"kon aanmaken om uw instellingen in op te slaan." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "U bent uw sketchbook vergeten" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino kan niet uitgevoerd worden omdat het geen map\n" +"kon aanmaken om uw sketchbook in op te slaan." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Selecteer een map (of maak een nieuwe aan) voor uw sketches..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Probleem bij openen URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Kon deze URL niet openen:\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Probleem bij openen map" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Kan deze folder niet openen:\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "environment" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Melding" + +#: Base.java:1842 +msgid "Warning" +msgstr "Waarschuwing" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Kon de oude versie van {0} niet verwijderen" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Kon {0} niet vervangen" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Kon {0} niet verwijderen" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nieuw tabblad" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Hernoemen" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Vorig tabblad" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Volgend tabblad" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Controleren" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Openen" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nieuw editor-venster" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "In nieuw venster openen" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Geen launcher beschikbaar" + +#: 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 "" +"Platform niet bekend, geen launcher beschikbaar.\n" +"Om het openen van URL's of folders mogelijk te maken dient u een regel \n" +"\"launcher=/path/to/app\" toe te voegen aan preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Kon de kleurenthema-instellingen niet lezen.\n" +"U zult Processing opnieuw moeten installeren." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Bladeren" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Kon de standaard-instellingen niet lezen.\n" +"U zult Arduino opnieuw moeten installeren." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Kon de instellingen van {0} niet lezen" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Fout bij lezen instellingen" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Fout bij lezen instellingenbestand. Verwijder (of verplaats)\n" +"{0} en start Arduino opnieuw op." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Locatie van sketchbook:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Selecteer nieuwe sketchbook-locatie" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (herstart van Arduino nodig)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Lettertype voor editor: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Toon uitgebreide output tijdens: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilatie" + +#: Preferences.java:375 +msgid "upload" +msgstr "upload" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Controleer code na upload" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Gebruik externe editor" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Bij opstarten op updates controleren" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Bij opslaan de sketch-bestanden updaten naar de nieuwe extensie (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Arduino koppelen aan .ino-bestanden" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Meer voorkeuren kunnen rechtstreeks in het bestand worden bewerkt" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(alleen bewerken als Arduino niet wordt uitgevoerd)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "verkeerde lettergroote {0} wordt genegeerd" diff --git a/app/src/processing/app/Resources_nl.properties b/app/src/processing/app/Resources_nl.properties new file mode 100644 index 000000000..3b5c89d9c --- /dev/null +++ b/app/src/processing/app/Resources_nl.properties @@ -0,0 +1,1034 @@ +# Dutch translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Marcel Veldhuijzen <>, 2012. +# JO3RI , 2012. +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-04-05 10\:24-0400\nLast-Translator\: JO3RI \nLanguage-Team\: Dutch\nLanguage\: nl\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Er werden geen bestanden aan de sketch toegevoegd. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Er werd \u00e9\u00e9n bestand aan de sketch toegevoegd. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=Er werden {0} bestanden aan de sketch toegevoegd. + +#: Editor.java:484 +File=Bestand + +#: Editor.java:486 EditorToolbar.java:41 +New=Nieuw + +#: Editor.java:494 Base.java:903 +Open...=Openen... + +#: Editor.java:503 +Sketchbook=Sketchbook + +#: Editor.java:509 +Examples=Voorbeelden + +#: Editor.java:514 Editor.java:1977 +Close=Sluiten + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Opslaan + +#: Editor.java:530 +Save\ As...=Opslaan als... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Uploaden + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Uploaden met programmer + +#: Editor.java:556 +Page\ Setup=Pagina-instellingen + +#: Editor.java:564 +Print=Afdrukken + +#: Editor.java:576 Preferences.java:279 +Preferences=Voorkeuren + +#: Editor.java:586 Base.java:782 +Quit=Afsluiten + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=Controleren/compileren + +#: Editor.java:629 +Import\ Library...=Bibliotheek importeren... + +#: Editor.java:634 +Show\ Sketch\ Folder=Sketch-map tonen + +#: Editor.java:643 +Add\ File...=Bestand toevoegen... + +#: Editor.java:656 +Tools=Extra + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Seri\u00eble-monitor + +#: Editor.java:682 +Board=Board + +#: Editor.java:690 +Serial\ Port=Seri\u00eble poort + +#: Editor.java:695 +Programmer=Programmer + +#: Editor.java:699 +Burn\ Bootloader=Bootloader branden + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu heeft de waarde null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=name heeft de waarde null + +#: Editor.java:986 +error\ retrieving\ port\ list=fout bij ophalen van de poortenlijst + +#: Editor.java:1002 +Help=Help + +#: Editor.java:1041 +Getting\ Started=Aan de slag + +#: Editor.java:1049 +Environment=Omgeving + +#: Editor.java:1057 +Troubleshooting=Problemen oplossen + +#: Editor.java:1065 +Reference=Referentie + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Zoeken in referentie + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Veel gestelde vragen + +#: Editor.java:1091 +Visit\ Arduino.cc=Bezoek Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Over Arduino + +#: Editor.java:1116 +Edit=Bewerken + +#: Editor.java:1119 Editor.java:1341 +Undo=Ongedaan maken + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Opnieuw + +#: Editor.java:1135 Editor.java:2652 +Cut=Knippen + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopi\u00ebren + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kopi\u00ebren voor forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kopi\u00ebren als HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Plakken + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Alles selecteren + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=commentaar aan/commentaar uit + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Meer inspringen + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Minder inspringen + +#: Editor.java:1220 +Find...=Zoeken... + +#: Editor.java:1235 +Find\ Next=Zoek volgende + +#: Editor.java:1245 +Find\ Previous=Zoek vorige + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Gebruik selectie om te zoeken + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Selecteer eerst een woord om te zoeken in de referentie. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Geen verwijzing beschikbaar voor "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Bezig met compileren van de sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compileren voltooid + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Wijzigingen in "{0}" opslaan? + +#: Editor.java:2006 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Wilt u de wijzigingen in deze sketch opslaan?

Als u ze niet opslaat zullen de wijzigingen verloren gaan. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Annuleren + +#: Editor.java:2017 +Don't\ Save=Niet opslaan + +#: Editor.java:2089 +Bad\ file\ selected=Verkeerd bestand geselecteerd + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing kan alleen haar eigen sketches openen,\nen ook andere bestanden die eindigen op .ino of .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Het bestand "{0}" moet zich binnen\neen sketch-map met de naam "{1}" bevinden.\nDeze map aanmaken, bestand verplaatsen en doorgaan? + +#: Editor.java:2109 +Moving=Bezig met verplaatsen + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Foutmelding + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Er bestaat al een map met de naam "{0}". Kan de sketch niet openen. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Kan de sketch-map niet openen. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Kon niet kopi\u00ebren naar een juiste locatie. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Kon de sketch niet aanmaken + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Bezig met opslaan... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Opslaan voltooid. + +#: Editor.java:2270 +Save\ Canceled.=Opslaan geannuleerd. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seri\u00eble poort {0} niet gevonden.\nUpload opnieuw proberen met een andere seri\u00eble poort? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Bezig met upload naar I/O-board... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Upload voltooid. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Upload geannuleerd. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Wijzigingen opslaan voorafgaand aan de export? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporteren geannuleerd, wijzigingen moeten eerst worden opgeslagen. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bezig met het branden van de bootloader naar het I/O-board (dit kan even duren)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Branden van de bootloader voltooid. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Fout tijdens branden bootloader. + +#: Editor.java:2500 +Printing...=Bezig met afdrukken... + +#: Editor.java:2517 +Done\ printing.=Afdrukken voltooid. + +#: Editor.java:2520 +Error\ while\ printing.=Fout tijdens afdrukken. + +#: Editor.java:2524 +Printing\ canceled.=Afdrukken geannuleerd. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Slechte foutregel\: {0} + +#: Editor.java:2641 +Open\ URL=URL openen + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Er is een nieuwe versie van Arduino beschikbaar,\nwilt u de Arduino download pagina bezoeken? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Ja + +#: UpdateCheck.java:108 Preferences.java:77 +No=Nee + +#: UpdateCheck.java:111 +Update=Update + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Zoek\: + +#: FindReplace.java:81 +Replace\ with\:=Vervangen door\: + +#: FindReplace.java:96 +Ignore\ Case=Hoofd-/kleine letters negeren + +#: FindReplace.java:105 +Wrap\ Around=Regelafbreking inschakelen + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Alles vervangen + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Vervangen + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Zoek en vervang + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Vorige + +#: FindReplace.java:124 FindReplace.java:127 +Find=Zoeken + +#: SerialMonitor.java:93 +Send=Verzenden + +#: SerialMonitor.java:110 +Autoscroll=Automatisch scrollen + +#: SerialMonitor.java:112 +No\ line\ ending=Geen regeleinde + +#: SerialMonitor.java:112 +Newline=Newline + +#: SerialMonitor.java:112 +Carriage\ return=Carriage return + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Zowel NL en CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Seri\u00eble poort ''{0}'' is reeds in gebruik. Sluit de programma's die de poort gebruiken af. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Fout bij het openen van de seri\u00eble poort ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Seri\u00eble poort ''{0}'' niet gevonden. Heeft u de juiste poort geselecteerd uit het menu Extra > Seri\u00eble poort? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=De readBytesUntil()-byte-buffer is te klein voor de bytes {0} tot en met karakter {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Fout binnen Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Automatische opmaak + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Geen wijzigingen nodig voor Automatische opmaak. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=automatische opmaak geannuleerd\: te veel rechtse haakjes. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=automatische opmaak geannuleerd\: te veel linkse haakjes + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=automatische opmaak geannuleerd\: te veel rechtse accolades. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=automatische opmaak geannuleerd\: te veel linkse accolades. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=automatische opmaak voltooid. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Herstel codering & herlaad + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Wijzigingen verloren laten gaan en sketch opnieuw inlezen? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Er is een fout opgetreden bij het herstellen van de codering.\nProbeer deze sketch niet op te slaan, want anders kan het\nde oude versie overschrijven. Gebruik Openen om de sketch\nopnieuw te openen en probeer het opnieuw. + +#: tools/Archiver.java:48 +Archive\ Sketch=Sketch archiveren + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Kon de sketch niet archiveren + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Het archiveren van de sketch is geannuleerd,\nomdat de sketch niet kon worden bewaard. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Sketch archiveren als\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Archiveren van sketch geannuleerd. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Fout bij het laden van code {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" bevat niet-herkende tekens. Als deze code werd gemaakt met een oudere versie van Processing, dient u Extra -> Herstel codering & herlaad toe te passen, om de sketch te updaten en UTF-8-encodering te gebruiken. Zo niet, dient u de foutieve tekens handmatig te verwijderen. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Sketch is alleen-lezen + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Sommige bestanden zijn alleen-lezen, dus u moet\nde sketch op een andere locatie opslaan en het opnieuw proberen. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Naam voor nieuw bestand\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Sketch heeft geen naam + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Wat denkt u ervan om de sketch eerst op te slaan,\nvoordat u het een andere naam geeft? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Probleem bij hernoemen + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=De naam mag niet met een punt beginnen. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" is geen geldige extensie. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Het hoofdbestand mag geen extensie hebben.\n(Het is tijd om af te studeren in een "echte" programeeromgeving) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Neen + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Een bestand met de naam "{0}" bestaat reeds in "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=U kunt geen .cpp-bestand met dezelfde naam als de sketch hebben. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=U kunt de sketch niet hernoemen naar "{0}"\nomdat de sketch al een .cpp-bestand heeft met die naam. + +#: Sketch.java:459 +Cannot\ Rename=Kan niet hernoemen + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Sorry maar er bestaat al een sketch (of map) met de naam "{0}". + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Kon de sketch niet hernoemen. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Kon niet "{0}" niet hernoemen naar "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Kon de sketch niet hernoemen. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Kon de sketch niet hernoemen. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() gaf fout + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Weet u zeker, dat u deze sketch wilt verwijderen? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Weet u zeker dat u "{0}" wilt verwijderen? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Verwijderen + +#: Sketch.java:620 +Couldn't\ do\ it=Kon het niet doen + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Kon "{0}" niet verwijderen. + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: interne fout... kon de code niet vinden + +#: Sketch.java:724 +Sketch\ is\ read-only=Sketch is alleen-lezen + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Sommige bestanden zijn alleen-lezen, dus u\nmoet de sketch op een andere locatie opslaan. + +#: Sketch.java:743 +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?=De standaard bestandsextensie is in Arduino 1.0\ngewijzigd van .pde naar .ino. Nieuwe sketches (inclusief sketches\ndie door "Opslaan als" worden aangemaakt) zullen de nieuwe extensie\ngebruiken. U kunt dit uitschakelen in de instellingsdialoog.\n\nSketch bewaren en de extensie updaten? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Sketchmap opslaan als... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=U kunt sketch niet opslaan onder "{0}",\nomdat de sketch al een .cpp-bestand heeft met die naam. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Hoe surrealistisch van u + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=U kunt de sketch niet opslaan in een map in zichzelf.\nDat zou eeuwig blijven doorgaan. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecteer een afbeelding of ander bestand om naar uw sketch te kopi\u00ebren + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=De bestaande versie van {0} vervangen? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Fout bij toevoegen bestand + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Kon het bestaande ''{0}''-bestand niet verwijderen. + +#: Sketch.java:1078 +You\ can't\ fool\ me=U kunt mij niet bedotten + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Dit bestand is reeds gekopieerd naar de locatie,\nwaar u het probeert toe te voegen.\nIk doe lekker niets. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Kon ''{0}'' niet aan de sketch toevoegen. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=De build-map is verdwenen of kon niet worden geschreven. + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Kon de hoofd klasse niet vinden + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Exceptie-type niet opgevangen\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Probleem bij het verplaatsen van {0} naar de build-folder + +#: Sketch.java:1661 +Uploading...=Bezig met uploaden... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Binaire sketch-grootte\: {0} bytes (van een {1}-byte maximum) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Kon de programmagroote niet bepalen\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch te groot; voor verklein tips zie http\://www.arduino.cc/en/Guide/Troubleshooting\#size + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Er mist een */ aan het einde van een /* commentaar */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Sketch is verdwenen + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=De sketch-map is verdwenen. Zal proberen,\nom het nogmaals op te slaan in dezelfde locatie,\nmaar alles behalve de code zal verloren gaan. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Kon de sketch niet nogmaals opslaan + +#: Sketch.java:1811 +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Kon de sketch niet nogmaals opslaan. U heeft een groot probleem,\nen het is misschien tijd, om uw code naar een andere editor te kopi\u00ebren. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=De naam van de sketch moest worden gewijzigd. Sketch-namen mogen alleen\nASCII-karakters en cijfers bevatten (en kunnen niet beginnen met\neen cijfer). De naam moet ook korter dan 64 karakter zijn. + +#: debug/Uploader.java:52 +!https\://developer.berlios.de/bugs/?group_id\=3590= + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Compileerfout, stuur deze code a.u.b. naar {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=de geselecteerde seri\u00eble poort {0} is niet aanwezig of uw board is niet aangesloten + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Het apparaat reageert niet, controleer of de juiste seri\u00eble poort is geselecteerd of RESET het board voor de exportactie + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleem bij upload naar het board. Zie http\://www.arduino.cc/en/Guide/Troubleshooting\#upload voor suggesties. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Verkeerde microcontroller gevonden. Heeft u het goede board gekozen uit het menu Extra > Board? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Geen board geselecteerd; kies een board uit het menu Extra > Board. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} kwam terug met {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Fout bij compileren. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Importeer de SPI-bibliotheek middels het menu Sketch -> Bibliotheek importeren. + +#: debug/Compiler.java:466 +\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=\nDe ethernetbibliotheek is sinds arduino 0019 afhankelijk van de SPI-bibliotheek. Het lijkt\nerop dat u een andere bibliotheek gebruikt die afhankelijk is van de SPI-bibliotheek.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Het sleutelwoord 'BYTE' wordt niet langer ondersteund. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nHet sleutelwoord 'BYTE' wordt sinds Arduino 1.0 niet meer ondersteund.\nGebruik in plaats daarvan Serial.write().\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=De Server klasse heet nu EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDe Server klasse uit de ethernetbibliotheek heet sinds Arduino 1.0 EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=De class Client heet nu EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDe Client klasse uit de ethernetbibliotheek heet sinds Arduino 1.0 EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=De Udp klasse heet nu EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDe Udp klasse uit de ethernetbibliotheek heet sinds Arduino 1.0 EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() heet nu Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDe Wire.send()-functie heet sinds Arduino 1.0 Wire.write() vanwege samenhang met andere bibliotheken.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() heet nu Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDe Wire.receive()-functie heet sinds Arduino 1.0 Wire.read() vanwege samenhang met andere bibliotheken.\n\n + +#: EditorConsole.java:152 +Console\ Error=Console-fout + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Er is een probleem opgetreden bij het openen\nvan bestanden om de console-uitvoer in op te slaan. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Niet-fatale fout bij het instellen van de Look & Feel + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=De foutmelding volgt, Arduino zou echter normaal moeten functioneren. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Probleem bij instellen van het platform + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Er is een onbekende fout opgetreden bij het\nladen van platformspecifieke code voor uw systeem. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Installeer a.u.b. JDK 1.5 of nieuwer + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino heeft een complete JDK nodig,\n(niet slechts een JRE). Installeer a.u.b. JDK versie 1.5 of nieuwer.\nMeer informatie vindt u in de referentie. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=De sketchbook-map is verdwenen. + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=De sketchbook-map bestaat niet meer.\nArduino zal de standaard sketchbook-map\ngebruiken en desgewenst een nieuwe map aanmaken,\nArduino zal nu stoppen met over zichzelf in derde\npersoon te spreken. + +#: Base.java:532 +Time\ for\ a\ Break=Tijd voor een kleine pauze + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=U heeft de dagelijkse limiet voor het automatisch benoemen\nvan sketches bereikt. Ga anders even wandelen. + +#: Base.java:537 +Sunshine=Zonneschijn + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee echt, het is tijd voor wat frisse lucht voor u. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Een arduino-sketch openen... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Weet u zeker dat u wilt stoppen?

Na het sluiten van de laatste sketch zal Arduino worden afgesloten. + +#: Base.java:970 +Contributed=Bijgedragen + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Sketch bestaat niet + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=De geselecteerde sketch bestaat niet meer.\nHet kan nodig zijn om Arduino opnieuw op te starten\nom het sketchbook-menu bij te werken. + +#: Base.java:1125 +#, 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}=Sketch "{0}" kan niet worden gebruikt.\nDe naam van een sketch mag alleen letters en cijfers bevatten\n(alleen ASCII zonder spaties, en mag niet beginnen met een cijfer).\nOm dit bericht niet meer te zien, kunt u de sketch verwijderen uit\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Sketch met verkeerde naam wordt genegeerd + +#: Base.java:1202 +#, 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)=Bibliotheek "{0}" kan niet worden gebruikt.\nDe naam van een bibliotheek mag alleen letters en cijfers bevatten\n(alleen ASCII zonder spaties, en mag niet beginnen met een cijfer). + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Foutieve bibliotheeknaam wordt genegeerd + +#: Base.java:1432 +Problem\ getting\ data\ folder=Probleem bij verkrijgen data-map + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Fout bij verkrijgen van de Arduino-data-map + +#: Base.java:1440 +Settings\ issues=Instellingsproblemen + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan niet uitgevoerd worden, omdat het geen map\nkon aanmaken om uw instellingen in op te slaan. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=U bent uw sketchbook vergeten + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino kan niet uitgevoerd worden omdat het geen map\nkon aanmaken om uw sketchbook in op te slaan. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecteer een map (of maak een nieuwe aan) voor uw sketches... + +#: Base.java:1647 +Problem\ Opening\ URL=Probleem bij openen URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Kon deze URL niet openen\:\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Probleem bij openen map + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Kan deze folder niet openen\:\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=environment + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Melding + +#: Base.java:1842 +Warning=Waarschuwing + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Kon de oude versie van {0} niet verwijderen + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Kon {0} niet vervangen + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Kon {0} niet verwijderen + +#: EditorHeader.java:292 +New\ Tab=Nieuw tabblad + +#: EditorHeader.java:300 +Rename=Hernoemen + +#: EditorHeader.java:326 +Previous\ Tab=Vorig tabblad + +#: EditorHeader.java:340 +Next\ Tab=Volgend tabblad + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Controleren + +#: EditorToolbar.java:41 +Open=Openen + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nieuw editor-venster + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=In nieuw venster openen + +#: Platform.java:167 +No\ launcher\ available=Geen launcher beschikbaar + +#: Platform.java:168 +Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Platform niet bekend, geen launcher beschikbaar.\nOm het openen van URL's of folders mogelijk te maken dient u een regel \n"launcher\=/path/to/app" toe te voegen aan preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Kon de kleurenthema-instellingen niet lezen.\nU zult Processing opnieuw moeten installeren. + +#: Preferences.java:80 +Browse=Bladeren + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kon de standaard-instellingen niet lezen.\nU zult Arduino opnieuw moeten installeren. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Kon de instellingen van {0} niet lezen + +#: Preferences.java:261 +Error\ reading\ preferences=Fout bij lezen instellingen + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Fout bij lezen instellingenbestand. Verwijder (of verplaats)\n{0} en start Arduino opnieuw op. + +#: Preferences.java:299 +Sketchbook\ location\:=Locatie van sketchbook\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Selecteer nieuwe sketchbook-locatie + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (herstart van Arduino nodig) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Lettertype voor editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Toon uitgebreide output tijdens\: + +#: Preferences.java:373 +compilation\ =compilatie + +#: Preferences.java:375 +upload=upload + +#: Preferences.java:384 +Verify\ code\ after\ upload=Controleer code na upload + +#: Preferences.java:393 +Use\ external\ editor=Gebruik externe editor + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Bij opstarten op updates controleren + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Bij opslaan de sketch-bestanden updaten naar de nieuwe extensie (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Arduino koppelen aan .ino-bestanden + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Meer voorkeuren kunnen rechtstreeks in het bestand worden bewerkt + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(alleen bewerken als Arduino niet wordt uitgevoerd) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=verkeerde lettergroote {0} wordt genegeerd diff --git a/app/src/processing/app/Resources_no_nb.po b/app/src/processing/app/Resources_no_nb.po new file mode 100644 index 000000000..84d5602b7 --- /dev/null +++ b/app/src/processing/app/Resources_no_nb.po @@ -0,0 +1,1663 @@ +# Norwegian bokmål translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Rune Fauske , 2012 +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: Rune Fauske <>\n" +"Language-Team: Norwegian bokmål\n" +"Language: nb_no\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Ingen filer ble lagt til skissen." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "En fil ble lagt til skissen." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} filer ble lagt til skissen." + +#: Editor.java:484 +msgid "File" +msgstr "Fil" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Ny" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Åpne..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Skissebok" + +#: Editor.java:509 +msgid "Examples" +msgstr "Eksempler" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Lukk" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Lagre" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Lagre som..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Last opp" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Last opp med en Programmerer" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Sideoppsett" + +#: Editor.java:564 +msgid "Print" +msgstr "Skriv ut" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Innstillinger" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Avslutt" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Skisse" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verifiser / Kompiler" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importer bibliotek..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Vis skissemappe" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Legg til fil..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Verktøy" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Seriell overvåker" + +#: Editor.java:682 +msgid "Board" +msgstr "Kort" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Serieport" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmerer" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Brenne oppstartslaster" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "seriemeny er null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "navn er null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "feil ved henting av portliste" + +#: Editor.java:1002 +msgid "Help" +msgstr "Hjelp" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Kom i gang" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Miljø" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Feilsøking" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referanse" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Finn i Referanse" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Ofte spurte spørsmål" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Besøk Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Om Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Rediger" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Angre" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Gjør om" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Klipp ut" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopier" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopier for Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopier som HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Lim inn" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Velg alt" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Kommenter/Fjern kommentar" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Mer innrykk" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Mindre innrykk" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Finn..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Finn neste" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Finn forrige" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Finn i utvalg" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Velg først et ord å finne i referansen." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Ingen referanse tilgjengelig for \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Kompilerer skisse..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Kompilering er ferdig." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Lagre endringer i \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Vil du " +"lagre endringer i denne skissen
før den lukkes?

Hvis du ikke " +"lagrer, vil endringene gå tapt." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Avbryt" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Ikke lagre" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Ugyldig fil valgt" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing kan kun åpne egne skisser\n" +"og andre filer som slutter med .ino eller .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Filen \"{0}\" må ligge i en skissemappe\n" +"med følgende navn \"{1}\".\n" +"Opprett denne mappen, flytt filen og fortsett?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Flytter" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Feil" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "En mappe med følgende navn \"{0}\" eksisterer allerede. Kan ikke åpne skissen." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Kunne ikke opprette skissemappen." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Kunne ikke kopiere til en riktig plassering." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Kunne ikke opprette skissen." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Lagrer..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Lagret" + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Lagring avbrutt" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Fant ikke serieporten {0}.\n" +"Last opp på nytt med en anne serieport?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Laster opp til I/O kort..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Opplasting ferdig." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Opplasting avbrutt." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Lagre endringer før eksport?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Eksport avbrutt, endringer må lagres først." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Brenner oppstartslaster til I/O kort (dette kan ta et minutt..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Brenning av oppstartslaster er ferdig" + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Feil under brenning av oppstartslaster." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Skriver ut..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Utskrift ferdig." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Feil under utskrift." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Utskrift avbrutt." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Ugyldig feil på linje: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Åpne URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"En ny versjon av Arduino er tilgjengelig,\n" +"ønsker du å besøke nedlastingssiden for Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Ja" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Nei" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Oppdater" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Finn:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Bytt ut med:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ikke skill mellom store og små bokstaver" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Fortsett fra toppen igjen" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Erstatt alle" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Erstatt" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Erstatt & Finn" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Forrige" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Finn" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Send" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Bla automatisk" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Ingen linjeslutt" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Linjeskift" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Vognretur" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Både NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Serieporten ''{0}'' er allerede i bruk. Prøv å avslutte eventuelle program som kan tenkes å " +"benytte den." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Feil ved åpning av serieport ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Fant ikke serieporten ''{0}''. Valgte du den riktige fra Verktøy > " +"Serieport menyen?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"Byte bufferet for readByteUntil() er for lite for {0} byter opp til " +"og med char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Feil i Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Autoformater" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Ingen endringer nødvendig for autoformatering." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Autoformatering avbrutt: For mange høyreparanteser." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Autoformatering avbrutt: For mange venstreparanteser." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Autoformatering avbrutt: For mange høyre klammeparantes." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Autoformatering avbrutt: For mange venstre klammeparantes." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Autoformatering ferdig." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Fiks tegnkoding & Last på nytt" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Forkast alle endringer og last skissen på nytt?" + +#: 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 "" +"Det oppstod en feil under reparering av tegnkoding for filen.\n" +"Ikke forsøk å lagre denne skissen siden den kan overskrive\n" +"den gamle versjonen. Benytt Åpne for å åpne skissen på nytt og prøv igjen.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arkiver skisse" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Kunne ikke arkivere skisse" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Arkivering av skissen ble avbrutt fordi\n" +"skissen ikke kunne lagres." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arkiver skissen som:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Arkivering av skissen avbrutt." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "File ved lasting av koden {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" inneholder ukjente karakterer. Hvis denne kildekoden var laget med en " +"eldre versjon av Processing, må du kanskje bruke Verktøy -> Fiks tegnkoding & " +"Last på nytt for å oppdatere skissen til å benytte UTF-8 koding. Hvis ikke må " +"du kanskje slette de ukjente karakterene for å blit kvitt denne feilmeldingen." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Skissen er skrivebeskyttet" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Noen filer er markert som \"skrivebeskyttet\". Derfor må \n" +"skissen lagres på nytt i en annen lokasjon\n" +"og prøv på nytt." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Navn på ny fil:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Skissen har ikke navn" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Hva med å lagre skissen før \n" +"du prøver å omdøpe den?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Omdøping feilet" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Navnet kan ikke starte med punktum." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" er ikke en gyldig filtype" + +#: Sketch.java:378 +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 "" +"Hovedfilen kan ikke ha etternavn.\n" +"(Kanskje det er på tide for deg å ta steget opp til et\n" +"\"skikkelig\" programmeringsmiljø)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Niks" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Det eksisterer allerede en fil med navn \"{0}\" i \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Du kan ikke ha en .cpp fil med sammen navn som skissen." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Du kan ikke omdøpe skissen til \"{0}\"\n" +"fordi skissen allerede har en .cpp fil med samme navn." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Kan ikke døpe om" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Beklager, en skisse (eller mappe) med navnet \"{0}\" eksisterer allerede." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Kunne ikke omdøpe skissen. {0}" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Kunne ikke omdøpe \"{0}\" til \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Kunne ikke omdøpe skissen. {1}" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Kunne ikke omdøpe skissen. {2}" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() returnerte negativ" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Er du sikker på at du vil slette denne skissen?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Er du sikker på at du vil slette \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Slett" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Kunne ikke gjøre det" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Kunne ikke slette \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: intern feil.. kunne ikke finne kode" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Skissen er skrivebeskyttet" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Fordi noen filer er merket \"skrivebeskyttet\", må \n" +"denne skissen lagres på nytt til en annen lokasjon." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"Fra Arduino 1.0 har standard filtypen blitt endret\n" +"fra .pde til .ino. Nye skisser (også de oppretten via \n" +"\"Lagre som\") vil benytte den nye filtypen. Eksisterende\n" +"skisser vil bli oppdatert med den nye filtype ved lagring.\n" +"Dette kan deaktiveres i dialogen for innstillinger.\n" +"\n" +"Lagre skissen og oppdater filtypen?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Lagre skissemappe som..." + +#: Sketch.java:865 +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}\"\n" +"fordi skissen allrede har en .cpp fil med samme navn." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Dette var surrealistisk" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Du kan ikke lagre skissen i en mappe inn \n" +"i seg selv. Dette vil fortsette i all evighet." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Velg et bilde eller en annen datafil som skal kopieres til skissen" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Erstatt den eksisterende versjonen av {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Feil ved tillegging av fil" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Kunne ikke slette den eksisterende ''{0}'' filen." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Du lurer ikke meg" + +#: Sketch.java:1079 +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 "" +"Denne filen har allerede blitt kopiert til den\n" +"lokasjonen som du prøver å legge den til.\n" +"Kan'ke gjøre ikkeno'." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Kunne ikke legge ''{0}'' til skissen." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Byggemappen forsvant eller kunne ikke skrives til" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Kunne ikke finne 'main' klassen" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Ufanget unntak av typen: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Feil under flytting av {0} til byggemappen" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Laster opp..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Binær skissestørrelse: {0} byter (av {1} byter maksimum)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Kunne ikke bestemme størrelsen av programmet: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Skissen er for stor. Se http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"forslag til hvordan størrelsen kan reduseres" + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "/* mangler fra enden til en /* kommentar */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Skissen forsvant" + +#: Sketch.java:1797 +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 "" +"Skissemappen har forsvunnet.\n" +" Vil forsøke å lagre på nytt i samme lokasjon,\n" +"men alt utenom kildekoden vil gå tapt." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Kunne ikke lagre skissen på nytt" + +#: Sketch.java:1811 +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 "" +"Skissen kunne ikke lagres på nytt. Det kan tenkes at du er ille ute nå\n" +"og det er på tide å kopiere og lime inn kildekoden i et annet redigeringsprogram." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Navnet på skissen måtte endres. Skissenavn kan kun inneholde\n" +"ASCII karakterer og nummer (men kan ikke starte med et nummer).\n" +"De bør også være kortere en 64 karakterer." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Kompilatorfeil, vennligst send denne koden til {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"den valgte serieporten {0} eksisterer ikke, eller kortet ditt er ikke tilkoblet" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Enheten svarer ikke, sjekk at riktig serieport er valgt eller RESET " +"kortet like før eksportering" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Problemer ved opplasting til kortet. Se http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for forslag." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Feil mikrokontroller funnet. Valgte du riktig kort fra Verktøy " +"> Kort menyen?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Ingen kort valgt, vennligs velg et kort fra Verktøy > Kort menyen." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} returnerte {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Feil ved kompilering." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Vennligst importer SPI biblioteket fra Skisse > Importer bibliotek menyen." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Fra Arduino 0019, er Ethernet bilioteket avhengig av SPI biblioteket.\n" +"Det ser ut som du benytter et bibliotek som er avhangig av SPI " +"biblioteket.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "'BYTE' nøkkelordet er ikke støttet lenger." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Fra Arduino 1.0, er ikke 'BYTE' nøkkelordet lenger støttet.\n" +"Vennligst benytt Serial.write() i stedet.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Server klassen har blitt omdøpt til EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Fra Arduino 1.0 er Server klassen i Ethernet biblioteket blitt omdøpt " +"til EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Client klassen har blitt omdøpt til EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Fra Arduino 1.0 er Client klassen i Ethernet biblioteket blitt omdøpt" +"til EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Udp klassen har blitt omdøpt til EthernetUdp" + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Fra Arduino 1.0 er Udp klassen i Ethernet biblioteket blitt omdøpt til " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() har blitt omdøpt til Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Fra Arduino 1.0 er Wire.send() funksjonen omdøpt til Wire.write() for " +"konsistens med andre bibliotek.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.recive() har blitt omdøpt til Wire.read()" + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Fra Arduion 1.0 er Wire.receive() funksjonen omdøpt til Wire.read() " +"for konsistens med andre bibliotek.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Konsollfeil" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Det oppstod et problem under åpning av filer brukt\n" +"til lagring av tekst fra konsoll." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Ikkefatal feil under tilordning av Look & Feel." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Feilmeldingen følger. Arduino vil imidlertid kjøre fint." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problemer under setting av platform" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"En ukjent feil oppstod under lasting av\n" +"plattformspesifik kode for din maskin." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Vennligst installer JDK 1.5 eller nyere" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino er avhengig av JDK (ikke bare JRE)\n" +"for å kjøre. Vennligst innstaller JDK 1.5 eller nyere.\n" +"Mer informasjon finnes i referansedokumentasjonen." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Mappen for skisser er forsvunnet" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Mappen for skisser eksisterer ikke lenger.\n" +"Arduino vil nå gå over til å bruke standard mappe for\n" +"skisser, og hvis nødvendig opprette en ny mappe\n." +"Etterpå vil Arduino slutte å omtale seg selv i\n" +"tredje person." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Tid for pause" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Du har nådd maksimalt antall skissenavn som kan genereres\n" +"automatisk i løpet av en dag. Hva med å ta seg en tur i stedet?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Solskinn" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Ærlig talt, nå er det på tide med litt frisk luft." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Åpne en Arduino skisse..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Er du " +"sikker på at du vil avslutte?

Lukker du den siste skissen, avsluttes Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Bidratt" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Skissen eksisterer ikke" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Den valgte skissen eksisterer ikke lenger.\n" +"Du må kanskje starte om Arduino for å oppdatere\n" +"skissebokmenyen" + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Skissen \"{0}\" kan ikke benyttes.\n" +"Skissenavn kan kun inneholde bokstaver og tall\n" +"(kun ASCII, ingen mellomrom, og kan ikke starte med et tall).\n" +"For å bli kvitt denne meldingen, fjern skissen fra\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Overser skisse med ugyldig navn" + +#: Base.java:1202 +#, java-format +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 "" +"Biblioteket \"{0}\" kan ikke benyttes.\n" +"Biblioteksnavn kan kun inneholde bokstaver og tall.\n" +"(kun ASCII, ingen mellomrom, og kan ikke starte med et tall)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Overser ugyldig biblioteksnavn" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problem ved henting av datamappe" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Feil oppstod ved henting av datamappe for Arduino" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Problemer med innstillinger" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino kan ikke kjøre fordi det ikke var mulig\n" +"å opprette en mappe for dine innstillinger." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Du glemte skisseboken din" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino kan ikke kjøre fordi det ikke var mulig\n" +"å opprette en mappe til å lagre skisseboken din." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Velg (eller opprett ny) mappe for skisser..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problemer ved åpning av URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Kunne ikke åpne URLen\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problem ved åpning av mappe" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Kunne ikke åpne mappen\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "miljø" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Melding" + +#: Base.java:1842 +msgid "Warning" +msgstr "Advarsel" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Kunne ikke fjerne gammel versjon av {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Kunne ikke erstatte {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Kunne ikke slette {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Ny fane" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Døp om" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Forrige fane" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Neste fane" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verifiser" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Åpne" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nytt redigeringsvindu" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Åpne i et annet vindu" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Ikke noe startprogramm tilgjengelig" + +#: 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 "" +"Uspesifisert platform er ikke lenger tilgjengelig.\n" +"Legg til \"launcher=/sti/til/app\" i preferences.txt" +"for å kunne åpne URLer og mapper." + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Kunne ikke lese instillinger for fargetema.\n" +"Du må installere Processing på nytt." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Bla i gjennom" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Katalansk" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Kinesisk forenklet" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Dansk" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Nederlandsk" + +#: Preferences.java:91 +msgid "English" +msgstr "Engelsk" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Fransk" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filippinsk" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galisisk" + +#: Preferences.java:96 +msgid "German" +msgstr "Tysk" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Gresk" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Ungarsk" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italiensk" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Japansk" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Latvisk" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persisk" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Rumensk" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Spansk" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Kunne ikke lese standard innstillinger.\n" +"Du må installere Arduino på nytt." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Klarte ikke å lese innstillinger fra {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Feil under lesing av innstillinger" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Feil ved lesing av filen med innstillinger. Vennligst slett (eller flytt)\n" +"{0} og start Arduino på nytt." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Skissebok plassering:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Velg en ny plassering for skisseboken" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (krever omstart av Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Skriftstørrelse for redigeringsprogrammet: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Vis detaljert informasjon under: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "kompilering " + +#: Preferences.java:375 +msgid "upload" +msgstr "last opp" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Sjekk kode etter opplasting" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Bruk eksternt redigeringsprogram" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Se etter oppdateringer ved oppstart" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Oppdater skissefilene til ny filtype under lagring (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Automatisk assosier .ino filer med Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Flere instillinger kan redigeres direkte i filen" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(redigeres kun når Arduino ikke kjører)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ser bort fra ugyldig skriftstørrelse {0}" diff --git a/app/src/processing/app/Resources_no_nb.properties b/app/src/processing/app/Resources_no_nb.properties new file mode 100644 index 000000000..dadfb9dfd --- /dev/null +++ b/app/src/processing/app/Resources_no_nb.properties @@ -0,0 +1,1034 @@ +# Norwegian bokm\u00e5l translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Rune Fauske , 2012 +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: Rune Fauske <>\nLanguage-Team\: Norwegian bokm\u00e5l\nLanguage\: nb_no\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Ingen filer ble lagt til skissen. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=En fil ble lagt til skissen. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} filer ble lagt til skissen. + +#: Editor.java:484 +File=Fil + +#: Editor.java:486 EditorToolbar.java:41 +New=Ny + +#: Editor.java:494 Base.java:903 +Open...=\u00c5pne... + +#: Editor.java:503 +Sketchbook=Skissebok + +#: Editor.java:509 +Examples=Eksempler + +#: Editor.java:514 Editor.java:1977 +Close=Lukk + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Lagre + +#: Editor.java:530 +Save\ As...=Lagre som... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Last opp + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Last opp med en Programmerer + +#: Editor.java:556 +Page\ Setup=Sideoppsett + +#: Editor.java:564 +Print=Skriv ut + +#: Editor.java:576 Preferences.java:279 +Preferences=Innstillinger + +#: Editor.java:586 Base.java:782 +Quit=Avslutt + +#: Editor.java:600 +Sketch=Skisse + +#: Editor.java:602 +Verify\ /\ Compile=Verifiser / Kompiler + +#: Editor.java:629 +Import\ Library...=Importer bibliotek... + +#: Editor.java:634 +Show\ Sketch\ Folder=Vis skissemappe + +#: Editor.java:643 +Add\ File...=Legg til fil... + +#: Editor.java:656 +Tools=Verkt\u00f8y + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Seriell overv\u00e5ker + +#: Editor.java:682 +Board=Kort + +#: Editor.java:690 +Serial\ Port=Serieport + +#: Editor.java:695 +Programmer=Programmerer + +#: Editor.java:699 +Burn\ Bootloader=Brenne oppstartslaster + +#: Editor.java:923 +serialMenu\ is\ null=seriemeny er null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=navn er null + +#: Editor.java:986 +error\ retrieving\ port\ list=feil ved henting av portliste + +#: Editor.java:1002 +Help=Hjelp + +#: Editor.java:1041 +Getting\ Started=Kom i gang + +#: Editor.java:1049 +Environment=Milj\u00f8 + +#: Editor.java:1057 +Troubleshooting=Feils\u00f8king + +#: Editor.java:1065 +Reference=Referanse + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Finn i Referanse + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Ofte spurte sp\u00f8rsm\u00e5l + +#: Editor.java:1091 +Visit\ Arduino.cc=Bes\u00f8k Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Om Arduino + +#: Editor.java:1116 +Edit=Rediger + +#: Editor.java:1119 Editor.java:1341 +Undo=Angre + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Gj\u00f8r om + +#: Editor.java:1135 Editor.java:2652 +Cut=Klipp ut + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopier + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kopier for Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kopier som HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Lim inn + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Velg alt + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Kommenter/Fjern kommentar + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Mer innrykk + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Mindre innrykk + +#: Editor.java:1220 +Find...=Finn... + +#: Editor.java:1235 +Find\ Next=Finn neste + +#: Editor.java:1245 +Find\ Previous=Finn forrige + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Finn i utvalg + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Velg f\u00f8rst et ord \u00e5 finne i referansen. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Ingen referanse tilgjengelig for "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Kompilerer skisse... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Kompilering er ferdig. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Lagre endringer i "{0}"? + +#: Editor.java:2006 +\ \ 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. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Avbryt + +#: Editor.java:2017 +Don't\ Save=Ikke lagre + +#: Editor.java:2089 +Bad\ file\ selected=Ugyldig fil valgt + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing kan kun \u00e5pne egne skisser\nog andre filer som slutter med .ino eller .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Filen "{0}" m\u00e5 ligge i en skissemappe\nmed f\u00f8lgende navn "{1}".\nOpprett denne mappen, flytt filen og fortsett? + +#: Editor.java:2109 +Moving=Flytter + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Feil + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=En mappe med f\u00f8lgende navn "{0}" eksisterer allerede. Kan ikke \u00e5pne skissen. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Kunne ikke opprette skissemappen. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Kunne ikke kopiere til en riktig plassering. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Kunne ikke opprette skissen. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Lagrer... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Lagret + +#: Editor.java:2270 +Save\ Canceled.=Lagring avbrutt + +#: Editor.java:2296 +#, java-format +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? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Laster opp til I/O kort... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Opplasting ferdig. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Opplasting avbrutt. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Lagre endringer f\u00f8r eksport? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport avbrutt, endringer m\u00e5 lagres f\u00f8rst. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Brenner oppstartslaster til I/O kort (dette kan ta et minutt... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Brenning av oppstartslaster er ferdig + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Feil under brenning av oppstartslaster. + +#: Editor.java:2500 +Printing...=Skriver ut... + +#: Editor.java:2517 +Done\ printing.=Utskrift ferdig. + +#: Editor.java:2520 +Error\ while\ printing.=Feil under utskrift. + +#: Editor.java:2524 +Printing\ canceled.=Utskrift avbrutt. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Ugyldig feil p\u00e5 linje\: {0} + +#: Editor.java:2641 +Open\ URL=\u00c5pne URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=En ny versjon av Arduino er tilgjengelig,\n\u00f8nsker du \u00e5 bes\u00f8ke nedlastingssiden for Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Ja + +#: UpdateCheck.java:108 Preferences.java:77 +No=Nei + +#: UpdateCheck.java:111 +Update=Oppdater + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Finn\: + +#: FindReplace.java:81 +Replace\ with\:=Bytt ut med\: + +#: FindReplace.java:96 +Ignore\ Case=Ikke skill mellom store og sm\u00e5 bokstaver + +#: FindReplace.java:105 +Wrap\ Around=Fortsett fra toppen igjen + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Erstatt alle + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Erstatt + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Erstatt & Finn + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Forrige + +#: FindReplace.java:124 FindReplace.java:127 +Find=Finn + +#: SerialMonitor.java:93 +Send=Send + +#: SerialMonitor.java:110 +Autoscroll=Bla automatisk + +#: SerialMonitor.java:112 +No\ line\ ending=Ingen linjeslutt + +#: SerialMonitor.java:112 +Newline=Linjeskift + +#: SerialMonitor.java:112 +Carriage\ return=Vognretur + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=B\u00e5de NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Serieporten ''{0}'' er allerede i bruk. Pr\u00f8v \u00e5 avslutte eventuelle program som kan tenkes \u00e5 benytte den. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Feil ved \u00e5pning av serieport ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Fant ikke serieporten ''{0}''. Valgte du den riktige fra Verkt\u00f8y > Serieport menyen? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Byte bufferet for readByteUntil() er for lite for {0} byter opp til og med char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Feil i Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Autoformater + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Ingen endringer n\u00f8dvendig for autoformatering. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Autoformatering avbrutt\: For mange h\u00f8yreparanteser. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Autoformatering avbrutt\: For mange venstreparanteser. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Autoformatering avbrutt\: For mange h\u00f8yre klammeparantes. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Autoformatering avbrutt\: For mange venstre klammeparantes. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Autoformatering ferdig. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Fiks tegnkoding & Last p\u00e5 nytt + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Forkast alle endringer og last skissen p\u00e5 nytt? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Det oppstod en feil under reparering av tegnkoding for filen.\nIkke fors\u00f8k \u00e5 lagre denne skissen siden den kan overskrive\nden gamle versjonen. Benytt \u00c5pne for \u00e5 \u00e5pne skissen p\u00e5 nytt og pr\u00f8v igjen.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Arkiver skisse + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Kunne ikke arkivere skisse + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arkivering av skissen ble avbrutt fordi\nskissen ikke kunne lagres. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arkiver skissen som\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Arkivering av skissen avbrutt. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=File ved lasting av koden {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" inneholder ukjente karakterer. Hvis denne kildekoden var laget med en eldre versjon av Processing, m\u00e5 du kanskje bruke Verkt\u00f8y -> Fiks tegnkoding & Last p\u00e5 nytt for \u00e5 oppdatere skissen til \u00e5 benytte UTF-8 koding. Hvis ikke m\u00e5 du kanskje slette de ukjente karakterene for \u00e5 blit kvitt denne feilmeldingen. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Skissen er skrivebeskyttet + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Navn p\u00e5 ny fil\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Skissen har ikke navn + +#: Sketch.java:299 +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? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Omd\u00f8ping feilet + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Navnet kan ikke starte med punktum. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" er ikke en gyldig filtype + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Hovedfilen kan ikke ha etternavn.\n(Kanskje det er p\u00e5 tide for deg \u00e5 ta steget opp til et\n"skikkelig" programmeringsmilj\u00f8) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Niks + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Det eksisterer allerede en fil med navn "{0}" i "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Du kan ikke ha en .cpp fil med sammen navn som skissen. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Du kan ikke omd\u00f8pe skissen til "{0}"\nfordi skissen allerede har en .cpp fil med samme navn. + +#: Sketch.java:459 +Cannot\ Rename=Kan ikke d\u00f8pe om + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Beklager, en skisse (eller mappe) med navnet "{0}" eksisterer allerede. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Kunne ikke omd\u00f8pe skissen. {0} + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Kunne ikke omd\u00f8pe "{0}" til "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Kunne ikke omd\u00f8pe skissen. {1} + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Kunne ikke omd\u00f8pe skissen. {2} + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() returnerte negativ + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Er du sikker p\u00e5 at du vil slette denne skissen? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Er du sikker p\u00e5 at du vil slette "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Slett + +#: Sketch.java:620 +Couldn't\ do\ it=Kunne ikke gj\u00f8re det + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Kunne ikke slette "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: intern feil.. kunne ikke finne kode + +#: Sketch.java:724 +Sketch\ is\ read-only=Skissen er skrivebeskyttet + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Fordi noen filer er merket "skrivebeskyttet", m\u00e5 \ndenne skissen lagres p\u00e5 nytt til en annen lokasjon. + +#: Sketch.java:743 +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? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Lagre skissemappe som... + +#: Sketch.java:865 +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. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Dette var surrealistisk + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Velg et bilde eller en annen datafil som skal kopieres til skissen + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Erstatt den eksisterende versjonen av {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Feil ved tillegging av fil + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Kunne ikke slette den eksisterende ''{0}'' filen. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Du lurer ikke meg + +#: Sketch.java:1079 +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'. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Kunne ikke legge ''{0}'' til skissen. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Byggemappen forsvant eller kunne ikke skrives til + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Kunne ikke finne 'main' klassen + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Ufanget unntak av typen\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Feil under flytting av {0} til byggemappen + +#: Sketch.java:1661 +Uploading...=Laster opp... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Bin\u00e6r skissest\u00f8rrelse\: {0} byter (av {1} byter maksimum) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Kunne ikke bestemme st\u00f8rrelsen av programmet\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Skissen er for stor. Se http\://www.arduino.cc/en/Guide/Troubleshooting\#size for forslag til hvordan st\u00f8rrelsen kan reduseres + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* mangler fra enden til en /* kommentar */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Skissen forsvant + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Skissemappen har forsvunnet.\n Vil fors\u00f8ke \u00e5 lagre p\u00e5 nytt i samme lokasjon,\nmen alt utenom kildekoden vil g\u00e5 tapt. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Kunne ikke lagre skissen p\u00e5 nytt + +#: Sketch.java:1811 +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.=Skissen kunne ikke lagres p\u00e5 nytt. Det kan tenkes at du er ille ute n\u00e5\nog det er p\u00e5 tide \u00e5 kopiere og lime inn kildekoden i et annet redigeringsprogram. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Navnet p\u00e5 skissen m\u00e5tte endres. Skissenavn kan kun inneholde\nASCII karakterer og nummer (men kan ikke starte med et nummer).\nDe b\u00f8r ogs\u00e5 v\u00e6re kortere en 64 karakterer. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Kompilatorfeil, vennligst send denne koden til {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=den valgte serieporten {0} eksisterer ikke, eller kortet ditt er ikke tilkoblet + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Enheten svarer ikke, sjekk at riktig serieport er valgt eller RESET kortet like f\u00f8r eksportering + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problemer ved opplasting til kortet. Se http\://www.arduino.cc/en/Guide/Troubleshooting\#upload for forslag. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Feil mikrokontroller funnet. Valgte du riktig kort fra Verkt\u00f8y > Kort menyen? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Ingen kort valgt, vennligs velg et kort fra Verkt\u00f8y > Kort menyen. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} returnerte {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Feil ved kompilering. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Vennligst importer SPI biblioteket fra Skisse > Importer bibliotek menyen. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nFra Arduino 0019, er Ethernet bilioteket avhengig av SPI biblioteket.\nDet ser ut som du benytter et bibliotek som er avhangig av SPI biblioteket.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' n\u00f8kkelordet er ikke st\u00f8ttet lenger. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nFra Arduino 1.0, er ikke 'BYTE' n\u00f8kkelordet lenger st\u00f8ttet.\nVennligst benytt Serial.write() i stedet.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server klassen har blitt omd\u00f8pt til EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nFra Arduino 1.0 er Server klassen i Ethernet biblioteket blitt omd\u00f8pt til EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client klassen har blitt omd\u00f8pt til EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nFra Arduino 1.0 er Client klassen i Ethernet biblioteket blitt omd\u00f8pttil EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp klassen har blitt omd\u00f8pt til EthernetUdp + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nFra Arduino 1.0 er Udp klassen i Ethernet biblioteket blitt omd\u00f8pt til EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() har blitt omd\u00f8pt til Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nFra Arduino 1.0 er Wire.send() funksjonen omd\u00f8pt til Wire.write() for konsistens med andre bibliotek.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.recive() har blitt omd\u00f8pt til Wire.read() + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nFra Arduion 1.0 er Wire.receive() funksjonen omd\u00f8pt til Wire.read() for konsistens med andre bibliotek.\n\n + +#: EditorConsole.java:152 +Console\ Error=Konsollfeil + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Det oppstod et problem under \u00e5pning av filer brukt\ntil lagring av tekst fra konsoll. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Ikkefatal feil under tilordning av Look & Feel. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Feilmeldingen f\u00f8lger. Arduino vil imidlertid kj\u00f8re fint. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problemer under setting av platform + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=En ukjent feil oppstod under lasting av\nplattformspesifik kode for din maskin. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Vennligst installer JDK 1.5 eller nyere + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino er avhengig av JDK (ikke bare JRE)\nfor \u00e5 kj\u00f8re. Vennligst innstaller JDK 1.5 eller nyere.\nMer informasjon finnes i referansedokumentasjonen. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Mappen for skisser er forsvunnet + +#: Base.java:258 +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. + +#: Base.java:532 +Time\ for\ a\ Break=Tid for pause + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Du har n\u00e5dd maksimalt antall skissenavn som kan genereres\nautomatisk i l\u00f8pet av en dag. Hva med \u00e5 ta seg en tur i stedet? + +#: Base.java:537 +Sunshine=Solskinn + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u00c6rlig talt, n\u00e5 er det p\u00e5 tide med litt frisk luft. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u00c5pne en Arduino skisse... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Er du sikker p\u00e5 at du vil avslutte?

Lukker du den siste skissen, avsluttes Arduino. + +#: Base.java:970 +Contributed=Bidratt + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Skissen eksisterer ikke + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Den valgte skissen eksisterer ikke lenger.\nDu m\u00e5 kanskje starte om Arduino for \u00e5 oppdatere\nskissebokmenyen + +#: Base.java:1125 +#, 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}=Skissen "{0}" kan ikke benyttes.\nSkissenavn kan kun inneholde bokstaver og tall\n(kun ASCII, ingen mellomrom, og kan ikke starte med et tall).\nFor \u00e5 bli kvitt denne meldingen, fjern skissen fra\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Overser skisse med ugyldig navn + +#: Base.java:1202 +#, 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)=Biblioteket "{0}" kan ikke benyttes.\nBiblioteksnavn kan kun inneholde bokstaver og tall.\n(kun ASCII, ingen mellomrom, og kan ikke starte med et tall) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Overser ugyldig biblioteksnavn + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problem ved henting av datamappe + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Feil oppstod ved henting av datamappe for Arduino + +#: Base.java:1440 +Settings\ issues=Problemer med innstillinger + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan ikke kj\u00f8re fordi det ikke var mulig\n\u00e5 opprette en mappe for dine innstillinger. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Du glemte skisseboken din + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino kan ikke kj\u00f8re fordi det ikke var mulig\n\u00e5 opprette en mappe til \u00e5 lagre skisseboken din. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Velg (eller opprett ny) mappe for skisser... + +#: Base.java:1647 +Problem\ Opening\ URL=Problemer ved \u00e5pning av URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Kunne ikke \u00e5pne URLen\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problem ved \u00e5pning av mappe + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Kunne ikke \u00e5pne mappen\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=milj\u00f8 + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Melding + +#: Base.java:1842 +Warning=Advarsel + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Kunne ikke fjerne gammel versjon av {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Kunne ikke erstatte {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Kunne ikke slette {0} + +#: EditorHeader.java:292 +New\ Tab=Ny fane + +#: EditorHeader.java:300 +Rename=D\u00f8p om + +#: EditorHeader.java:326 +Previous\ Tab=Forrige fane + +#: EditorHeader.java:340 +Next\ Tab=Neste fane + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verifiser + +#: EditorToolbar.java:41 +Open=\u00c5pne + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nytt redigeringsvindu + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u00c5pne i et annet vindu + +#: Platform.java:167 +No\ launcher\ available=Ikke noe startprogramm tilgjengelig + +#: 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.txtfor \u00e5 kunne \u00e5pne URLer og mapper. + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Kunne ikke lese instillinger for fargetema.\nDu m\u00e5 installere Processing p\u00e5 nytt. + +#: Preferences.java:80 +Browse=Bla i gjennom + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Katalansk + +#: Preferences.java:87 +Chinese\ Simplified=Kinesisk forenklet + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Dansk + +#: Preferences.java:90 +Dutch=Nederlandsk + +#: Preferences.java:91 +English=Engelsk + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Fransk + +#: Preferences.java:94 +Filipino=Filippinsk + +#: Preferences.java:95 +Galician=Galisisk + +#: Preferences.java:96 +German=Tysk + +#: Preferences.java:97 +Greek=Gresk + +#: Preferences.java:98 +Hungarian=Ungarsk + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Italiensk + +#: Preferences.java:101 +Japanese=Japansk + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Latvisk + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Persisk + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Rumensk + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Spansk + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunne ikke lese standard innstillinger.\nDu m\u00e5 installere Arduino p\u00e5 nytt. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Klarte ikke \u00e5 lese innstillinger fra {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Feil under lesing av innstillinger + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Feil ved lesing av filen med innstillinger. Vennligst slett (eller flytt)\n{0} og start Arduino p\u00e5 nytt. + +#: Preferences.java:299 +Sketchbook\ location\:=Skissebok plassering\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Velg en ny plassering for skisseboken + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (krever omstart av Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Skriftst\u00f8rrelse for redigeringsprogrammet\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Vis detaljert informasjon under\: + +#: Preferences.java:373 +compilation\ =kompilering + +#: Preferences.java:375 +upload=last opp + +#: Preferences.java:384 +Verify\ code\ after\ upload=Sjekk kode etter opplasting + +#: Preferences.java:393 +Use\ external\ editor=Bruk eksternt redigeringsprogram + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Se etter oppdateringer ved oppstart + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Oppdater skissefilene til ny filtype under lagring (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Automatisk assosier .ino filer med Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Flere instillinger kan redigeres direkte i filen + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(redigeres kun n\u00e5r Arduino ikke kj\u00f8rer) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ser bort fra ugyldig skriftst\u00f8rrelse {0} diff --git a/app/src/processing/app/Resources_pl.po b/app/src/processing/app/Resources_pl.po new file mode 100644 index 000000000..e97b2f89d --- /dev/null +++ b/app/src/processing/app/Resources_pl.po @@ -0,0 +1,1649 @@ +# Polish translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Maciej Wojnicki, Maciej Wójciga <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-01 10:24-0400\n" +"PO-Revision-Date: 2012-04-01 10:24-0400\n" +"Last-Translator: Maciej Wojnicki, Maciej Wójciga <>\n" +"Language-Team: Polish\n" +"Language: pl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Żadne pliki nie zostały dodane do szkicu." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Jeden plik został dodany do szkicu" + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} zostało dodanych do szkicu" + +#: Editor.java:484 +msgid "File" +msgstr "Plik" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nowy" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Otwórz..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Szkicownik" + +#: Editor.java:509 +msgid "Examples" +msgstr "Przykłady" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Zamknij" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Zapisz" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Zapisz jako..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Załaduj" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Załaduj używając programatora" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Ustawienia strony" + +#: Editor.java:564 +msgid "Print" +msgstr "Drukuj" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferencje" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Wyjście" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Szkic" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Weryfikuj / Kompiluj" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importuj bibliotekę..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Pokaż folder szkicu" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Dodaj plik..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Narzędzia" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitor portu szeregowego" + +#: Editor.java:682 +msgid "Board" +msgstr "Płytka" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Port szeregowy" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programator" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Wypal Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu jest null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "nazwa jest null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "problem z pozyskaniem listy portów" + +#: Editor.java:1002 +msgid "Help" +msgstr "Pomoc" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Jak zacząć" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Środowiski" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Rozwiązywanie problemów" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Dokumentacja" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Znajdź w dokumentacji" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Często zadawane pytania" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Odwiedź Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "O Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Edycja" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Cofnij" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Ponów" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Wytnij" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopiuj" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopiuj dla Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopiuj jako HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Wklej" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Zaznacz wszystko" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Zwiększ wcięcie" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Zmniejsz wcięcie" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Znajdź..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Znajdź następne" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Znajdź wcześniejsze" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Szukaj według zaznaczenia" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Najpierw zaznacz słowo aby wyszukać je w dokumentacji." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Nie ma dokumentacji dla \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Kompiluję szkic..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Kompilowanie zakończone." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Zapisać zmiany jako \"{0}\"?" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Czy chcesz zapisać zmiany w tym szkicu
przed zamknięciem?

Jeśli ich nie zapiszesz, " +"zmiany będą utracone." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Anuluj" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Nie zapisuj" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Wybrano niepoprawny plik" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing może otwierać tylko własne szkice\n" +"i inne pliki z rozszerzeniem .ino lub .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Plik \"{0}\" musi być wewnątrz\n" +"folderu szkicu o nazwie \"{1}\".\n" +"Utwórzyć folder, przenieść plik i kontynuować?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Przenoszę" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Błąd" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Folder o nazwie \"{0}\" już istnieje. Nie mogę otworzyć szkicu." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Nie można utworzyć folderu szkicu." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Nie można przenieść do odpowiedniej lokalizacji." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Nie można utworzyć szkicu." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Zapisuję..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Zapisano." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Anulowano zapisywanie." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Port szeregowy {0} nie został znaleziony.\n" +"Ponówić ładowanie danych przez inny port?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Ładuję dane na płytkę…" + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Ładowanie zakończone pomyślnie." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Ładowanie anulowane." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Zapisać zmiany przed eksportowaniem?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Eksportowanie anulowane, zmiany muszą zostać najpierw zapisane." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Wypalanie bootloadera na płytce (może to potrwać chwilę)…" + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Wypalanie bootloadera zakończone pomyślnie." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Wystąpił błąd podczas wypalania bootloadera." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Drukuję..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Drukowanie zakończone." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Wystąpił błąd podczas drukowania." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Drukowanie anulowane." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Bład w linii: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Otwórz URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Nowa wersja Arduino jest już dostępna,\n" +"czy chciałbyć odwiedzić oficjalną stronę Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Aktualizacja" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Znajdź" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Zamień" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignoruj" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Autoprzewijanie" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Nowa linia (NL)" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Powrót do początku linii (CR)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Zarówno NL jak i CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " bodów" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Port szeregowy ''{0}'' jest obecnie w uzyciu. Spróbuj zamknąć programy które mogą " +"go używać." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Błąd podczas otwierania portu szeregowego ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Port szeregowy ''{0}'' nie został znaleziony. Czy wybrałeś prawidłowy z menu Narzędzia (Tools) > " +"Port szeregowy (Serial Port) ?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"Bufor bajtowy readBytesUntil() jest za mały dla {0} bajtów " +"włącznie z char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Błąd w Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Automatyczne formatowanie" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Automatyczne formatowanie zakończone." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Napraw kodowanie i załaduj ponownie" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Odrzucić wszystkie zmiany i przeładować szkic?" + +#: 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 "" +"Wystąpił błąd podczas próby naprawienia kodowania pliku.\n" +"Nie próbuj zapisać tego szkicu ponieważ może on nadpisać\n" +"poprzednią wersję. Użyj Otwórz aby ponownie otworzyć szkic i spróbuj jeszcze raz.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Archiwizuj szkic" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "rrMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Nie można było zarchiwizować szkicu" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Archiwizowanie szkicu zostało anulowane ponieważ\n" +"szkic nie mógł być zapisany poprawnie." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Archiwizuj szkic jako:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Archiwizacja szkicu anulowana." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Błąd podczas wgrywania kodu {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" zawiera nierozpoznawalne znaki. Jeżeli kod był stworzony przy pomocy " +"starszej wersji Processing, wejdź do menu Tools -> Fix Encoding & " +"Reload w celu zaktualizowania szkicu do używania kodowania UTF-8. Jeśli to nie zadziała, " +"usuń wszystkie błędne znaki w celu pozbycia się tego ostrzeżenia." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Ten szkic jest oznaczony jako \"Tylko do odczytu\" " + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Niektóre pliki są oznaczone jako \"Tylko do odczytu\", więc musisz\n" +"zachować szkic w innej lokalizacji i spróbować ponownie." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nazwa nowego pliku:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Szkic nie ma nazwy" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Czy chciałbyś zachować ten plik \n" +"przed zmianą jego nazwy?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problem ze zmianą nazwy" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Nazwa nie może zaczynać się od kropki." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" nie jest prawidłowym rozszerzeniem." + +#: Sketch.java:378 +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 "" +"Plik główny nie może używać rozszerzenia.\n" +"(Być może nadszedł czas abyś zaczął używać\n" +"\"prawdziwego\" środowiska programistycznego?)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Nie" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Plik o nazwie \"{0}\" już istnieje w \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Nie możesz używać pliku .cpp o tej samej nazwie co szkic." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Nie możesz zmienić nazwy szkicu na \"{0}\"\n" +"ponieważ szkic już posiada plik .cpp o tej samej nazwie." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Nie można zmienić nazwy" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Szkic (lub folder) o nazwie \"{0}\" już istnieje." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Nie można zmienić nazwy szkicu. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Nie można zmienić nazwy \"{0}\" na \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Nie można zmienić nazwy szkicu. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Nie można zmienić nazwy szkicu. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "funkcja createNewFile() zwróciła false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Czy jesteś pewny że chcesz usunąć ten szkic?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Czy jesteś pewny że chcesz usunąć \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Usuń" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Nie można było tego zrobić" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Nie można usunąć \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: internal error.. nie można znaleźć kodu" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Ten szkic jest oznaczony jako \"Tylko do odczytu\" " + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Niektóre pliki są oznaczone jako \"Tylko do odczytu\", więc musisz\n" +"zachować szkic w innej lokalizacji." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"W Arduino 1.0 zmieniło się domyślne rozszerzenie pliku\n" +"z .pde na .ino. Nowe szkice (włącznie z tymi stworzonymi\n" +"przez \"Zapisz jako\" będą używać nowego rozszerzenia.\n" +"Rozszerzenia istniejących szkiców będą zmieniane podczas zapisywania,\n" +"jednak możesz wyłączyć tą opcję w ustawieniach.\n" +"\n" +"Zapisać szkic i zmienić jego rozszerzenie?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Zapisz folder szkicu jako..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Nie możesz zapisać szkicu jako \"{0}\"\n" +"ponieważ szkic już posiada plik .cpp o tej samej nazwie." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "To trochę nielogiczne" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Nie możesz zapisać szkicu w folderze znajdującym się\n" +"w swoim środku. To by trwało w nieskończoność." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Wybierz obraz lub plik z innymi danymi do wklejenia do Twojego szkicu" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Zamienić istniejącą już wersję {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Błąd podczas dodawania pliku" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Nie można było usunąć istniejącego pliku ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Nie przechytrzysz mnie." + +#: Sketch.java:1079 +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 "" +"Ten plik już został skopiowany do miejsca\n" +"z którego chcesz go dodać.\n" +"Nie zrobię tego." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Nie można dodać ''{0}'' do szkicu." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Folder projektu nie został odnaleziony lub nie mógł zostać zapisany" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Nie można było znaleźć klasy głównej" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Nierozpoznany rodzaj wyjątku: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Wystąpił problem podczas przenoszenia {0} do folderu projektu" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Ładowanie..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Wielkość binarna szkicu: {0} bajtów (maksymalnie: {1} bajtów)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Nie można określić wielkości pliku: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Szkic jest za duży; zobacz porady na http://www.arduino.cc/en/Guide/Troubleshooting#size " +"w celu zmniejszenia go." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Brakuje */ na końcu /* komentarza */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Szkic zniknął" + +#: Sketch.java:1797 +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 "" +"Folder szkicu zniknął.\n" +"Ponowię probę aby zapisać szkic w tym samym miejscu,\n" +"jednak wszystkie dane oprócz kodu zostaną utracone." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Nie można było ponownie zapisać szkicu" + +#: Sketch.java:1811 +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 "" +"Nie można było prawidłowo ponownie zapisać pliku. Może to być początek kłopotów,\n" +"dlatego najlepiej skopiuj kod i przeklej go do innego edytora tekstu." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Nazwa pliku musiała być zmieniona. Nazwy szkiców mogą zawierać jedynie\n" +"znaki ASCII oraz liczby (ale nie mogą zaczynać się od liczby).\n" +"Powinny również zawierać mniej niż 64 znaki." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Błąd kompilatora, prześlij ten kod do {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"port szeregowy {0} nie istnieje lub twoja płytka nie jest podłączona" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Urządzenie nie odpowiada, sprawdź czy wybrano odpowiedni port szeregowy " +"lub zresetuj płytkę przed eksportowaniem szkicu" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Problem z przesyłaniem danych na płytkę. Sprawdź http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload aby otrzymać więcej informacji." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Wykryto inny mikrokontroler. Czy wybrałeś odpowiedni model płytki z menu Narzędzia (Tools) " +"> Model płytki (Board)?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Nie wybrano modelu płytki; proszę wybierz model z menu Narzędzia (Tools) > Model płytki(Board)." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} zwrócił {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Błąd kompilacji" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Zaimportuj bibliotekę SPI z Szkic (Sketch) > Importuj bibliotekę (Import Library)." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"Od wersji Arduino 0019, biblioteka Ethernet zależy od biblioteki SPI.\n" +"Wygląda na to że używasz innej bilioteki również zależnej od biblioteki SPI." +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Słowo 'BYTE' nie jest już wspierane." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"Od wersji Arduino 1.0, słowo 'BYTE' nie jest wspierane.\n" +"Użyj proszę funkcji Serial.write()\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Klasa Server zmieniła nazwę na EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Od wersji Arduino 1.0, klasa Server z biblioteki Ethernet zmieniła nazwę " +"na EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Klasa Client zmieniła nazwę na EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Od wersji Arduino 1.0, klasa Client z biblioteki Ethernet zmieniła nazwę " +"na EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Klasa Udp zmieniła nazwę na EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"Od wersji Arduino 1.0, klasa Udp z biblioteki Ethernet zmieniła nazwę na " +"EthernetClient.\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Funkcja Wire.send() zmieniła nazwę na Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Od wersji Arduino 1.0, funkcja Wire.send() zmieniła nazwę Wire.write() aby " +"zachować spójność nazewnictwa z innymi bibliotekami.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Funkcja Wire.receive() zmieniła nazwę na Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Od wersji 1.0, funkcja Wire.receive() zmieniła nazwę na Wire.read() " +"zachować spójność nazewnictwa z innymi bibliotekami.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Błąd konsoli" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Wystąpił błąd podczas otwierania plików\n" +"przechowujących wartość wyjścia konsoli." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Błąd podczas ustawiania Look & Feel." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Wystąpił błąd opisany poniżej, Arduino powinno jednak pracować poprawnie." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Błąd podczas ustawiania platformy" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"Wystąpił nieznany błąd podczas próby wgrania\n" +"kodu specyficznego dla platformy na Twoje urządzenie." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Zainstaluj JDK 1.5 lub nowsze." + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduino wymaga pełnego JDK (nie tylko JRE)\n" +"do działania. Zainstaluj JDK 1.5 lud nowsze.\n" +"Więcej informacji na ten temat znajdziesz w dokumentacji" + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Folder szkicownika nie istnieje." + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Folder szkicownika (Sketchbook) nie istnieje.\n" +"Arduino spróbuje utworzyć folder szkicownika\n" +"w domyślnej lokalizacji jeśli to konieczne.\n" +"Potem Arduino przestanie gadać o sobie\n" +"w trzeciej osobie." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Czas na przerwę" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Wykorzystałeś limit auto-nazw szkicy\n" +"na dzisiaj. Może pora na spacer?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Słońce!" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Naprawdę, czas na odrobinę świeżego powietrza." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Otwórz szkic Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Czy jesteś pewien, że chcesz wyjść?

Zamknięcie ostatniego szkicu spowoduje zamknięcie Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Przekazane" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Szkic nie istnieje" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Wybrany szkic nie istnieje.\n" +"Być może musisz zrestartować Arduino\n" +"aby odświeżyć listę szkiców." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Nazwa szkicu \"{0}\" nie może zostać użyta.\n" +"Nazwy szkiców mogą zawierać jedynie podstawowe litery i cyfry\n" +"(ASCII, bez spacji, nie mogą zaczynać się cyfrą).\n" +"Aby pozbyć się tej wiadomości, usuń szkic z\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "" + +#: Base.java:1202 +#, java-format +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 "" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ignoruj błędną nazwę szkicu" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problem z dostępem do folderu z danymi." + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Problem z dostępem do folderu danych Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Problem z ustawieniami" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino nie zostanie uruchomione bo nie może\n" +"stworzyć folderu do przechowywania ustawień." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Zapomniałeś o folderze szkicownika" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino nie zostanie uruchomione\n" +"ponieważ nie może utworzyć folderu do przechowania Twojego szkicu." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Wybierz (albo utwórz) folder szkiców..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problem z otworzeniem URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "Nie mogę otworzyć URL\n" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problem z otworzeniem folderu" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Nie mogę otworzyć folderu\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "środowisko" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Wiadomość" + +#: Base.java:1842 +msgid "Warning" +msgstr "Ostrzeżenie" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Could not remove old version of {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Nie można zamienić {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Nie można usunąć {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nowa zakładka" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Zmień nazwę" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Wcześniejsza zakładka" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Następna zakładka" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Weryfikuj" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Otwórz" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nowe okno edytora" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Otwórz w nowym oknie" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Brak dostępnego lounchera" + +#: 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 "" +"Brak określonej platformy, brak dostępnego launchera.\n" +"Aby umożliwić otwieranie URL oraz folderów, dodaj linię\n" +"\"launcher=/path/to/app\" do pliku preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Nie można odczytać ustawień kolorów szablonu.\n" +"Musisz przeinstalować Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Przeglądaj" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Kataloński" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Chiński uproszczony" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Duński" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Holenderski" + +#: Preferences.java:91 +msgid "English" +msgstr "Angielski" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Francuski" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipiński" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galijski" + +#: Preferences.java:96 +msgid "German" +msgstr "Niemiecki" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Włoski" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Litewski" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Perski" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Rumuński" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Hiszpański" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Nie można odczytać ustawień.\n" +"Musisz przeinstalować Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Nie można odczytać preferencji z" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Błąd odczytywania preferencji" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Błąd odczytywania pliku preferencji. Skasuj go (lub przenieś)\n" +"{0} i zrestartuj Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Lokalizacja szkicownika" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Ustal nową lokalizcję szkicownika" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (wymaga zrestartowania Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Wielkość czcionki edytora" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Pokaż pełen raport podczas: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "kompilacja" + +#: Preferences.java:375 +msgid "upload" +msgstr "załaduj" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Weryfikuj kod po załadowaniu" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Użyj zewnętrznego edytora" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Sprawdź aktualizacje podczas uruchamiania" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Aktualizuj rozszerzenie szkiców podczas zapisywania (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Automatycznie przypisz pliki .ino do Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Więcej preferencji może być edytowanych bezpośrednio w pliku" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(edytuj tylko kiedy Arduino jest uruchomione)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignorowanie błędnej wielkości czcionki {0}" diff --git a/app/src/processing/app/Resources_pl.properties b/app/src/processing/app/Resources_pl.properties new file mode 100644 index 000000000..084410b65 --- /dev/null +++ b/app/src/processing/app/Resources_pl.properties @@ -0,0 +1,1034 @@ +# Polish translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Maciej Wojnicki, Maciej W\u00f3jciga <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-01 10\:24-0400\nPO-Revision-Date\: 2012-04-01 10\:24-0400\nLast-Translator\: Maciej Wojnicki, Maciej W\u00f3jciga <>\nLanguage-Team\: Polish\nLanguage\: pl\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u017badne pliki nie zosta\u0142y dodane do szkicu. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Jeden plik zosta\u0142 dodany do szkicu + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} zosta\u0142o dodanych do szkicu + +#: Editor.java:484 +File=Plik + +#: Editor.java:486 EditorToolbar.java:41 +New=Nowy + +#: Editor.java:494 Base.java:903 +Open...=Otw\u00f3rz... + +#: Editor.java:503 +Sketchbook=Szkicownik + +#: Editor.java:509 +Examples=Przyk\u0142ady + +#: Editor.java:514 Editor.java:1977 +Close=Zamknij + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Zapisz + +#: Editor.java:530 +Save\ As...=Zapisz jako... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Za\u0142aduj + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Za\u0142aduj u\u017cywaj\u0105c programatora + +#: Editor.java:556 +Page\ Setup=Ustawienia strony + +#: Editor.java:564 +Print=Drukuj + +#: Editor.java:576 Preferences.java:279 +Preferences=Preferencje + +#: Editor.java:586 Base.java:782 +Quit=Wyj\u015bcie + +#: Editor.java:600 +Sketch=Szkic + +#: Editor.java:602 +Verify\ /\ Compile=Weryfikuj / Kompiluj + +#: Editor.java:629 +Import\ Library...=Importuj bibliotek\u0119... + +#: Editor.java:634 +Show\ Sketch\ Folder=Poka\u017c folder szkicu + +#: Editor.java:643 +Add\ File...=Dodaj plik... + +#: Editor.java:656 +Tools=Narz\u0119dzia + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitor portu szeregowego + +#: Editor.java:682 +Board=P\u0142ytka + +#: Editor.java:690 +Serial\ Port=Port szeregowy + +#: Editor.java:695 +Programmer=Programator + +#: Editor.java:699 +Burn\ Bootloader=Wypal Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu jest null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=nazwa jest null + +#: Editor.java:986 +error\ retrieving\ port\ list=problem z pozyskaniem listy port\u00f3w + +#: Editor.java:1002 +Help=Pomoc + +#: Editor.java:1041 +Getting\ Started=Jak zacz\u0105\u0107 + +#: Editor.java:1049 +Environment=\u015arodowiski + +#: Editor.java:1057 +Troubleshooting=Rozwi\u0105zywanie problem\u00f3w + +#: Editor.java:1065 +Reference=Dokumentacja + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Znajd\u017a w dokumentacji + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Cz\u0119sto zadawane pytania + +#: Editor.java:1091 +Visit\ Arduino.cc=Odwied\u017a Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=O Arduino + +#: Editor.java:1116 +Edit=Edycja + +#: Editor.java:1119 Editor.java:1341 +Undo=Cofnij + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Pon\u00f3w + +#: Editor.java:1135 Editor.java:2652 +Cut=Wytnij + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopiuj + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kopiuj dla Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kopiuj jako HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Wklej + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Zaznacz wszystko + +#: Editor.java:1194 Editor.java:2702 +!Comment/Uncomment= + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Zwi\u0119ksz wci\u0119cie + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Zmniejsz wci\u0119cie + +#: Editor.java:1220 +Find...=Znajd\u017a... + +#: Editor.java:1235 +Find\ Next=Znajd\u017a nast\u0119pne + +#: Editor.java:1245 +Find\ Previous=Znajd\u017a wcze\u015bniejsze + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Szukaj wed\u0142ug zaznaczenia + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Najpierw zaznacz s\u0142owo aby wyszuka\u0107 je w dokumentacji. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Nie ma dokumentacji dla "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Kompiluj\u0119 szkic... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Kompilowanie zako\u0144czone. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Zapisa\u0107 zmiany jako "{0}"? + +#: Editor.java:2006 +\ \ 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.= Czy chcesz zapisa\u0107 zmiany w tym szkicu
przed zamkni\u0119ciem?

Je\u015bli ich nie zapiszesz, zmiany b\u0119d\u0105 utracone. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Anuluj + +#: Editor.java:2017 +Don't\ Save=Nie zapisuj + +#: Editor.java:2089 +Bad\ file\ selected=Wybrano niepoprawny plik + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing mo\u017ce otwiera\u0107 tylko w\u0142asne szkice\ni inne pliki z rozszerzeniem .ino lub .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Plik "{0}" musi by\u0107 wewn\u0105trz\nfolderu szkicu o nazwie "{1}".\nUtw\u00f3rzy\u0107 folder, przenie\u015b\u0107 plik i kontynuowa\u0107? + +#: Editor.java:2109 +Moving=Przenosz\u0119 + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=B\u0142\u0105d + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Folder o nazwie "{0}" ju\u017c istnieje. Nie mog\u0119 otworzy\u0107 szkicu. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Nie mo\u017cna utworzy\u0107 folderu szkicu. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Nie mo\u017cna przenie\u015b\u0107 do odpowiedniej lokalizacji. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Nie mo\u017cna utworzy\u0107 szkicu. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Zapisuj\u0119... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Zapisano. + +#: Editor.java:2270 +Save\ Canceled.=Anulowano zapisywanie. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port szeregowy {0} nie zosta\u0142 znaleziony.\nPon\u00f3wi\u0107 \u0142adowanie danych przez inny port? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u0141aduj\u0119 dane na p\u0142ytk\u0119\u2026 + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u0141adowanie zako\u0144czone pomy\u015blnie. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u0141adowanie anulowane. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Zapisa\u0107 zmiany przed eksportowaniem? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksportowanie anulowane, zmiany musz\u0105 zosta\u0107 najpierw zapisane. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Wypalanie bootloadera na p\u0142ytce (mo\u017ce to potrwa\u0107 chwil\u0119)\u2026 + +#: Editor.java:2463 +Done\ burning\ bootloader.=Wypalanie bootloadera zako\u0144czone pomy\u015blnie. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Wyst\u0105pi\u0142 b\u0142\u0105d podczas wypalania bootloadera. + +#: Editor.java:2500 +Printing...=Drukuj\u0119... + +#: Editor.java:2517 +Done\ printing.=Drukowanie zako\u0144czone. + +#: Editor.java:2520 +Error\ while\ printing.=Wyst\u0105pi\u0142 b\u0142\u0105d podczas drukowania. + +#: Editor.java:2524 +Printing\ canceled.=Drukowanie anulowane. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=B\u0142ad w linii\: {0} + +#: Editor.java:2641 +Open\ URL=Otw\u00f3rz URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Nowa wersja Arduino jest ju\u017c dost\u0119pna,\nczy chcia\u0142by\u0107 odwiedzi\u0107 oficjaln\u0105 stron\u0119 Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +!Yes= + +#: UpdateCheck.java:108 Preferences.java:77 +!No= + +#: UpdateCheck.java:111 +Update=Aktualizacja + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Znajd\u017a + +#: FindReplace.java:81 +Replace\ with\:=Zamie\u0144 + +#: FindReplace.java:96 +Ignore\ Case=Ignoruj + +#: FindReplace.java:105 +!Wrap\ Around= + +#: FindReplace.java:120 FindReplace.java:131 +!Replace\ All= + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +!Replace= + +#: FindReplace.java:122 FindReplace.java:129 +!Replace\ &\ Find= + +#: FindReplace.java:123 FindReplace.java:128 +!Previous= + +#: FindReplace.java:124 FindReplace.java:127 +!Find= + +#: SerialMonitor.java:93 +!Send= + +#: SerialMonitor.java:110 +Autoscroll=Autoprzewijanie + +#: SerialMonitor.java:112 +!No\ line\ ending= + +#: SerialMonitor.java:112 +Newline=Nowa linia (NL) + +#: SerialMonitor.java:112 +Carriage\ return=Powr\u00f3t do pocz\u0105tku linii (CR) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Zar\u00f3wno NL jak i CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ bod\u00f3w + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port szeregowy ''{0}'' jest obecnie w uzyciu. Spr\u00f3buj zamkn\u0105\u0107 programy kt\u00f3re mog\u0105 go u\u017cywa\u0107. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=B\u0142\u0105d podczas otwierania portu szeregowego ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port szeregowy ''{0}'' nie zosta\u0142 znaleziony. Czy wybra\u0142e\u015b prawid\u0142owy z menu Narz\u0119dzia (Tools) > Port szeregowy (Serial Port) ? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Bufor bajtowy readBytesUntil() jest za ma\u0142y dla {0} bajt\u00f3w w\u0142\u0105cznie z char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=B\u0142\u0105d w Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Automatyczne formatowanie + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +!No\ changes\ necessary\ for\ Auto\ Format.= + +#: tools/AutoFormat.java:919 +!Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.= + +#: tools/AutoFormat.java:922 +!Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.= + +#: tools/AutoFormat.java:928 +!Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.= + +#: tools/AutoFormat.java:931 +!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Automatyczne formatowanie zako\u0144czone. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Napraw kodowanie i za\u0142aduj ponownie + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Odrzuci\u0107 wszystkie zmiany i prze\u0142adowa\u0107 szkic? + +#: 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=Wyst\u0105pi\u0142 b\u0142\u0105d podczas pr\u00f3by naprawienia kodowania pliku.\nNie pr\u00f3buj zapisa\u0107 tego szkicu poniewa\u017c mo\u017ce on nadpisa\u0107\npoprzedni\u0105 wersj\u0119. U\u017cyj Otw\u00f3rz aby ponownie otworzy\u0107 szkic i spr\u00f3buj jeszcze raz.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Archiwizuj szkic + +#: tools/Archiver.java:59 +yyMMdd=rrMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Nie mo\u017cna by\u0142o zarchiwizowa\u0107 szkicu + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Archiwizowanie szkicu zosta\u0142o anulowane poniewa\u017c\nszkic nie m\u00f3g\u0142 by\u0107 zapisany poprawnie. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Archiwizuj szkic jako\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Archiwizacja szkicu anulowana. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=B\u0142\u0105d podczas wgrywania kodu {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" zawiera nierozpoznawalne znaki. Je\u017celi kod by\u0142 stworzony przy pomocy starszej wersji Processing, wejd\u017a do menu Tools -> Fix Encoding & Reload w celu zaktualizowania szkicu do u\u017cywania kodowania UTF-8. Je\u015bli to nie zadzia\u0142a, usu\u0144 wszystkie b\u0142\u0119dne znaki w celu pozbycia si\u0119 tego ostrze\u017cenia. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Ten szkic jest oznaczony jako "Tylko do odczytu" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Niekt\u00f3re pliki s\u0105 oznaczone jako "Tylko do odczytu", wi\u0119c musisz\nzachowa\u0107 szkic w innej lokalizacji i spr\u00f3bowa\u0107 ponownie. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nazwa nowego pliku\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Szkic nie ma nazwy + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Czy chcia\u0142by\u015b zachowa\u0107 ten plik \nprzed zmian\u0105 jego nazwy? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Problem ze zmian\u0105 nazwy + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Nazwa nie mo\u017ce zaczyna\u0107 si\u0119 od kropki. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" nie jest prawid\u0142owym rozszerzeniem. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Plik g\u0142\u00f3wny nie mo\u017ce u\u017cywa\u0107 rozszerzenia.\n(By\u0107 mo\u017ce nadszed\u0142 czas aby\u015b zacz\u0105\u0142 u\u017cywa\u0107\n"prawdziwego" \u015brodowiska programistycznego?) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Nie + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Plik o nazwie "{0}" ju\u017c istnieje w "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nie mo\u017cesz u\u017cywa\u0107 pliku .cpp o tej samej nazwie co szkic. + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nie mo\u017cesz zmieni\u0107 nazwy szkicu na "{0}"\nponiewa\u017c szkic ju\u017c posiada plik .cpp o tej samej nazwie. + +#: Sketch.java:459 +Cannot\ Rename=Nie mo\u017cna zmieni\u0107 nazwy + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Szkic (lub folder) o nazwie "{0}" ju\u017c istnieje. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Nie mo\u017cna zmieni\u0107 nazwy szkicu. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Nie mo\u017cna zmieni\u0107 nazwy "{0}" na "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Nie mo\u017cna zmieni\u0107 nazwy szkicu. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Nie mo\u017cna zmieni\u0107 nazwy szkicu. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=funkcja createNewFile() zwr\u00f3ci\u0142a false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Czy jeste\u015b pewny \u017ce chcesz usun\u0105\u0107 ten szkic? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Czy jeste\u015b pewny \u017ce chcesz usun\u0105\u0107 "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Usu\u0144 + +#: Sketch.java:620 +Couldn't\ do\ it=Nie mo\u017cna by\u0142o tego zrobi\u0107 + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Nie mo\u017cna usun\u0105\u0107 "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. nie mo\u017cna znale\u017a\u0107 kodu + +#: Sketch.java:724 +Sketch\ is\ read-only=Ten szkic jest oznaczony jako "Tylko do odczytu" + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Niekt\u00f3re pliki s\u0105 oznaczone jako "Tylko do odczytu", wi\u0119c musisz\nzachowa\u0107 szkic w innej lokalizacji. + +#: Sketch.java:743 +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?=W Arduino 1.0 zmieni\u0142o si\u0119 domy\u015blne rozszerzenie pliku\nz .pde na .ino. Nowe szkice (w\u0142\u0105cznie z tymi stworzonymi\nprzez "Zapisz jako" b\u0119d\u0105 u\u017cywa\u0107 nowego rozszerzenia.\nRozszerzenia istniej\u0105cych szkic\u00f3w b\u0119d\u0105 zmieniane podczas zapisywania,\njednak mo\u017cesz wy\u0142\u0105czy\u0107 t\u0105 opcj\u0119 w ustawieniach.\n\nZapisa\u0107 szkic i zmieni\u0107 jego rozszerzenie? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Zapisz folder szkicu jako... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nie mo\u017cesz zapisa\u0107 szkicu jako "{0}"\nponiewa\u017c szkic ju\u017c posiada plik .cpp o tej samej nazwie. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=To troch\u0119 nielogiczne + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nie mo\u017cesz zapisa\u0107 szkicu w folderze znajduj\u0105cym si\u0119\nw swoim \u015brodku. To by trwa\u0142o w niesko\u0144czono\u015b\u0107. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Wybierz obraz lub plik z innymi danymi do wklejenia do Twojego szkicu + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Zamieni\u0107 istniej\u0105c\u0105 ju\u017c wersj\u0119 {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=B\u0142\u0105d podczas dodawania pliku + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Nie mo\u017cna by\u0142o usun\u0105\u0107 istniej\u0105cego pliku ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Nie przechytrzysz mnie. + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ten plik ju\u017c zosta\u0142 skopiowany do miejsca\nz kt\u00f3rego chcesz go doda\u0107.\nNie zrobi\u0119 tego. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Nie mo\u017cna doda\u0107 ''{0}'' do szkicu. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Folder projektu nie zosta\u0142 odnaleziony lub nie m\u00f3g\u0142 zosta\u0107 zapisany + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Nie mo\u017cna by\u0142o znale\u017a\u0107 klasy g\u0142\u00f3wnej + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Nierozpoznany rodzaj wyj\u0105tku\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Wyst\u0105pi\u0142 problem podczas przenoszenia {0} do folderu projektu + +#: Sketch.java:1661 +Uploading...=\u0141adowanie... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Wielko\u015b\u0107 binarna szkicu\: {0} bajt\u00f3w (maksymalnie\: {1} bajt\u00f3w) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Nie mo\u017cna okre\u015bli\u0107 wielko\u015bci pliku\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Szkic jest za du\u017cy; zobacz porady na http\://www.arduino.cc/en/Guide/Troubleshooting\#size w celu zmniejszenia go. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Brakuje */ na ko\u0144cu /* komentarza */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Szkic znikn\u0105\u0142 + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Folder szkicu znikn\u0105\u0142.\nPonowi\u0119 prob\u0119 aby zapisa\u0107 szkic w tym samym miejscu,\njednak wszystkie dane opr\u00f3cz kodu zostan\u0105 utracone. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Nie mo\u017cna by\u0142o ponownie zapisa\u0107 szkicu + +#: Sketch.java:1811 +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.=Nie mo\u017cna by\u0142o prawid\u0142owo ponownie zapisa\u0107 pliku. Mo\u017ce to by\u0107 pocz\u0105tek k\u0142opot\u00f3w,\ndlatego najlepiej skopiuj kod i przeklej go do innego edytora tekstu. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Nazwa pliku musia\u0142a by\u0107 zmieniona. Nazwy szkic\u00f3w mog\u0105 zawiera\u0107 jedynie\nznaki ASCII oraz liczby (ale nie mog\u0105 zaczyna\u0107 si\u0119 od liczby).\nPowinny r\u00f3wnie\u017c zawiera\u0107 mniej ni\u017c 64 znaki. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=B\u0142\u0105d kompilatora, prze\u015blij ten kod do {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=port szeregowy {0} nie istnieje lub twoja p\u0142ytka nie jest pod\u0142\u0105czona + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Urz\u0105dzenie nie odpowiada, sprawd\u017a czy wybrano odpowiedni port szeregowy lub zresetuj p\u0142ytk\u0119 przed eksportowaniem szkicu + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem z przesy\u0142aniem danych na p\u0142ytk\u0119. Sprawd\u017a http\://www.arduino.cc/en/Guide/Troubleshooting\#upload aby otrzyma\u0107 wi\u0119cej informacji. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Wykryto inny mikrokontroler. Czy wybra\u0142e\u015b odpowiedni model p\u0142ytki z menu Narz\u0119dzia (Tools) > Model p\u0142ytki (Board)? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nie wybrano modelu p\u0142ytki; prosz\u0119 wybierz model z menu Narz\u0119dzia (Tools) > Model p\u0142ytki(Board). + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} zwr\u00f3ci\u0142 {1} + +#: debug/Compiler.java:426 +Error\ compiling.=B\u0142\u0105d kompilacji + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Zaimportuj bibliotek\u0119 SPI z Szkic (Sketch) > Importuj bibliotek\u0119 (Import Library). + +#: debug/Compiler.java:466 +\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=Od wersji Arduino 0019, biblioteka Ethernet zale\u017cy od biblioteki SPI.\nWygl\u0105da na to \u017ce u\u017cywasz innej bilioteki r\u00f3wnie\u017c zale\u017cnej od biblioteki SPI.\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=S\u0142owo 'BYTE' nie jest ju\u017c wspierane. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=Od wersji Arduino 1.0, s\u0142owo 'BYTE' nie jest wspierane.\nU\u017cyj prosz\u0119 funkcji Serial.write()\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klasa Server zmieni\u0142a nazw\u0119 na EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nOd wersji Arduino 1.0, klasa Server z biblioteki Ethernet zmieni\u0142a nazw\u0119 na EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Klasa Client zmieni\u0142a nazw\u0119 na EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nOd wersji Arduino 1.0, klasa Client z biblioteki Ethernet zmieni\u0142a nazw\u0119 na EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klasa Udp zmieni\u0142a nazw\u0119 na EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=Od wersji Arduino 1.0, klasa Udp z biblioteki Ethernet zmieni\u0142a nazw\u0119 na EthernetClient.\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Funkcja Wire.send() zmieni\u0142a nazw\u0119 na Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nOd wersji Arduino 1.0, funkcja Wire.send() zmieni\u0142a nazw\u0119 Wire.write() aby zachowa\u0107 sp\u00f3jno\u015b\u0107 nazewnictwa z innymi bibliotekami.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Funkcja Wire.receive() zmieni\u0142a nazw\u0119 na Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nOd wersji 1.0, funkcja Wire.receive() zmieni\u0142a nazw\u0119 na Wire.read() zachowa\u0107 sp\u00f3jno\u015b\u0107 nazewnictwa z innymi bibliotekami.\n\n + +#: EditorConsole.java:152 +Console\ Error=B\u0142\u0105d konsoli + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Wyst\u0105pi\u0142 b\u0142\u0105d podczas otwierania plik\u00f3w\nprzechowuj\u0105cych warto\u015b\u0107 wyj\u015bcia konsoli. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=B\u0142\u0105d podczas ustawiania Look & Feel. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Wyst\u0105pi\u0142 b\u0142\u0105d opisany poni\u017cej, Arduino powinno jednak pracowa\u0107 poprawnie. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=B\u0142\u0105d podczas ustawiania platformy + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Wyst\u0105pi\u0142 nieznany b\u0142\u0105d podczas pr\u00f3by wgrania\nkodu specyficznego dla platformy na Twoje urz\u0105dzenie. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Zainstaluj JDK 1.5 lub nowsze. + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino wymaga pe\u0142nego JDK (nie tylko JRE)\ndo dzia\u0142ania. Zainstaluj JDK 1.5 lud nowsze.\nWi\u0119cej informacji na ten temat znajdziesz w dokumentacji + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Folder szkicownika nie istnieje. + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Folder szkicownika (Sketchbook) nie istnieje.\nArduino spr\u00f3buje utworzy\u0107 folder szkicownika\nw domy\u015blnej lokalizacji je\u015bli to konieczne.\nPotem Arduino przestanie gada\u0107 o sobie\nw trzeciej osobie. + +#: Base.java:532 +Time\ for\ a\ Break=Czas na przerw\u0119 + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Wykorzysta\u0142e\u015b limit auto-nazw szkicy\nna dzisiaj. Mo\u017ce pora na spacer? + +#: Base.java:537 +Sunshine=S\u0142o\u0144ce\! + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Naprawd\u0119, czas na odrobin\u0119 \u015bwie\u017cego powietrza. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Otw\u00f3rz szkic Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Czy jeste\u015b pewien, \u017ce chcesz wyj\u015b\u0107?

Zamkni\u0119cie ostatniego szkicu spowoduje zamkni\u0119cie Arduino. + +#: Base.java:970 +Contributed=Przekazane + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Szkic nie istnieje + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Wybrany szkic nie istnieje.\nBy\u0107 mo\u017ce musisz zrestartowa\u0107 Arduino\naby od\u015bwie\u017cy\u0107\u00a0list\u0119 szkic\u00f3w. + +#: Base.java:1125 +#, 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}=Nazwa szkicu "{0}" nie mo\u017ce zosta\u0107 u\u017cyta.\nNazwy szkic\u00f3w mog\u0105 zawiera\u0107 jedynie podstawowe litery i cyfry\n(ASCII, bez spacji, nie mog\u0105 zaczyna\u0107 si\u0119 cyfr\u0105).\nAby pozby\u0107 si\u0119 tej wiadomo\u015bci, usu\u0144 szkic z\n{1} + +#: Base.java:1132 +!Ignoring\ sketch\ with\ bad\ name= + +#: Base.java:1202 +#, 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)= + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ignoruj b\u0142\u0119dn\u0105 nazw\u0119 szkicu + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problem z dost\u0119pem do folderu z danymi. + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Problem z dost\u0119pem do folderu danych Arduino. + +#: Base.java:1440 +Settings\ issues=Problem z ustawieniami + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nie zostanie uruchomione bo nie mo\u017ce\nstworzy\u0107 folderu do przechowywania ustawie\u0144. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Zapomnia\u0142e\u015b o folderze szkicownika + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nie zostanie uruchomione\nponiewa\u017c nie mo\u017ce utworzy\u0107\u00a0folderu do przechowania Twojego szkicu. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Wybierz (albo utw\u00f3rz) folder szkic\u00f3w... + +#: Base.java:1647 +Problem\ Opening\ URL=Problem z otworzeniem URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Nie mog\u0119 otworzy\u0107 URL\n + +#: Base.java:1671 +Problem\ Opening\ Folder=Problem z otworzeniem folderu + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Nie mog\u0119 otworzy\u0107\u00a0folderu\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u015brodowisko + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Wiadomo\u015b\u0107 + +#: Base.java:1842 +Warning=Ostrze\u017cenie + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Could not remove old version of {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Nie mo\u017cna zamieni\u0107 {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Nie mo\u017cna usun\u0105\u0107 {0} + +#: EditorHeader.java:292 +New\ Tab=Nowa zak\u0142adka + +#: EditorHeader.java:300 +Rename=Zmie\u0144 nazw\u0119 + +#: EditorHeader.java:326 +Previous\ Tab=Wcze\u015bniejsza zak\u0142adka + +#: EditorHeader.java:340 +Next\ Tab=Nast\u0119pna zak\u0142adka + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Weryfikuj + +#: EditorToolbar.java:41 +Open=Otw\u00f3rz + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nowe okno edytora + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Otw\u00f3rz w nowym oknie + +#: Platform.java:167 +No\ launcher\ available=Brak dost\u0119pnego lounchera + +#: 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=Brak okre\u015blonej platformy, brak dost\u0119pnego launchera.\nAby umo\u017cliwi\u0107 otwieranie URL oraz folder\u00f3w, dodaj lini\u0119\n"launcher\=/path/to/app" do pliku preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nie mo\u017cna odczyta\u0107 ustawie\u0144 kolor\u00f3w szablonu.\nMusisz przeinstalowa\u0107 Processing. + +#: Preferences.java:80 +Browse=Przegl\u0105daj + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Katalo\u0144ski + +#: Preferences.java:87 +Chinese\ Simplified=Chi\u0144ski uproszczony + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Du\u0144ski + +#: Preferences.java:90 +Dutch=Holenderski + +#: Preferences.java:91 +English=Angielski + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Francuski + +#: Preferences.java:94 +Filipino=Filipi\u0144ski + +#: Preferences.java:95 +Galician=Galijski + +#: Preferences.java:96 +German=Niemiecki + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=W\u0142oski + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Litewski + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Perski + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Rumu\u0144ski + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Hiszpa\u0144ski + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nie mo\u017cna odczyta\u0107 ustawie\u0144.\nMusisz przeinstalowa\u0107 Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Nie mo\u017cna odczyta\u0107 preferencji z + +#: Preferences.java:261 +Error\ reading\ preferences=B\u0142\u0105d odczytywania preferencji + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=B\u0142\u0105d odczytywania pliku preferencji. Skasuj go (lub przenie\u015b)\n{0} i zrestartuj Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Lokalizacja szkicownika + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Ustal now\u0105 lokalizcj\u0119 szkicownika + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (wymaga zrestartowania Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Wielko\u015b\u0107 czcionki edytora + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Poka\u017c pe\u0142en raport podczas\: + +#: Preferences.java:373 +compilation\ =kompilacja + +#: Preferences.java:375 +upload=za\u0142aduj + +#: Preferences.java:384 +Verify\ code\ after\ upload=Weryfikuj kod po za\u0142adowaniu + +#: Preferences.java:393 +Use\ external\ editor=U\u017cyj zewn\u0119trznego edytora + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Sprawd\u017a aktualizacje podczas uruchamiania + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Aktualizuj rozszerzenie szkic\u00f3w podczas zapisywania (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Automatycznie przypisz pliki .ino do Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Wi\u0119cej preferencji mo\u017ce by\u0107 edytowanych bezpo\u015brednio w pliku + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(edytuj tylko kiedy Arduino jest uruchomione) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignorowanie b\u0142\u0119dnej wielko\u015bci czcionki {0} diff --git a/app/src/processing/app/Resources_pt_br.po b/app/src/processing/app/Resources_pt_br.po new file mode 100644 index 000000000..d9f055f17 --- /dev/null +++ b/app/src/processing/app/Resources_pt_br.po @@ -0,0 +1,1524 @@ +# Portuguese (Brazil) translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# +# André Aureliano, 2012. +# Hugo Lavalle , 2012. +# Armando Neto , 2012. +# Radamés Ajna , 2012. + +msgid "" +msgstr "" +"Project-Id-Version: PT-BR Arduino IDE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-04-04 15:30+0000\n" +"Last-Translator: Radamés Ajna \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.net/projects/p/pt-br_arduino_IDE_Translations/language/pt_BR/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Nenhum arquivo adicionado ao sketch." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Um arquivo adicionado ao sketch." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} arquivos adicionados a este sketch." + +#: Editor.java:484 +msgid "File" +msgstr "Arquivo" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Novo" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Abrir..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Sketchbook" + +#: Editor.java:509 +msgid "Examples" +msgstr "Exemplos" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Fechar" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Salvar" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Salvar Como..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Carregar" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Carregar Utilizando um Gravador" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Configuração de página" + +#: Editor.java:564 +msgid "Print" +msgstr "Imprimir" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferências" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Sair" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verificar / Compilar " + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importar Biblioteca..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Exibir Pasta dos Sketchs " + +#: Editor.java:643 +msgid "Add File..." +msgstr "Adicionar Arquivo..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Ferramentas" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitor Serial" + +#: Editor.java:682 +msgid "Board" +msgstr "Placa" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Porta Serial" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Gravador" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Gravar Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu esta vazio" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "o nome esta vazio" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "erro ao carregar lista de portas" + +#: Editor.java:1002 +msgid "Help" +msgstr "Ajuda" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Primeiros passos" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Ambiente" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Solução de problemas" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referência" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Procurar na Referência" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Perguntas Frequentes " + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Visite Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Sobre o Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Editar" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Desfazer" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Refazer" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Copiar" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Copiar" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copiar para o Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Copiar como HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Colar" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Selecionar Tudo" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Comentar/Descomentar" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Aumentar Recuo" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Diminuir Recuo" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Buscar..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Buscar Próximo" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Buscar Anterior" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Use Seleção Para Procurar" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Primeiro selecione uma palavra para ser localizada na referência." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Nenhuma referência disponível para \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Compilando o sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compilação terminada." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Salvar alterações para \"{0}\"?" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " \nVocê gostaria de salvar as alterações deste sketch
antes de fechar?

Se você não salvar, suas alterações serão perdidas." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Cancelar" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Não salvar" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Arquivo errado selecionado" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "O Processing pode abrir apenas os seus próprios sketches\ne outros arquivos terninados com .ino ou .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "O arquivo \"{0}\" precisa estar dentro\nda pasta sketch \"{1}\".\nCriar esta pasta, mover o arquivo, e continuar?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Movendo" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Erro" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "O nome para a pasta \"{0}\" já existe. Não foi possível abrir o sketch. " + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Não foi possível criar a pasta do cketch." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Não foi possível copiar para o local correto." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Não foi possível criar o sketch." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Salvando..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Salvar concluído." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Cancelado " + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "Porta Serial {0} não encontrada.\nTentar a transferência com outra porta serial?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Transferindo para placa I/O." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Transferência concluída." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Transferência cancelada." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Salvar alterações antes de exportar?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exportação cancelada, primeiro salve as alterações." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Gravando bootloader para placa I/O (isso pode demorar alguns minutos)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Gravação do bootloader finalizada." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Erro ao gravar bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Imprimindo..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Impressão finalizada." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Erro ao imprimir." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Impressão cancelada." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Erro na linha: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Abrir URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "Uma nova versão de Arduino está disponível,\nvocê gostaria de visitar a página de download?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Sim" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Não" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Atualizar" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Buscar:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Substituir por:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignorar Maiúscula/Minúscula" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Pesquisa Circular" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Substituir Tudo" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Substituir" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Substituir e Buscar" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Anterior" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Buscar" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Enviar" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Rolagem automática" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Sem fim de linha." + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Nova Linha" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Carriage return" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Ambos NL & CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " transmissão" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "A Porta Serial \"{0}\" já esta em uso. Tente fechar quaisquer programas que podem estar utilizando-a. " + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Erro ao abrir porta serial \"{0}\"" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "A porta Serial \"{0}\" não foi encontrada. Você selecionou a porta correta em Ferramentas > Menu Portas Seriais?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "o buffer readBytesUntil() é muito pequeno para até {0} bytes, incluindo char {1} " + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Erro dentro da Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Auto Formatação" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Sem alterações necessárias para a Auto Formatação." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Auto Formatação Cancelada: Excesso de parênteses à direita." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Auto Formatação Cancelada: Excesso de parênteses à esquerda." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Auto Formatação Cancelada: Excesso de colchetes à direita." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Auto Formatação Cancelada: Excesso de colchetes à esquerda." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Auto Formatação terminada." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Corrigir Codificação & Recarregar" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Descartar todas as alterações e reabrir o sketch?" + +#: 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 "Ocorreu um erro ao tentar corrigir a codificação do arquivo\nNão tente salvar esse sketch pois você pode sobrescrever a\nversão antiga. Utilize Abrir para reabrir o sketch e tentar novamente.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arquivar o Sketch" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "ddMMyy" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Não foi possível arquivar o sketch." + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "Arquivamento do sketch foi cancelado pois\no sketch não pode ser salvo corretamente." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arquivar sketch como:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Arquivamento do sketch cancelado." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Erro ao tentar carregar código {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "\"{0}\" contém caracteres desconhecidos. Caso este código tenha sido criado com uma versão antiga do Processing, você deve ir em Ferramentas -> Corrir Codificação & Recarregar para atualizar o sketch e usar UTF-8 como codificação. Caso contrário, você precisa apagar os caracteres errados para se livrar desta mensagem." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Sketch somente-leitura." + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "Alguns Arquivos estão marcados como \"somente-leitura\", portanto\nvocê precisará voltar a salvar o sketch em outro local,\ne tentar novamente." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nome para o novo arquivo:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Sketch sem título" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "O que acha de salvar o sketch primeiramente\nantes de tentar renomeá-lo?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Error ao renomear" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "O nome não pode começar com um ponto." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" não é uma extensão valida." + +#: Sketch.java:378 +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 "O arquivo principal não pode usar uma extensão.\n(Este pode ser o momento para você mudar\npara um ambiente \"real\" de programação)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Não" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Um arquivo chamado \"{0}\" já existe em \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Você não pode ter um .cpp com o mesmo nome do seu sketch." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "Você não pode renomear o sketch para \"{0}\"\npois o sketch já tem um arquivo .cpp com este nome." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Não é possível Renomear" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Desculpe, o sketch (ou a pasta) chamada \"{0}\" já existe." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Não é possível renomear o sketch. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Não é possível renomear \"{0}\" para \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Não é possível renomear o sketch. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Não é possível renomear o sketch. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() retornou falso" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Você tem certeza que quer deletar este sketch?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Você tem certeza que quer deletar \"{0}\" ?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Deletar" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Não foi possível fazer isso." + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Não foi possível apagar \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: erro interno.. não foi possível encontrar o código" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Sketch está marcado somente para leitura" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "Alguns arquivos estão marcados como \"somente leitura\", então você\nprecisará salvar novamente este sketch em outro lugar." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "No Arduino 1.0, a extensão padrão de arquivo foi modificada\nde .pde para .ino. Novos sketches (inclusive aqueles criados\natravés de \"Salvar como\") irão utilizar a nova extensão. A extensão\nde sketches existentes será atualizada ao salvar, mas você pode\ndesabilitar isso no menu de Preferências." + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Salvar pasta do sketch como..." + +#: Sketch.java:865 +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}\"\npois o sketch já tem um arquivo .cpp com este nome." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Agora você pegou pesado" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "Você não pode salvar o sketch dentro da própria pasta.\nIsto entrará num loop infinito." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Selecione a imagem ou outro arquivo de dados para copiar\npara seu sketch." + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Substituir a versão existente do {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Erro ao adicionar arquivo" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Não é possível deletar o arquivo \"{0}\" existente." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Você não pode me enganar." + +#: Sketch.java:1079 +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 "Este arquivo já foi copiado para o local\nonde você está tentando adicioná-lo.\nNada a fazer." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Não foi possível adicionar \"{0}\" ao sketch " + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "A Pasta para compilação desapareceu ou não pode ser escrita" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Não foi possível encontrar a classe principal" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Tipo de exceção não tratada: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problema ao mover {0} para a pasta de compilação " + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Carregando..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Tamanho do arquivo binário sketch: {0} (de no máximo {1} bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Não foi possível determinar o tamanho do programa: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "Sketch é muito grande; veja http://www.arduino.cc/en/Guide/Troubleshooting#size para dicas em como reduzi-lo." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Faltando o */ no final do /* comentário */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "O Sketch Desapareceu" + +#: Sketch.java:1797 +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 "A pasta do sketch desapareceu.\nUma nova tentativa de salvar na mesma pasta será executada, \nnada no seu código será perdido." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Não foi possível salvar novamente o sketch" + +#: Sketch.java:1811 +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ão foi possível voltar a salvar corretamente o sketch. Você deve estar em apuros agora,\ne deve copiar e colar seu código em outro editor de texto." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "O nome do sketch teve que ser modificado. Os nomes para Sketch só podem\nconter caracteres ASCII e números (não podem começar com um número).\nEles devem ter no máximo 64 caracteres de comprimento." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Erro do compilador, por favor envie este código para {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "a porta serial {0} não existe ou a placa não esta conectada" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "O dispositivo não esta respondendo, verifique se a porta serial correta foi selecionada ou RESET a placa antes de exportar" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "Problema ao carregar para a placa. Veja http://www.arduino.cc/en/Guide/Troubleshooting#upload para sugestões." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "Microcontrolador errado encontrado. Você selecionou a placa correta em Ferramentas > Menu de Placas?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Nenhuma placa selecionada, por favor escolha a placa em Ferramentas > Menu Placas." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} retornou {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Erro ao compilar." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Por favor importe a biblioteca SPI em Sketch > Importar Biblioteca." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "\nA partir do Arduino 0019, a biblioteca Ethernet depende da biblioteca SPI.\nVocê parece estar utilizando ela ou outra biblioteca que depende da biblioteca SPI.\n\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "A palavra-chave 'BYTE' não é mais suportada." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "\nA partir do Arduino 1.0, a palavra-chave 'BYTE' não é mais suportada.\nPor favor utiliza Serial.write() no lugar.\n\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "A classe Server foi renomeada para EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "\nA partir do Arduino 1.0, a classe Server na biblioteca Ethernet foi renomeada para EthernetServer.\n\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "A classe Client foi renomeada para EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "\nA partir do Arduino 1.0, a classe Client na biblioteca Ethernet foi renomeada para EthernetClient.\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "A clase Udp foi renomeada para EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "\nA partir do Arduino 1.0, a classe Udp na biblioteca Ethernet foi renomeada para EthernetClient.\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() foi renomeado para Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "\nA partir do Arduino 1.0, a função Wire.send() foi renomeada para \nWire.write() para manter a consistência com outras bibliotecas.\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() foi renomeado para Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "\nA partir do Arduino 1.0, a função Wire.receive() foi renomeada para Wire.read() a fim de manter a consistência com outras bibliotecas. \n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Erro do Console" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "Ocorreu um problema ao tentar abrir os\narquivos utilizados para armazenar a saída do console." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Erro não fatal enquanto configurava Aparência." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Existe uma mensagem de erro, no entanto o Arduino deve funcionar corretamente." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problema ao configurar a Plataforma" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Ocorreu um erro desconhecido ao carregar\ncódigo específico da plataforma para o seu computador." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Por favor instale a JDK 1.5 ou posterior" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "Arduino requer a JDK completa (não apenas a JRE)\npara rodar. Por favor instale a JDK 1.5 ou posterior.\nMais informações podem ser encontradas na referência." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "A Pasta do Sketchbook desapareceu" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "A pasta sketchbook não existe mais.\nArduino irá trocar para o local padrão,\ne irá criar uma nova pasta sketchbook se\nnecessário. O Arduino então irá parar de falar sobre\nele mesmo em terceira pessoa." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Hora de uma pausa" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "Você chegou ao limite de auto nomeação de novas sketches\npara o dia. Que tal em vez disso sair para uma caminha?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Luz do sol" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Sério, hora de você tomar um ar puro." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Abrir um sketch Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr " Você tem certeza que deseja sair?

Ao fechar o último sketch aberto o Arduino se encerrará." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribuíram" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "O Sketch não existe" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "O sketch selecionado não existe mais.\nPode ser que você tenha que reiniciar o Arduino\npara atualizar o menu sketchbook." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "O sketch \"{0}\" não pode ser utilizado.\nNomes de sketch devem conter somente caracteres simples e números\n(ASCII, sem espaços e não deve iniciar com um número).\nPara eliminar esta mensagem, remova o sketch de\n{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Ignorando sketch com nome inválido." + +#: Base.java:1202 +#, java-format +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 "A biblioteca \"{0}\" não pode ser utilizada.\nNomes para biblioteca devem conter somente elementos básicos\ne números. (somente ASCII e sem espaços, e não pode começar com um número)." + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Ingnorando nome inválido de biblioteca" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problema ao obter pasta de dados" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Erro ao obter pasta de dados do Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Configurações" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "Arduino não pode executar porque não foi possível\ncriar uma pasta para armazenar suas configurações." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Você esqueceu seu sketchbook" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "Não é possível executar o Arduino pois\na pasta do skecthbook não pôde ser criado." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Selecione (ou crie uma nova) pasta para seus sketches..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problema ao abrir URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "Não foi possível abrir a URL\n{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problema ao abrir Pasta" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "Não foi possível abrir pasta\n{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guia_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guia_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "ambiente" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Mensagem" + +#: Base.java:1842 +msgid "Warning" +msgstr "Alerta" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Não foi possível remover a versão antiga {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Não foi possível substituir {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Não foi possível deletar {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nova Aba" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Renomear" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Aba Anterior" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Próxima Aba" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verificar" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Abrir" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nova Janela de Edição" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Abrir em outra Janela" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Nenhum lançador disponível." + +#: 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 "Plataforma não específicada, nenhuma lançador disponível.\nPara habilitar Abrir URLs ou pastas, adicione a\nlinha \"launcher=/path/to/app\" em preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "As configurações de cor do tema não podem ser lidas.\nVocê precisa reinstalar o Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Navegar" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Catalão" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Chinês Simplificado " + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Dinamarquês" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Holandês" + +#: Preferences.java:91 +msgid "English" +msgstr "Inglês" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Francês" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipino" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galego" + +#: Preferences.java:96 +msgid "German" +msgstr "Alemão" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Grego" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Húngaro" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italiano" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Japonês" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Letão" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persa" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Romeno" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Espanhol" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "Não foi possível ler as configurações padrão.\nSerá necessário instalar Arduino novamente." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Não foi possível ler preferências de {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Erro lendo preferências" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "Erro ao ler arquivo de preferências. Por favor delete (ou mova)\n{0} e reinicie o Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Localização do Sketchbook:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Selecione uma nova localização para o sketchbook." + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (requer reiniciar o Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Editar tamanho da fonte: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Exibir modo verboso durante: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilação " + +#: Preferences.java:375 +msgid "upload" +msgstr "carregar" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Verifique o cógido depois de carregar" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Usar editor externo" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Checar novas atualizações ao iniciar" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Atualizar arquivos sketch para nova extensão ao salvar (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Associar automaticamente arquivos .ino com o Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Mais preferências podem ser editadas diretamente no arquivo" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(editar somente quando o Arduino não estiver em funcionamento)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignorando tamanho {0} inválido para a fonte" diff --git a/app/src/processing/app/Resources_pt_br.properties b/app/src/processing/app/Resources_pt_br.properties new file mode 100644 index 000000000..3e6a3f9de --- /dev/null +++ b/app/src/processing/app/Resources_pt_br.properties @@ -0,0 +1,1039 @@ +# Portuguese (Brazil) translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# +# Translators: +# +# Andr\u00e9 Aureliano, 2012. +# Hugo Lavalle , 2012. +# Armando Neto , 2012. +# Radam\u00e9s Ajna , 2012. +!=Project-Id-Version\: PT-BR Arduino IDE\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-04-04 15\:30+0000\nLast-Translator\: Radam\u00e9s Ajna \nLanguage-Team\: Portuguese (Brazil) (http\://www.transifex.net/projects/p/pt-br_arduino_IDE_Translations/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 + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Nenhum arquivo adicionado ao sketch. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Um arquivo adicionado ao sketch. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} arquivos adicionados a este sketch. + +#: Editor.java:484 +File=Arquivo + +#: Editor.java:486 EditorToolbar.java:41 +New=Novo + +#: Editor.java:494 Base.java:903 +Open...=Abrir... + +#: Editor.java:503 +Sketchbook=Sketchbook + +#: Editor.java:509 +Examples=Exemplos + +#: Editor.java:514 Editor.java:1977 +Close=Fechar + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Salvar + +#: Editor.java:530 +Save\ As...=Salvar Como... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Carregar + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Carregar Utilizando um Gravador + +#: Editor.java:556 +Page\ Setup=Configura\u00e7\u00e3o de p\u00e1gina + +#: Editor.java:564 +Print=Imprimir + +#: Editor.java:576 Preferences.java:279 +Preferences=Prefer\u00eancias + +#: Editor.java:586 Base.java:782 +Quit=Sair + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=Verificar / Compilar + +#: Editor.java:629 +Import\ Library...=Importar Biblioteca... + +#: Editor.java:634 +Show\ Sketch\ Folder=Exibir Pasta dos Sketchs + +#: Editor.java:643 +Add\ File...=Adicionar Arquivo... + +#: Editor.java:656 +Tools=Ferramentas + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitor Serial + +#: Editor.java:682 +Board=Placa + +#: Editor.java:690 +Serial\ Port=Porta Serial + +#: Editor.java:695 +Programmer=Gravador + +#: Editor.java:699 +Burn\ Bootloader=Gravar Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu esta vazio + +#: Editor.java:927 Editor.java:934 +name\ is\ null=o nome esta vazio + +#: Editor.java:986 +error\ retrieving\ port\ list=erro ao carregar lista de portas + +#: Editor.java:1002 +Help=Ajuda + +#: Editor.java:1041 +Getting\ Started=Primeiros passos + +#: Editor.java:1049 +Environment=Ambiente + +#: Editor.java:1057 +Troubleshooting=Solu\u00e7\u00e3o de problemas + +#: Editor.java:1065 +Reference=Refer\u00eancia + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Procurar na Refer\u00eancia + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Perguntas Frequentes + +#: Editor.java:1091 +Visit\ Arduino.cc=Visite Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Sobre o Arduino + +#: Editor.java:1116 +Edit=Editar + +#: Editor.java:1119 Editor.java:1341 +Undo=Desfazer + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Refazer + +#: Editor.java:1135 Editor.java:2652 +Cut=Copiar + +#: Editor.java:1143 Editor.java:2660 +Copy=Copiar + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copiar para o Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Copiar como HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Colar + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Selecionar Tudo + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Comentar/Descomentar + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Aumentar Recuo + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Diminuir Recuo + +#: Editor.java:1220 +Find...=Buscar... + +#: Editor.java:1235 +Find\ Next=Buscar Pr\u00f3ximo + +#: Editor.java:1245 +Find\ Previous=Buscar Anterior + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Use Sele\u00e7\u00e3o Para Procurar + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Primeiro selecione uma palavra para ser localizada na refer\u00eancia. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Nenhuma refer\u00eancia dispon\u00edvel para "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Compilando o sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compila\u00e7\u00e3o terminada. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Salvar altera\u00e7\u00f5es para "{0}"? + +#: Editor.java:2006 +\ \ 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.= \nVoc\u00ea gostaria de salvar as altera\u00e7\u00f5es deste sketch
antes de fechar?

Se voc\u00ea n\u00e3o salvar, suas altera\u00e7\u00f5es ser\u00e3o perdidas. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Cancelar + +#: Editor.java:2017 +Don't\ Save=N\u00e3o salvar + +#: Editor.java:2089 +Bad\ file\ selected=Arquivo errado selecionado + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=O Processing pode abrir apenas os seus pr\u00f3prios sketches\ne outros arquivos terninados com .ino ou .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O arquivo "{0}" precisa estar dentro\nda pasta sketch "{1}".\nCriar esta pasta, mover o arquivo, e continuar? + +#: Editor.java:2109 +Moving=Movendo + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Erro + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=O nome para a pasta "{0}" j\u00e1 existe. N\u00e3o foi poss\u00edvel abrir o sketch. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=N\u00e3o foi poss\u00edvel criar a pasta do cketch. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=N\u00e3o foi poss\u00edvel copiar para o local correto. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=N\u00e3o foi poss\u00edvel criar o sketch. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Salvando... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Salvar conclu\u00eddo. + +#: Editor.java:2270 +Save\ Canceled.=Cancelado + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Porta Serial {0} n\u00e3o encontrada.\nTentar a transfer\u00eancia com outra porta serial? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Transferindo para placa I/O. + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Transfer\u00eancia conclu\u00edda. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Transfer\u00eancia cancelada. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Salvar altera\u00e7\u00f5es antes de exportar? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporta\u00e7\u00e3o cancelada, primeiro salve as altera\u00e7\u00f5es. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Gravando bootloader para placa I/O (isso pode demorar alguns minutos)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Grava\u00e7\u00e3o do bootloader finalizada. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Erro ao gravar bootloader. + +#: Editor.java:2500 +Printing...=Imprimindo... + +#: Editor.java:2517 +Done\ printing.=Impress\u00e3o finalizada. + +#: Editor.java:2520 +Error\ while\ printing.=Erro ao imprimir. + +#: Editor.java:2524 +Printing\ canceled.=Impress\u00e3o cancelada. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Erro na linha\: {0} + +#: Editor.java:2641 +Open\ URL=Abrir URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Uma nova vers\u00e3o de Arduino est\u00e1 dispon\u00edvel,\nvoc\u00ea gostaria de visitar a p\u00e1gina de download? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Sim + +#: UpdateCheck.java:108 Preferences.java:77 +No=N\u00e3o + +#: UpdateCheck.java:111 +Update=Atualizar + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Buscar\: + +#: FindReplace.java:81 +Replace\ with\:=Substituir por\: + +#: FindReplace.java:96 +Ignore\ Case=Ignorar Mai\u00fascula/Min\u00fascula + +#: FindReplace.java:105 +Wrap\ Around=Pesquisa Circular + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Substituir Tudo + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Substituir + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Substituir e Buscar + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Anterior + +#: FindReplace.java:124 FindReplace.java:127 +Find=Buscar + +#: SerialMonitor.java:93 +Send=Enviar + +#: SerialMonitor.java:110 +Autoscroll=Rolagem autom\u00e1tica + +#: SerialMonitor.java:112 +No\ line\ ending=Sem fim de linha. + +#: SerialMonitor.java:112 +Newline=Nova Linha + +#: SerialMonitor.java:112 +Carriage\ return=Carriage return + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Ambos NL & CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ transmiss\u00e3o + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=A Porta Serial "{0}" j\u00e1 esta em uso. Tente fechar quaisquer programas que podem estar utilizando-a. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Erro ao abrir porta serial "{0}" + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=A porta Serial "{0}" n\u00e3o foi encontrada. Voc\u00ea selecionou a porta correta em Ferramentas > Menu Portas Seriais? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=o buffer readBytesUntil() \u00e9 muito pequeno para at\u00e9 {0} bytes, incluindo char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Erro dentro da Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Auto Formata\u00e7\u00e3o + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Sem altera\u00e7\u00f5es necess\u00e1rias para a Auto Formata\u00e7\u00e3o. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de par\u00eanteses \u00e0 direita. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de par\u00eanteses \u00e0 esquerda. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de colchetes \u00e0 direita. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de colchetes \u00e0 esquerda. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Auto Formata\u00e7\u00e3o terminada. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Corrigir Codifica\u00e7\u00e3o & Recarregar + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Descartar todas as altera\u00e7\u00f5es e reabrir o sketch? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ocorreu um erro ao tentar corrigir a codifica\u00e7\u00e3o do arquivo\nN\u00e3o tente salvar esse sketch pois voc\u00ea pode sobrescrever a\nvers\u00e3o antiga. Utilize Abrir para reabrir o sketch e tentar novamente.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Arquivar o Sketch + +#: tools/Archiver.java:59 +yyMMdd=ddMMyy + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel arquivar o sketch. + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arquivamento do sketch foi cancelado pois\no sketch n\u00e3o pode ser salvo corretamente. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arquivar sketch como\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Arquivamento do sketch cancelado. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Erro ao tentar carregar c\u00f3digo {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" cont\u00e9m caracteres desconhecidos. Caso este c\u00f3digo tenha sido criado com uma vers\u00e3o antiga do Processing, voc\u00ea deve ir em Ferramentas -> Corrir Codifica\u00e7\u00e3o & Recarregar para atualizar o sketch e usar UTF-8 como codifica\u00e7\u00e3o. Caso contr\u00e1rio, voc\u00ea precisa apagar os caracteres errados para se livrar desta mensagem. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Sketch somente-leitura. + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alguns Arquivos est\u00e3o marcados como "somente-leitura", portanto\nvoc\u00ea precisar\u00e1 voltar a salvar o sketch em outro local,\ne tentar novamente. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nome para o novo arquivo\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Sketch sem t\u00edtulo + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=O que acha de salvar o sketch primeiramente\nantes de tentar renome\u00e1-lo? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Error ao renomear + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=O nome n\u00e3o pode come\u00e7ar com um ponto. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" n\u00e3o \u00e9 uma extens\u00e3o valida. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O arquivo principal n\u00e3o pode usar uma extens\u00e3o.\n(Este pode ser o momento para voc\u00ea mudar\npara um ambiente "real" de programa\u00e7\u00e3o) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=N\u00e3o + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Um arquivo chamado "{0}" j\u00e1 existe em "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Voc\u00ea n\u00e3o pode ter um .cpp com o mesmo nome do seu sketch. + +#: Sketch.java:425 +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 para "{0}"\npois o sketch j\u00e1 tem um arquivo .cpp com este nome. + +#: Sketch.java:459 +Cannot\ Rename=N\u00e3o \u00e9 poss\u00edvel Renomear + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Desculpe, o sketch (ou a pasta) chamada "{0}" j\u00e1 existe. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=N\u00e3o \u00e9 poss\u00edvel renomear o sketch. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=N\u00e3o \u00e9 poss\u00edvel renomear "{0}" para "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=N\u00e3o \u00e9 poss\u00edvel renomear o sketch. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o \u00e9 poss\u00edvel renomear o sketch. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() retornou falso + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Voc\u00ea tem certeza que quer deletar este sketch? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Voc\u00ea tem certeza que quer deletar "{0}" ? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Deletar + +#: Sketch.java:620 +Couldn't\ do\ it=N\u00e3o foi poss\u00edvel fazer isso. + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=N\u00e3o foi poss\u00edvel apagar "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno.. n\u00e3o foi poss\u00edvel encontrar o c\u00f3digo + +#: Sketch.java:724 +Sketch\ is\ read-only=Sketch est\u00e1 marcado somente para leitura + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alguns arquivos est\u00e3o marcados como "somente leitura", ent\u00e3o voc\u00ea\nprecisar\u00e1 salvar novamente este sketch em outro lugar. + +#: Sketch.java:743 +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 padr\u00e3o de arquivo foi modificada\nde .pde para .ino. Novos sketches (inclusive aqueles criados\natrav\u00e9s de "Salvar como") ir\u00e3o utilizar a nova extens\u00e3o. A extens\u00e3o\nde sketches existentes ser\u00e1 atualizada ao salvar, mas voc\u00ea pode\ndesabilitar isso no menu de Prefer\u00eancias. + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Salvar pasta do sketch como... + +#: Sketch.java:865 +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}"\npois o sketch j\u00e1 tem um arquivo .cpp com este nome. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Agora voc\u00ea pegou pesado + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Voc\u00ea n\u00e3o pode salvar o sketch dentro da pr\u00f3pria pasta.\nIsto entrar\u00e1 num loop infinito. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecione a imagem ou outro arquivo de dados para copiar\npara seu sketch. + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Substituir a vers\u00e3o existente do {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Erro ao adicionar arquivo + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=N\u00e3o \u00e9 poss\u00edvel deletar o arquivo "{0}" existente. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Voc\u00ea n\u00e3o pode me enganar. + +#: Sketch.java:1079 +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.\nNada a fazer. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=N\u00e3o foi poss\u00edvel adicionar "{0}" ao sketch + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=A Pasta para compila\u00e7\u00e3o desapareceu ou n\u00e3o pode ser escrita + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=N\u00e3o foi poss\u00edvel encontrar a classe principal + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Tipo de exce\u00e7\u00e3o n\u00e3o tratada\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problema ao mover {0} para a pasta de compila\u00e7\u00e3o + +#: Sketch.java:1661 +Uploading...=Carregando... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Tamanho do arquivo bin\u00e1rio sketch\: {0} (de no m\u00e1ximo {1} bytes) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=N\u00e3o foi poss\u00edvel determinar o tamanho do programa\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketch \u00e9 muito grande; veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para dicas em como reduzi-lo. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Faltando o */ no final do /* coment\u00e1rio */ + +#: Sketch.java:1796 +Sketch\ Disappeared=O Sketch Desapareceu + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A pasta do sketch desapareceu.\nUma nova tentativa de salvar na mesma pasta ser\u00e1 executada, \nnada no seu c\u00f3digo ser\u00e1 perdido. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=N\u00e3o foi poss\u00edvel salvar novamente o sketch + +#: Sketch.java:1811 +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.=N\u00e3o foi poss\u00edvel voltar a salvar corretamente o sketch. Voc\u00ea deve estar em apuros agora,\ne deve copiar e colar seu c\u00f3digo em outro editor de texto. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=O nome do sketch teve que ser modificado. Os nomes para Sketch s\u00f3 podem\nconter caracteres ASCII e n\u00fameros (n\u00e3o podem come\u00e7ar com um n\u00famero).\nEles devem ter no m\u00e1ximo 64 caracteres de comprimento. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro do compilador, por favor envie este c\u00f3digo para {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=a porta serial {0} n\u00e3o existe ou a placa n\u00e3o esta conectada + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo n\u00e3o esta respondendo, verifique se a porta serial correta foi selecionada ou RESET a placa antes de exportar + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema ao carregar para a placa. Veja http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sugest\u00f5es. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Microcontrolador errado encontrado. Voc\u00ea selecionou a placa correta em Ferramentas > Menu de Placas? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nenhuma placa selecionada, por favor escolha a placa em Ferramentas > Menu Placas. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} retornou {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Erro ao compilar. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importe a biblioteca SPI em Sketch > Importar Biblioteca. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nA partir do Arduino 0019, a biblioteca Ethernet depende da biblioteca SPI.\nVoc\u00ea parece estar utilizando ela ou outra biblioteca que depende da biblioteca SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palavra-chave 'BYTE' n\u00e3o \u00e9 mais suportada. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nA partir do Arduino 1.0, a palavra-chave 'BYTE' n\u00e3o \u00e9 mais suportada.\nPor favor utiliza Serial.write() no lugar.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A classe Server foi renomeada para EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nA partir do Arduino 1.0, a classe Server na biblioteca Ethernet foi renomeada para EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A classe Client foi renomeada para EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nA partir do Arduino 1.0, a classe Client na biblioteca Ethernet foi renomeada para EthernetClient.\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp foi renomeada para EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nA partir do Arduino 1.0, a classe Udp na biblioteca Ethernet foi renomeada para EthernetClient.\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() foi renomeado para Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir do Arduino 1.0, a fun\u00e7\u00e3o Wire.send() foi renomeada para \nWire.write() para manter a consist\u00eancia com outras bibliotecas.\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() foi renomeado para Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nA partir do Arduino 1.0, a fun\u00e7\u00e3o Wire.receive() foi renomeada para Wire.read() a fim de manter a consist\u00eancia com outras bibliotecas. \n + +#: EditorConsole.java:152 +Console\ Error=Erro do Console + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ocorreu um problema ao tentar abrir os\narquivos utilizados para armazenar a sa\u00edda do console. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erro n\u00e3o fatal enquanto configurava Apar\u00eancia. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Existe uma mensagem de erro, no entanto o Arduino deve funcionar corretamente. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problema ao configurar a Plataforma + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ocorreu um erro desconhecido ao carregar\nc\u00f3digo espec\u00edfico da plataforma para o seu computador. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Por favor instale a JDK 1.5 ou posterior + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino requer a JDK completa (n\u00e3o apenas a JRE)\npara rodar. Por favor instale a JDK 1.5 ou posterior.\nMais informa\u00e7\u00f5es podem ser encontradas na refer\u00eancia. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=A Pasta do Sketchbook desapareceu + +#: Base.java:258 +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 sketchbook n\u00e3o existe mais.\nArduino ir\u00e1 trocar para o local padr\u00e3o,\ne ir\u00e1 criar uma nova pasta sketchbook se\nnecess\u00e1rio. O Arduino ent\u00e3o ir\u00e1 parar de falar sobre\nele mesmo em terceira pessoa. + +#: Base.java:532 +Time\ for\ a\ Break=Hora de uma pausa + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Voc\u00ea chegou ao limite de auto nomea\u00e7\u00e3o de novas sketches\npara o dia. Que tal em vez disso sair para uma caminha? + +#: Base.java:537 +Sunshine=Luz do sol + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=S\u00e9rio, hora de voc\u00ea tomar um ar puro. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Abrir um sketch Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Voc\u00ea tem certeza que deseja sair?

Ao fechar o \u00faltimo sketch aberto o Arduino se encerrar\u00e1. + +#: Base.java:970 +Contributed=Contribu\u00edram + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=O Sketch n\u00e3o existe + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=O sketch selecionado n\u00e3o existe mais.\nPode ser que voc\u00ea tenha que reiniciar o Arduino\npara atualizar o menu sketchbook. + +#: Base.java:1125 +#, 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}=O sketch "{0}" n\u00e3o pode ser utilizado.\nNomes de sketch devem conter somente caracteres simples e n\u00fameros\n(ASCII, sem espa\u00e7os e n\u00e3o deve iniciar com um n\u00famero).\nPara eliminar esta mensagem, remova o sketch de\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Ignorando sketch com nome inv\u00e1lido. + +#: Base.java:1202 +#, 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)=A biblioteca "{0}" n\u00e3o pode ser utilizada.\nNomes para biblioteca devem conter somente elementos b\u00e1sicos\ne n\u00fameros. (somente ASCII e sem espa\u00e7os, e n\u00e3o pode come\u00e7ar com um n\u00famero). + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Ingnorando nome inv\u00e1lido de biblioteca + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problema ao obter pasta de dados + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Erro ao obter pasta de dados do Arduino. + +#: Base.java:1440 +Settings\ issues=Configura\u00e7\u00f5es + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino n\u00e3o pode executar porque n\u00e3o foi poss\u00edvel\ncriar uma pasta para armazenar suas configura\u00e7\u00f5es. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Voc\u00ea esqueceu seu sketchbook + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=N\u00e3o \u00e9 poss\u00edvel executar o Arduino pois\na pasta do skecthbook n\u00e3o p\u00f4de ser criado. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecione (ou crie uma nova) pasta para seus sketches... + +#: Base.java:1647 +Problem\ Opening\ URL=Problema ao abrir URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=N\u00e3o foi poss\u00edvel abrir a URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problema ao abrir Pasta + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=N\u00e3o foi poss\u00edvel abrir pasta\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guia_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guia_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=ambiente + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Mensagem + +#: Base.java:1842 +Warning=Alerta + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=N\u00e3o foi poss\u00edvel remover a vers\u00e3o antiga {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=N\u00e3o foi poss\u00edvel substituir {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=N\u00e3o foi poss\u00edvel deletar {0} + +#: EditorHeader.java:292 +New\ Tab=Nova Aba + +#: EditorHeader.java:300 +Rename=Renomear + +#: EditorHeader.java:326 +Previous\ Tab=Aba Anterior + +#: EditorHeader.java:340 +Next\ Tab=Pr\u00f3xima Aba + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verificar + +#: EditorToolbar.java:41 +Open=Abrir + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nova Janela de Edi\u00e7\u00e3o + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Abrir em outra Janela + +#: Platform.java:167 +No\ launcher\ available=Nenhum lan\u00e7ador dispon\u00edvel. + +#: 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 espec\u00edficada, nenhuma lan\u00e7ador dispon\u00edvel.\nPara habilitar Abrir URLs ou pastas, adicione a\nlinha "launcher\=/path/to/app" em preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=As configura\u00e7\u00f5es de cor do tema n\u00e3o podem ser lidas.\nVoc\u00ea precisa reinstalar o Processing. + +#: Preferences.java:80 +Browse=Navegar + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Catal\u00e3o + +#: Preferences.java:87 +Chinese\ Simplified=Chin\u00eas Simplificado + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Dinamarqu\u00eas + +#: Preferences.java:90 +Dutch=Holand\u00eas + +#: Preferences.java:91 +English=Ingl\u00eas + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Franc\u00eas + +#: Preferences.java:94 +Filipino=Filipino + +#: Preferences.java:95 +Galician=Galego + +#: Preferences.java:96 +German=Alem\u00e3o + +#: Preferences.java:97 +Greek=Grego + +#: Preferences.java:98 +Hungarian=H\u00fangaro + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Italiano + +#: Preferences.java:101 +Japanese=Japon\u00eas + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Let\u00e3o + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Persa + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Romeno + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Espanhol + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es padr\u00e3o.\nSer\u00e1 necess\u00e1rio instalar Arduino novamente. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=N\u00e3o foi poss\u00edvel ler prefer\u00eancias de {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Erro lendo prefer\u00eancias + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Erro ao ler arquivo de prefer\u00eancias. Por favor delete (ou mova)\n{0} e reinicie o Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Localiza\u00e7\u00e3o do Sketchbook\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Selecione uma nova localiza\u00e7\u00e3o para o sketchbook. + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (requer reiniciar o Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Editar tamanho da fonte\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Exibir modo verboso durante\: + +#: Preferences.java:373 +compilation\ =compila\u00e7\u00e3o + +#: Preferences.java:375 +upload=carregar + +#: Preferences.java:384 +Verify\ code\ after\ upload=Verifique o c\u00f3gido depois de carregar + +#: Preferences.java:393 +Use\ external\ editor=Usar editor externo + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Checar novas atualiza\u00e7\u00f5es ao iniciar + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Atualizar arquivos sketch para nova extens\u00e3o ao salvar (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Associar automaticamente arquivos .ino com o Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Mais prefer\u00eancias podem ser editadas diretamente no arquivo + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(editar somente quando o Arduino n\u00e3o estiver em funcionamento) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignorando tamanho {0} inv\u00e1lido para a fonte diff --git a/app/src/processing/app/Resources_pt_pt.po b/app/src/processing/app/Resources_pt_pt.po new file mode 100644 index 000000000..c85cc13e4 --- /dev/null +++ b/app/src/processing/app/Resources_pt_pt.po @@ -0,0 +1,1593 @@ +# Portuguese (Portugal) translations for Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# +# Translators: +# +# Nigel Randsley, 2012. +# + + +msgid "" +msgstr "" +"Project-Id-Version: PT-PT Arduino IDE\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Last-Translator: Nigel Randsley\n" +"Language-Team: Portuguese (Portugal)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Nenhum arquivo foi adicionado ao esboço." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Um arquivo foi adicionado ao esboço." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} arquivos foram adicionados ao esboço." + +#: Editor.java:484 +msgid "File" +msgstr "Ficheiro" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Novo" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Abrir..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Catálogo" + +#: Editor.java:509 +msgid "Examples" +msgstr "Exemplos" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Fechar" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Guardar" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Guardar Como..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Carregar" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Carregar Utilizando um Programador" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Configuração da página" + +#: Editor.java:564 +msgid "Print" +msgstr "Imprimir" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferências" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Sair" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Esboço" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verificar / Compilar" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importar Biblioteca..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Exibir Pasta dos Esboços" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Adicionar Ficheiro..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Ferramentas" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitor Porta série" + +#: Editor.java:682 +msgid "Board" +msgstr "Placa" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Porta Série" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programador" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Gravar Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu está vazio" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "o nome está vazio" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "erro ao carregar a lista de portas" + +#: Editor.java:1002 +msgid "Help" +msgstr "Ajuda" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Primeiros passos" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Ambiente" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Resolução de problemas" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referência" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Procurar na Referência" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Perguntas Frequentes" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Visite Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Acerca do Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Editar" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Anular" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Refazer" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Cortar" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Copiar" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copiar para o Fórum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Copiar como HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Colar" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Selecionar Tudo" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Comentar/Remover comentário" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Aumentar Indentação" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Diminuir Indentação" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Procurar..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Procurar Seguinte" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Procurar Anterior" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Use Seleção Para Procurar" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Primeiro selecione uma palavra a ser localizada na referência." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Nenhuma referência disponível para \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "A compilar o esboço..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compilação terminada." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Guardar alterações para \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " \n" +"Quer guardar as alterações deste esboço
antes de fechar?

Se não as guardar, as alterações serão perdidas." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Cancelar" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Não guardar" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Ficheiro incorreto selecionado" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "O Processing apenas abre os seus próprios esboços\n" +"e outros ficheiros com extensão .ino ou .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "O ficheiro \"{0}\" tem de estar numa\n" +"pasta de esboços com o nome \"{1}\".\n" +"Quer criar esta pasta, mover o ficheiro e continuar?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "A mover" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Erro" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "A pasta chamada \"{0}\" já existe. Impossível abrir o esboço." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Não foi possível criar a pasta do esboço." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Não foi possível copiar para o local correto." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Não foi possível criar o esboço." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "A Guardar..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Guardado." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Cancelado" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "Porta Série {0} não foi encontrada.\n" +"Tentar de novo carregar para outra porta série?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "A transferir para a placa de E/S." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Transferência concluída." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Transferência cancelada." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Guardar alterações antes de exportar??" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exportação cancelada, guarde as suas alterações primeiro." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "A gravar o bootloader para a placa de E/S (isto pode demorar alguns minutos)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Gravação do bootloader concluída." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Erro ao gravar o bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "A Imprimir..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Impressão concluída." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Erro ao imprimir." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Impressão cancelada." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Erro na linha: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Abrir URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "Uma nova versão do Arduino está disponível,\n" +"quer visitar a página do Arduino para descarregar?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Sim" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Não" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Actualizar" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Procurar:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Substituir por:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignorar Maiúsculas/minúsculas" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Pesquisa Circular" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Substituir Tudo" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Substituir" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Substituir e Procurar" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Anterior" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Procurar:" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Enviar" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Continuação automática" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Sem final de linha." + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Nova Linha NL" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Nova linha CR" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "NL e CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "Porta série ''{0}'' já está a ser usada. Tente terminar quaisquer programas que a possam estar a usar." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Erro ao abrir porta série \"{0}\"" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "Porta Série {0} não foi encontrada. Selecionou a porta correta a partir do menu Ferramentas > Porta Série?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "o buffer readBytesUntil() é demasiado pequeno para os {0} bytes, até char {1} inclusive" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Erro na porta Série.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Auto Formatar" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Não são necessárias alterações para auto Formatar." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Auto Formatação Cancelada: Parêntesis á direita em excesso." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Auto Formatação Cancelada: Parêntesis á esquerda em excesso." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Auto Formatação Cancelada: Excesso de chavetas á direita." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Auto Formatação Cancelada: Excesso de chavetas á esquerda." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Auto Formatação terminada." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Corrigir a Codificação e Recarregar" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Anular todas as alterações e reabrir o esboço?" + +#: 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 "Ocorreu um erro ao tentar corrigir a codificação do ficheiro.\n" +"Não tente guardar este esboço porque poderá eliminar\n" +"a versão antiga. Use Abrir para reabrir o esboço e tente de novo.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Guardar o Esboço" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "ddMMyy" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Não foi possível guardar o esboço." + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "Operação de guardar cancelada porque\n" +"o esboço não pode ser guardado corretamente." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Guardar esboço como:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Operação de guardar o esboço cancelada." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Erro ao tentar carregar código {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "\"{0}\" contem caracteres desconhecidos. Se este código foi criado numa versão antiga do Processing,poderá ter que usar Ferramentas -> Corrigir Codificação e Carregar para atualizar o esboço com codificação em UTF-8. Caso contrário, pode apagar os caracteres errados para eliminar este aviso." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Esboço é de leitura-apenas." + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "Alguns ficheiros estão marcados como \"leitura-apenas\", portanto\n" +"tem de voltar a guardar o esboço noutro local,\n" +"e tentar de novo." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Nome para o novo ficheiro:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Esboço sem título" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "E que tal tentar guardar o esboço antes de tentar mudar o nome?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Erro ao mudar o nome" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "O nome não pode começar por um ponto." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" não é uma extensão válida." + +#: Sketch.java:378 +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 "O ficheiro principal não pode ter uma extensão.\n" +"(Poderá ter chegado a altura de começar a usar um ambiente\n" +"de programação \"real\")" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Nãaa" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Um ficheiro chamado \"{0}\" já existe em \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Não pode ter um ficheiro tipo .cpp com o mesmo nome do seu esboço." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "Não pode mudar o nome do esboço para \"{0}\"\n" +"porque o esboço já tem um ficheiro .cpp com este nome." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Impossível mudar o nome" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Desculpe, o esboço (ou a pasta) chamada \"{0}\" já¡ existe." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Não foi possível mudar o nome ao esboço. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Não foi possível mudar o nome de \"{0}\" para \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Não foi possível mudar o nome ao esboço. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Não foi possível mudar o nome ao esboço. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() devolveu o valor falso" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Tem a certeza que quer apagar este esboço?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Tem a certeza que quer apagar \"{0}\" ?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Apagar" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Não foi possível fazer isso." + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Não foi possível apagar \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: erro interno.. código não localizado" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Esboço de leitura-apenas" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "Alguns ficheiros estão marcados como \"leitura-apenas\", como tal\n" +"necessita guardar de novo este esboço para outro local." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "Na versão Arduino 1.0, a extensão por defeito mudou de .pde para .ino. Os novos esboços (incluindo aqueles criados por\n" +"\"Guardar Como\" irão usar esta nova extensão. A extensão\n" +"de esboços já existentes será atualizada ao guardar, mas pode\n" +"anular este comportamento nas Preferências.\n" +"\n" +"Guardar o esboço e atualizar a sua extensão?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Guardar pasta do esboço como..." + +#: Sketch.java:865 +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 esboço como \"{0}\"\n" +"porque este já tem um ficheiro .cpp com este nome." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Anda a ler demasiado J.L.Borges…" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "Não pode guardar o esboço dentro de uma pasta que esteja dentro dela mesma. Iria continuar infinitamente, e agravar a crise mundial" + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Selecione uma imagem ou outro ficheiro de dados para copiar\n" +"para seu esboço." + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Substituir a versão existente do {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Erro ao adicionar arquivo" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Não foi possível apagar o ficheiro \"{0}\" existente." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Não me consegue enganar, não sou tolo…" + +#: Sketch.java:1079 +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 "Este ficheiro já foi copiado para o\n" +"local para onde o quer adicionar.\n" +"Não estou para não estar a não fazer nada." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Não foi possível acrescentar \"{0}\" ao esboço" + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "A pasta para compilação desapareceu ou não pode ser escrita" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Não foi possível encontrar a classe principal" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Exceção não apanhada de tipo: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problema ao mover {0} para a pasta de compilação" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "A carregar..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Tamanho do arquivo binário do esboço: {0} (de um máximo de {1} bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Não foi possível determinar o tamanho do programa: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "Esboço demasiado grande; veja http://www.arduino.cc/en/Guide/Troubleshooting#size para ideias de como reduzir o tamanho." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Falta o sinal */ no final de um /* comentário */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Esboço Desapareceu" + +#: Sketch.java:1797 +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 "A pasta do esboço desapareceu.\n" +" Irei tentar guardar de novo para o mesmo local,\n" +"mas tudo excepto o código irá ser perdido." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Não foi possível guardar o esboço de novo" + +#: Sketch.java:1811 +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ão foi possível guardar o esboço corretamente. Poderá estar em apuros neste momento,\n" +"talvez seja aconselhável copiar e colar o seu código para um outro editor de texto." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "O nome do esboço teve de ser modificado. Os nomes de esboço só podem conter caracteres ASCII e dígitos (mas não podem começar por um dígito).\n" +"Adicionalmente deverão ter menos de 64 caracteres de comprimento." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Erro do compilador, por favor envie este código para {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "a porta série {0} não existe ou a placa não está ligada" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "O dispositivo não está a responder, verifique se a porta série correta foi selecionada ou faça RESET da placa imediatamente antes de exportar" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "Problema ao carregar para a placa. Veja http://www.arduino.cc/en/Guide/Troubleshooting#upload para sugestões." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "Microcontrolador incorreto encontrado. Selecionou a placa correta a partir do menu Ferramentas > Placa?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Nenhuma placa selecionada, por favor escolha a placa em Ferramentas > Menu Placas." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} devolveu {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Erro ao compilar." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Por favor importe a biblioteca SPI em Esboço > Importar Biblioteca." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "\n" +"Desde a versão Arduino 0019, a biblioteca Ethernet depende da bibllioteca SPI.\n" +"Parece estar a usá-la ou qualquer outra biblioteca que depende da biblioteca SPI.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "A palavra-chave 'BYTE' já não é suportada." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "\n" +"Desde a versão Arduino 1.0, a palavra chave 'BYTE' deixou de ser suportada.\n" +"Por favor use Serial.write() em alternativa.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "O nome da classe Server foi mudado para EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "\n" +"Desde a versão Arduino 1.0, a classe Server na biblioteca Ethernet teve o nome mudado para EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "A classe Client teve o nome mudado para EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "\n" +"Desde a versão Arduino 1.0, a classe Client na biblioteca Ethernet teve o nome mudado para EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "A clase Udp teve o nome mudado para EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "\n" +"Desde a versão Arduino 1.0, a classe Udp na biblioteca Ethernet teve o nome mudado para EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() é agora Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "\n" +"Desde a versão Arduino 1.0, a função Wire.send() passa a ser \n" +"Wire.write() para ser consistente com outras bibliotecas.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() é agora Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "\n" +"Desde a versão Arduino 1.0, a função Wire.receive() passa a ser Wire.read() para ser consistente com outras bibliotecas.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Erro da Consola" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "Ocorreu um problema ao tentar abrir os\n" +"ficheiros utilizados para guardar a saída da consola." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Erro não fatal ao configurar Aparência." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "De seguida uma mensagem de erro, no entanto o Arduino deve funcionar corretamente." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problema ao configurar a Plataforma" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Ocorreu um erro desconhecido ao tentar carregar\n" +"código específico para a plataforma do seu computador." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Por favor instale o JDK 1.5 ou posterior" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "Arduino necessita um JDK completo (e não apenas um JRE)\n" +"para executar. Por favor instale o JDK 1.5 ou posterior.\n" +"Informação adicional pode ser encontrada na referência." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "A Pasta do Catálogo desapareceu" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "A pasta do catálogo já não existe..\n" +"Arduino irá usar a localização por defeito para o\n" +"catálogo e criar uma nova pasta de catálogo se\n" +"necessário. Arduino vai deixar de se referir a si mesmo na terceira pessoa." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Tempo para uma pausa" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "Atingiu o limite diário de criação de nomes \n" +"de forma automática. E que tal sair para um passeio em alternativa?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Luz_do_sol" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "A sério, é hora de ir apanhar um pouco de ar puro." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Abrir um esboço Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr " Tem a certeza que quer Sair?

Ao fechar o último esboço aberto o Arduino irá terminar." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribuíram" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "O Esboço Não Existe" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "O esboço escolhido já não existe.\n" +"Podera ter que reinicializar o Arduino para atualizar\n" +"o menu dos catálogos." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "O esboço \"{0}\" não pode ser usado.\n" +"Os nomes dos esboços apenas poder conter letras básicas e dígitos\n" +"(apenas ASCII sem espaços, e não podem começar por um digito).\n" +"Para eliminar esta mensagem, remova o esboço de\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Esboço com nome inválido ignorado." + +#: Base.java:1202 +#, java-format +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 "A biblioteca \"{0}\" não pode ser usada.\n" +"Os nomes de biblioteca apenas podem conter letras básicas e dígitos.\n" +"(apenas ASCII sem espaços, e não podem começar por um digito)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Biblioteca com nome inválido ignorada" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problema ao obter pasta de dados" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Erro ao obter pasta de dados do Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Problemas de Configuração" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "Arduino não pode executar porque lhe foi impossível\n" +"criar uma pasta para armazenar as suas configurações." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Esqueceu o seu catálogo" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "Arduino não pode executar porque lhe foi impossível\n" +"criar uma pasta para armazenar o seu catálogo." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Selecione (ou crie uma nova) pasta para seus esboços..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problema ao abrir URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "Não foi possível abrir o URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problema ao abrir a Pasta" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "Não foi possível abrir a pasta\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "ambiente" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Mensagem" + +#: Base.java:1842 +msgid "Warning" +msgstr "Alerta" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Não foi possível remover a versão antiga de {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Não foi possível substituir {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Não foi possível apagar {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Novo Separador" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Mudar o nome" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Separador Anterior" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Separador Seguinte" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verificar" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Abrir" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Nova Janela de Edição" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Abrir em outra Janela" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Nenhum programa disponível." + +#: 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 "Plataforma não especificada, nenhum programa disponível.\n" +"Para permitir a abertura de endereços URL ou de pastas, acrescente uma linha do tipo \n" +"\"launcher=/path/to/app\" no ficheiro preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "Não consegui ler as preferências para o tema cromático.\n" +"Terá que voltar a instalar o Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Navegar" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Catalão" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Chinês Simplificado" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Dinamarquês" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Holandês" + +#: Preferences.java:91 +msgid "English" +msgstr "Inglês" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Francês" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipino" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galego" + +#: Preferences.java:96 +msgid "German" +msgstr "Alemão" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Grego" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Húngaro" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italiano" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Japonês" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Letão" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persa" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Romeno" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Espanhol" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "Não consegui ler as preferências por defeito.\n" +"Terá que voltar a instalar o Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Não consegui ler as preferências de {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Erro ao ler as preferências" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "Erro ao ler o ficheiro de preferências. Por favor apague (ou mova)\n" +"{0} e volte a iniciar o Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Localização do Catálogo:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Escolha uma nova localização para o catálogo." + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (requer reiniciar o Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Tamanho da fonte do editor: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Mostrar resultado verboso durante: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilação " + +#: Preferences.java:375 +msgid "upload" +msgstr "carregar" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Verifique o código após carregar" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Usar editor externo" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Procurar atualizações durante o arranque" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Atualizar os ficheiros de esboço para a nova extensão ao guardar (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Associar automaticamente ficheiros .ino com o Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Preferências adicionais pode ser editadas diretamente no ficheiro" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(editar apenas quando o Arduino não estiver a correr)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "tamanho {0} inválido para a fonte ignorado" diff --git a/app/src/processing/app/Resources_pt_pt.properties b/app/src/processing/app/Resources_pt_pt.properties new file mode 100644 index 000000000..b3c254556 --- /dev/null +++ b/app/src/processing/app/Resources_pt_pt.properties @@ -0,0 +1,1037 @@ +# Portuguese (Portugal) translations for Arduino IDE. +# Copyright (C) 2012 +# This file is distributed under the same license as the Arduino IDE package. +# +# Translators: +# +# Nigel Randsley, 2012. +# +!=Project-Id-Version\: PT-PT Arduino IDE\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: \nPO-Revision-Date\: \nLast-Translator\: Nigel Randsley\nLanguage-Team\: Portuguese (Portugal)\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 + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Nenhum arquivo foi adicionado ao esbo\u00e7o. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Um arquivo foi adicionado ao esbo\u00e7o. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} arquivos foram adicionados ao esbo\u00e7o. + +#: Editor.java:484 +File=Ficheiro + +#: Editor.java:486 EditorToolbar.java:41 +New=Novo + +#: Editor.java:494 Base.java:903 +Open...=Abrir... + +#: Editor.java:503 +Sketchbook=Cat\u00e1logo + +#: Editor.java:509 +Examples=Exemplos + +#: Editor.java:514 Editor.java:1977 +Close=Fechar + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Guardar + +#: Editor.java:530 +Save\ As...=Guardar Como... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Carregar + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Carregar Utilizando um Programador + +#: Editor.java:556 +Page\ Setup=Configura\u00e7\u00e3o da p\u00e1gina + +#: Editor.java:564 +Print=Imprimir + +#: Editor.java:576 Preferences.java:279 +Preferences=Prefer\u00eancias + +#: Editor.java:586 Base.java:782 +Quit=Sair + +#: Editor.java:600 +Sketch=Esbo\u00e7o + +#: Editor.java:602 +Verify\ /\ Compile=Verificar / Compilar + +#: Editor.java:629 +Import\ Library...=Importar Biblioteca... + +#: Editor.java:634 +Show\ Sketch\ Folder=Exibir Pasta dos Esbo\u00e7os + +#: Editor.java:643 +Add\ File...=Adicionar Ficheiro... + +#: Editor.java:656 +Tools=Ferramentas + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitor Porta s\u00e9rie + +#: Editor.java:682 +Board=Placa + +#: Editor.java:690 +Serial\ Port=Porta S\u00e9rie + +#: Editor.java:695 +Programmer=Programador + +#: Editor.java:699 +Burn\ Bootloader=Gravar Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu est\u00e1 vazio + +#: Editor.java:927 Editor.java:934 +name\ is\ null=o nome est\u00e1 vazio + +#: Editor.java:986 +error\ retrieving\ port\ list=erro ao carregar a lista de portas + +#: Editor.java:1002 +Help=Ajuda + +#: Editor.java:1041 +Getting\ Started=Primeiros passos + +#: Editor.java:1049 +Environment=Ambiente + +#: Editor.java:1057 +Troubleshooting=Resolu\u00e7\u00e3o de problemas + +#: Editor.java:1065 +Reference=Refer\u00eancia + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Procurar na Refer\u00eancia + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Perguntas Frequentes + +#: Editor.java:1091 +Visit\ Arduino.cc=Visite Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Acerca do Arduino + +#: Editor.java:1116 +Edit=Editar + +#: Editor.java:1119 Editor.java:1341 +Undo=Anular + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Refazer + +#: Editor.java:1135 Editor.java:2652 +Cut=Cortar + +#: Editor.java:1143 Editor.java:2660 +Copy=Copiar + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copiar para o F\u00f3rum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Copiar como HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Colar + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Selecionar Tudo + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Comentar/Remover coment\u00e1rio + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Aumentar Indenta\u00e7\u00e3o + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Diminuir Indenta\u00e7\u00e3o + +#: Editor.java:1220 +Find...=Procurar... + +#: Editor.java:1235 +Find\ Next=Procurar Seguinte + +#: Editor.java:1245 +Find\ Previous=Procurar Anterior + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Use Sele\u00e7\u00e3o Para Procurar + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Primeiro selecione uma palavra a ser localizada na refer\u00eancia. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Nenhuma refer\u00eancia dispon\u00edvel para "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=A compilar o esbo\u00e7o... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compila\u00e7\u00e3o terminada. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Guardar altera\u00e7\u00f5es para "{0}"? + +#: Editor.java:2006 +\ \ 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.= \nQuer guardar as altera\u00e7\u00f5es deste esbo\u00e7o
antes de fechar?

Se n\u00e3o as guardar, as altera\u00e7\u00f5es ser\u00e3o perdidas. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Cancelar + +#: Editor.java:2017 +Don't\ Save=N\u00e3o guardar + +#: Editor.java:2089 +Bad\ file\ selected=Ficheiro incorreto selecionado + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=O Processing apenas abre os seus pr\u00f3prios esbo\u00e7os\ne outros ficheiros com extens\u00e3o .ino ou .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=O ficheiro "{0}" tem de estar numa\npasta de esbo\u00e7os com o nome "{1}".\nQuer criar esta pasta, mover o ficheiro e continuar? + +#: Editor.java:2109 +Moving=A mover + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Erro + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=A pasta chamada "{0}" j\u00e1 existe. Imposs\u00edvel abrir o esbo\u00e7o. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=N\u00e3o foi poss\u00edvel criar a pasta do esbo\u00e7o. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=N\u00e3o foi poss\u00edvel copiar para o local correto. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=N\u00e3o foi poss\u00edvel criar o esbo\u00e7o. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=A Guardar... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Guardado. + +#: Editor.java:2270 +Save\ Canceled.=Cancelado + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Porta S\u00e9rie {0} n\u00e3o foi encontrada.\nTentar de novo carregar para outra porta s\u00e9rie? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=A transferir para a placa de E/S. + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Transfer\u00eancia conclu\u00edda. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Transfer\u00eancia cancelada. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Guardar altera\u00e7\u00f5es antes de exportar?? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exporta\u00e7\u00e3o cancelada, guarde as suas altera\u00e7\u00f5es primeiro. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=A gravar o bootloader para a placa de E/S (isto pode demorar alguns minutos)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Grava\u00e7\u00e3o do bootloader conclu\u00edda. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Erro ao gravar o bootloader. + +#: Editor.java:2500 +Printing...=A Imprimir... + +#: Editor.java:2517 +Done\ printing.=Impress\u00e3o conclu\u00edda. + +#: Editor.java:2520 +Error\ while\ printing.=Erro ao imprimir. + +#: Editor.java:2524 +Printing\ canceled.=Impress\u00e3o cancelada. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Erro na linha\: {0} + +#: Editor.java:2641 +Open\ URL=Abrir URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Uma nova vers\u00e3o do Arduino est\u00e1 dispon\u00edvel,\nquer visitar a p\u00e1gina do Arduino para descarregar? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Sim + +#: UpdateCheck.java:108 Preferences.java:77 +No=N\u00e3o + +#: UpdateCheck.java:111 +Update=Actualizar + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Procurar\: + +#: FindReplace.java:81 +Replace\ with\:=Substituir por\: + +#: FindReplace.java:96 +Ignore\ Case=Ignorar Mai\u00fasculas/min\u00fasculas + +#: FindReplace.java:105 +Wrap\ Around=Pesquisa Circular + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Substituir Tudo + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Substituir + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Substituir e Procurar + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Anterior + +#: FindReplace.java:124 FindReplace.java:127 +Find=Procurar\: + +#: SerialMonitor.java:93 +Send=Enviar + +#: SerialMonitor.java:110 +Autoscroll=Continua\u00e7\u00e3o autom\u00e1tica + +#: SerialMonitor.java:112 +No\ line\ ending=Sem final de linha. + +#: SerialMonitor.java:112 +Newline=Nova Linha NL + +#: SerialMonitor.java:112 +Carriage\ return=Nova linha CR + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=NL e CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Porta s\u00e9rie ''{0}'' j\u00e1 est\u00e1 a ser usada. Tente terminar quaisquer programas que a possam estar a usar. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Erro ao abrir porta s\u00e9rie "{0}" + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Porta S\u00e9rie {0} n\u00e3o foi encontrada. Selecionou a porta correta a partir do menu Ferramentas > Porta S\u00e9rie? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=o buffer readBytesUntil() \u00e9 demasiado pequeno para os {0} bytes, at\u00e9 char {1} inclusive + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Erro na porta S\u00e9rie.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Auto Formatar + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=N\u00e3o s\u00e3o necess\u00e1rias altera\u00e7\u00f5es para auto Formatar. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Auto Formata\u00e7\u00e3o Cancelada\: Par\u00eantesis \u00e1 direita em excesso. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Auto Formata\u00e7\u00e3o Cancelada\: Par\u00eantesis \u00e1 esquerda em excesso. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de chavetas \u00e1 direita. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Auto Formata\u00e7\u00e3o Cancelada\: Excesso de chavetas \u00e1 esquerda. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Auto Formata\u00e7\u00e3o terminada. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Corrigir a Codifica\u00e7\u00e3o e Recarregar + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Anular todas as altera\u00e7\u00f5es e reabrir o esbo\u00e7o? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Ocorreu um erro ao tentar corrigir a codifica\u00e7\u00e3o do ficheiro.\nN\u00e3o tente guardar este esbo\u00e7o porque poder\u00e1 eliminar\na vers\u00e3o antiga. Use Abrir para reabrir o esbo\u00e7o e tente de novo.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Guardar o Esbo\u00e7o + +#: tools/Archiver.java:59 +yyMMdd=ddMMyy + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel guardar o esbo\u00e7o. + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Opera\u00e7\u00e3o de guardar cancelada porque\no esbo\u00e7o n\u00e3o pode ser guardado corretamente. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Guardar esbo\u00e7o como\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Opera\u00e7\u00e3o de guardar o esbo\u00e7o cancelada. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Erro ao tentar carregar c\u00f3digo {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contem caracteres desconhecidos. Se este c\u00f3digo foi criado numa vers\u00e3o antiga do Processing,poder\u00e1 ter que usar Ferramentas -> Corrigir Codifica\u00e7\u00e3o e Carregar para atualizar o esbo\u00e7o com codifica\u00e7\u00e3o em UTF-8. Caso contr\u00e1rio, pode apagar os caracteres errados para eliminar este aviso. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Esbo\u00e7o \u00e9 de leitura-apenas. + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Alguns ficheiros est\u00e3o marcados como "leitura-apenas", portanto\ntem de voltar a guardar o esbo\u00e7o noutro local,\ne tentar de novo. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Nome para o novo ficheiro\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Esbo\u00e7o sem t\u00edtulo + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=E que tal tentar guardar o esbo\u00e7o antes de tentar mudar o nome? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Erro ao mudar o nome + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=O nome n\u00e3o pode come\u00e7ar por um ponto. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" n\u00e3o \u00e9 uma extens\u00e3o v\u00e1lida. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=O ficheiro principal n\u00e3o pode ter uma extens\u00e3o.\n(Poder\u00e1 ter chegado a altura de come\u00e7ar a usar um ambiente\nde programa\u00e7\u00e3o "real") + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=N\u00e3aa + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Um ficheiro chamado "{0}" j\u00e1 existe em "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=N\u00e3o pode ter um ficheiro tipo .cpp com o mesmo nome do seu esbo\u00e7o. + +#: Sketch.java:425 +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 do esbo\u00e7o para "{0}"\nporque o esbo\u00e7o j\u00e1 tem um ficheiro .cpp com este nome. + +#: Sketch.java:459 +Cannot\ Rename=Imposs\u00edvel mudar o nome + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Desculpe, o esbo\u00e7o (ou a pasta) chamada "{0}" j\u00e1\u00a1 existe. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=N\u00e3o foi poss\u00edvel mudar o nome ao esbo\u00e7o. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=N\u00e3o foi poss\u00edvel mudar o nome de "{0}" para "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=N\u00e3o foi poss\u00edvel mudar o nome ao esbo\u00e7o. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o foi poss\u00edvel mudar o nome ao esbo\u00e7o. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() devolveu o valor falso + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Tem a certeza que quer apagar este esbo\u00e7o? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Tem a certeza que quer apagar "{0}" ? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Apagar + +#: Sketch.java:620 +Couldn't\ do\ it=N\u00e3o foi poss\u00edvel fazer isso. + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=N\u00e3o foi poss\u00edvel apagar "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: erro interno.. c\u00f3digo n\u00e3o localizado + +#: Sketch.java:724 +Sketch\ is\ read-only=Esbo\u00e7o de leitura-apenas + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Alguns ficheiros est\u00e3o marcados como "leitura-apenas", como tal\nnecessita guardar de novo este esbo\u00e7o para outro local. + +#: Sketch.java:743 +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?=Na vers\u00e3o Arduino 1.0, a extens\u00e3o por defeito mudou de .pde para .ino. Os novos esbo\u00e7os (incluindo aqueles criados por\n"Guardar Como" ir\u00e3o usar esta nova extens\u00e3o. A extens\u00e3o\nde esbo\u00e7os j\u00e1 existentes ser\u00e1 atualizada ao guardar, mas pode\nanular este comportamento nas Prefer\u00eancias.\n\nGuardar o esbo\u00e7o e atualizar a sua extens\u00e3o? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Guardar pasta do esbo\u00e7o como... + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=N\u00e3o pode guardar o esbo\u00e7o como "{0}"\nporque este j\u00e1 tem um ficheiro .cpp com este nome. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Anda a ler demasiado J.L.Borges\u2026 + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=N\u00e3o pode guardar o esbo\u00e7o dentro de uma pasta que esteja dentro dela mesma. Iria continuar infinitamente, e agravar a crise mundial + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecione uma imagem ou outro ficheiro de dados para copiar\npara seu esbo\u00e7o. + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Substituir a vers\u00e3o existente do {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Erro ao adicionar arquivo + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=N\u00e3o foi poss\u00edvel apagar o ficheiro "{0}" existente. + +#: Sketch.java:1078 +You\ can't\ fool\ me=N\u00e3o me consegue enganar, n\u00e3o sou tolo\u2026 + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este ficheiro j\u00e1 foi copiado para o\nlocal para onde o quer adicionar.\nN\u00e3o estou para n\u00e3o estar a n\u00e3o fazer nada. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=N\u00e3o foi poss\u00edvel acrescentar "{0}" ao esbo\u00e7o + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=A pasta para compila\u00e7\u00e3o desapareceu ou n\u00e3o pode ser escrita + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=N\u00e3o foi poss\u00edvel encontrar a classe principal + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Exce\u00e7\u00e3o n\u00e3o apanhada de tipo\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problema ao mover {0} para a pasta de compila\u00e7\u00e3o + +#: Sketch.java:1661 +Uploading...=A carregar... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Tamanho do arquivo bin\u00e1rio do esbo\u00e7o\: {0} (de um m\u00e1ximo de {1} bytes) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=N\u00e3o foi poss\u00edvel determinar o tamanho do programa\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Esbo\u00e7o demasiado grande; veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para ideias de como reduzir o tamanho. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o sinal */ no final de um /* coment\u00e1rio */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Esbo\u00e7o Desapareceu + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A pasta do esbo\u00e7o desapareceu.\n Irei tentar guardar de novo para o mesmo local,\nmas tudo excepto o c\u00f3digo ir\u00e1 ser perdido. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=N\u00e3o foi poss\u00edvel guardar o esbo\u00e7o de novo + +#: Sketch.java:1811 +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.=N\u00e3o foi poss\u00edvel guardar o esbo\u00e7o corretamente. Poder\u00e1 estar em apuros neste momento,\ntalvez seja aconselh\u00e1vel copiar e colar o seu c\u00f3digo para um outro editor de texto. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=O nome do esbo\u00e7o teve de ser modificado. Os nomes de esbo\u00e7o s\u00f3 podem conter caracteres ASCII e d\u00edgitos (mas n\u00e3o podem come\u00e7ar por um d\u00edgito).\nAdicionalmente dever\u00e3o ter menos de 64 caracteres de comprimento. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erro do compilador, por favor envie este c\u00f3digo para {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=a porta s\u00e9rie {0} n\u00e3o existe ou a placa n\u00e3o est\u00e1 ligada + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=O dispositivo n\u00e3o est\u00e1 a responder, verifique se a porta s\u00e9rie correta foi selecionada ou fa\u00e7a RESET da placa imediatamente antes de exportar + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema ao carregar para a placa. Veja http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sugest\u00f5es. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Microcontrolador incorreto encontrado. Selecionou a placa correta a partir do menu Ferramentas > Placa? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nenhuma placa selecionada, por favor escolha a placa em Ferramentas > Menu Placas. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} devolveu {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Erro ao compilar. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Por favor importe a biblioteca SPI em Esbo\u00e7o > Importar Biblioteca. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nDesde a vers\u00e3o Arduino 0019, a biblioteca Ethernet depende da bibllioteca SPI.\nParece estar a us\u00e1-la ou qualquer outra biblioteca que depende da biblioteca SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=A palavra-chave 'BYTE' j\u00e1 n\u00e3o \u00e9 suportada. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nDesde a vers\u00e3o Arduino 1.0, a palavra chave 'BYTE' deixou de ser suportada.\nPor favor use Serial.write() em alternativa.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=O nome da classe Server foi mudado para EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nDesde a vers\u00e3o Arduino 1.0, a classe Server na biblioteca Ethernet teve o nome mudado para EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=A classe Client teve o nome mudado para EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDesde a vers\u00e3o Arduino 1.0, a classe Client na biblioteca Ethernet teve o nome mudado para EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A clase Udp teve o nome mudado para EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nDesde a vers\u00e3o Arduino 1.0, a classe Udp na biblioteca Ethernet teve o nome mudado para EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u00e9 agora Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde a vers\u00e3o Arduino 1.0, a fun\u00e7\u00e3o Wire.send() passa a ser \nWire.write() para ser consistente com outras bibliotecas.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u00e9 agora Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nDesde a vers\u00e3o Arduino 1.0, a fun\u00e7\u00e3o Wire.receive() passa a ser Wire.read() para ser consistente com outras bibliotecas.\n\n + +#: EditorConsole.java:152 +Console\ Error=Erro da Consola + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ocorreu um problema ao tentar abrir os\nficheiros utilizados para guardar a sa\u00edda da consola. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erro n\u00e3o fatal ao configurar Apar\u00eancia. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=De seguida uma mensagem de erro, no entanto o Arduino deve funcionar corretamente. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problema ao configurar a Plataforma + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ocorreu um erro desconhecido ao tentar carregar\nc\u00f3digo espec\u00edfico para a plataforma do seu computador. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Por favor instale o JDK 1.5 ou posterior + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino necessita um JDK completo (e n\u00e3o apenas um JRE)\npara executar. Por favor instale o JDK 1.5 ou posterior.\nInforma\u00e7\u00e3o adicional pode ser encontrada na refer\u00eancia. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=A Pasta do Cat\u00e1logo desapareceu + +#: Base.java:258 +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 cat\u00e1logo j\u00e1 n\u00e3o existe..\nArduino ir\u00e1 usar a localiza\u00e7\u00e3o por defeito para o\ncat\u00e1logo e criar uma nova pasta de cat\u00e1logo se\nnecess\u00e1rio. Arduino vai deixar de se referir a si mesmo na terceira pessoa. + +#: Base.java:532 +Time\ for\ a\ Break=Tempo para uma pausa + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Atingiu o limite di\u00e1rio de cria\u00e7\u00e3o de nomes \nde forma autom\u00e1tica. E que tal sair para um passeio em alternativa? + +#: Base.java:537 +Sunshine=Luz_do_sol + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=A s\u00e9rio, \u00e9 hora de ir apanhar um pouco de ar puro. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Abrir um esbo\u00e7o Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Tem a certeza que quer Sair?

Ao fechar o \u00faltimo esbo\u00e7o aberto o Arduino ir\u00e1 terminar. + +#: Base.java:970 +Contributed=Contribu\u00edram + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=O Esbo\u00e7o N\u00e3o Existe + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=O esbo\u00e7o escolhido j\u00e1 n\u00e3o existe.\nPodera ter que reinicializar o Arduino para atualizar\no menu dos cat\u00e1logos. + +#: Base.java:1125 +#, 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}=O esbo\u00e7o "{0}" n\u00e3o pode ser usado.\nOs nomes dos esbo\u00e7os apenas poder conter letras b\u00e1sicas e d\u00edgitos\n(apenas ASCII sem espa\u00e7os, e n\u00e3o podem come\u00e7ar por um digito).\nPara eliminar esta mensagem, remova o esbo\u00e7o de\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Esbo\u00e7o com nome inv\u00e1lido ignorado. + +#: Base.java:1202 +#, 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)=A biblioteca "{0}" n\u00e3o pode ser usada.\nOs nomes de biblioteca apenas podem conter letras b\u00e1sicas e d\u00edgitos.\n(apenas ASCII sem espa\u00e7os, e n\u00e3o podem come\u00e7ar por um digito) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Biblioteca com nome inv\u00e1lido ignorada + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problema ao obter pasta de dados + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Erro ao obter pasta de dados do Arduino. + +#: Base.java:1440 +Settings\ issues=Problemas de Configura\u00e7\u00e3o + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino n\u00e3o pode executar porque lhe foi imposs\u00edvel\ncriar uma pasta para armazenar as suas configura\u00e7\u00f5es. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Esqueceu o seu cat\u00e1logo + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino n\u00e3o pode executar porque lhe foi imposs\u00edvel\ncriar uma pasta para armazenar o seu cat\u00e1logo. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecione (ou crie uma nova) pasta para seus esbo\u00e7os... + +#: Base.java:1647 +Problem\ Opening\ URL=Problema ao abrir URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=N\u00e3o foi poss\u00edvel abrir o URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problema ao abrir a Pasta + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=N\u00e3o foi poss\u00edvel abrir a pasta\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=ambiente + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Mensagem + +#: Base.java:1842 +Warning=Alerta + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=N\u00e3o foi poss\u00edvel remover a vers\u00e3o antiga de {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=N\u00e3o foi poss\u00edvel substituir {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=N\u00e3o foi poss\u00edvel apagar {0} + +#: EditorHeader.java:292 +New\ Tab=Novo Separador + +#: EditorHeader.java:300 +Rename=Mudar o nome + +#: EditorHeader.java:326 +Previous\ Tab=Separador Anterior + +#: EditorHeader.java:340 +Next\ Tab=Separador Seguinte + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verificar + +#: EditorToolbar.java:41 +Open=Abrir + +#: EditorToolbar.java:46 +New\ Editor\ Window=Nova Janela de Edi\u00e7\u00e3o + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Abrir em outra Janela + +#: Platform.java:167 +No\ launcher\ available=Nenhum programa dispon\u00edvel. + +#: 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 programa dispon\u00edvel.\nPara permitir a abertura de endere\u00e7os URL ou de pastas, acrescente uma linha do tipo \n"launcher\=/path/to/app" no ficheiro preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=N\u00e3o consegui ler as prefer\u00eancias para o tema crom\u00e1tico.\nTer\u00e1 que voltar a instalar o Processing. + +#: Preferences.java:80 +Browse=Navegar + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Catal\u00e3o + +#: Preferences.java:87 +Chinese\ Simplified=Chin\u00eas Simplificado + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Dinamarqu\u00eas + +#: Preferences.java:90 +Dutch=Holand\u00eas + +#: Preferences.java:91 +English=Ingl\u00eas + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Franc\u00eas + +#: Preferences.java:94 +Filipino=Filipino + +#: Preferences.java:95 +Galician=Galego + +#: Preferences.java:96 +German=Alem\u00e3o + +#: Preferences.java:97 +Greek=Grego + +#: Preferences.java:98 +Hungarian=H\u00fangaro + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Italiano + +#: Preferences.java:101 +Japanese=Japon\u00eas + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Let\u00e3o + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Persa + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Romeno + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Espanhol + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o consegui ler as prefer\u00eancias por defeito.\nTer\u00e1 que voltar a instalar o Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=N\u00e3o consegui ler as prefer\u00eancias de {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Erro ao ler as prefer\u00eancias + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Erro ao ler o ficheiro de prefer\u00eancias. Por favor apague (ou mova)\n{0} e volte a iniciar o Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Localiza\u00e7\u00e3o do Cat\u00e1logo\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Escolha uma nova localiza\u00e7\u00e3o para o cat\u00e1logo. + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (requer reiniciar o Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Tamanho da fonte do editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Mostrar resultado verboso durante\: + +#: Preferences.java:373 +compilation\ =compila\u00e7\u00e3o + +#: Preferences.java:375 +upload=carregar + +#: Preferences.java:384 +Verify\ code\ after\ upload=Verifique o c\u00f3digo ap\u00f3s carregar + +#: Preferences.java:393 +Use\ external\ editor=Usar editor externo + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Procurar atualiza\u00e7\u00f5es durante o arranque + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Atualizar os ficheiros de esbo\u00e7o para a nova extens\u00e3o ao guardar (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Associar automaticamente ficheiros .ino com o Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Prefer\u00eancias adicionais pode ser editadas diretamente no ficheiro + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(editar apenas quando o Arduino n\u00e3o estiver a correr) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=tamanho {0} inv\u00e1lido para a fonte ignorado diff --git a/app/src/processing/app/Resources_ro.po b/app/src/processing/app/Resources_ro.po new file mode 100644 index 000000000..4f4b9bde8 --- /dev/null +++ b/app/src/processing/app/Resources_ro.po @@ -0,0 +1,1665 @@ +# Romanian translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Pop Gheorghe , 2012. +# Razvan Daniel Ionescu , 2012. +# +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: Pop Gheorghe <>\n" +"Language-Team: Romanian\n" +"Language: de\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Nici un fişier nu a fost adăugat schiţei." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Un fişier a fost adăugat schiţei." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} fişiere au fost adăugate schiţei." + +#: Editor.java:484 +msgid "File" +msgstr "Fişier" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nou" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Deschide..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Dosar cu schiţe" + +#: Editor.java:509 +msgid "Examples" +msgstr "Exemple" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Închide" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Salvează" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Salvează ca..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Încarcă" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Încarcă folosind programatorul" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Iniţializare pagină" + +#: Editor.java:564 +msgid "Print" +msgstr "Tipărire" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Preferinţe" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Ieşire" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Schiţă" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Verifică / Compilează" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Importă bibliotecă" + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Arată directorul schiţei" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Adaugă fişier..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Instrumente" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Monitorizare serială" + +#: Editor.java:682 +msgid "Board" +msgstr "Placă de dezvoltare" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Port serial" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programator" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Încărcă Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu este inexistent" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "numele este inexistent" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "eroare la încărcarea listei cu porturile disponibile" + +#: Editor.java:1002 +msgid "Help" +msgstr "Ajutor" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Primii paşi" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Mediul de dezvoltare" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Depanare" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Instrucţiuni" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Caută în instrucţiuni" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Întrebări şi răspunsuri" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Vizitaţi Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Despre Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Editare" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Anulează" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Refă" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Taie" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Copiază" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Copiază pentru forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Copiază ca şi HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Lipire" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Selectare totală" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Pune comentariu/Elimină comentariu" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Creşte spaţiere" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Redu spaţiere" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Caută..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Caută urmatorul..." + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Caută precedentul..." + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Foloseşte selecţia pentru căutare" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Mai întâi selectează un cuvânt pentru a fi căutat." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Nici un rezultat disponibil pentru \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Compilez schiţa..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Compilare terminată." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Salvaţi modificările pentru \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Doreşti să " +"salvezi modificările aduse acestei schiţe
înainte de a închide?

Dacă nu salvezi " +", modificările vor fi pierdute." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Renunţă" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Nu salva" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Fişierul selectat este invalid" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Se pot deschide doar propriile schiţe\n" +"sau alte fişiere cu extensia .ino sau .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Fişierul \"{0}\" trebuie sa fie în interiorul\n" +"unui director de schiţe numit \"{1}\".\n" +"Creez directorul, mut fişierul şi continui?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Deplasează" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Eroare" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Un director cu numele \"{0}\" există deja. Nu pot deschide schiţa." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Nu pot crea directorul pentru schiţe" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Nu am putut copia către locaţia adecvată." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Nu am putut crea schiţa." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Salvez..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Salvare finalizată." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Salvare anulată." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Portul serial {0} nu a fost găsit.\n" +"Doreşti să utilizezi un alt port serial?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Se încarcă în placa de dezvoltare..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Încărcare finalizată." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Încărcare anulată." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Salvaţi modificările înainte de a exporta?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Exportul a fost anulat, modificările trebuiesc întâi salvate." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Se încarcă bootloader-ul în placa de dezvoltare (acest lucru o sa dureze un pic)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Încărcarea bootloader-ului a fost finalizată." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Eroare în timpul încărcării bootloader-ului." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Tipăresc..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Tipărire finalizată." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Eroare în timpul tipăririi." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Tipărire anulată." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Linie eronată: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Deschide URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"O nouă versiune este disponibilă pentru Arduino IDE,\n" +"doreşti să vizitezi pagina de descărcări Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Da" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Nu" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Actualizează" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Caută:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Înlocuire cu:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignoră majuscule" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Contiunuă de la început" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Înlocuire peste tot" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Înlocuire" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Căutare şi înlocuire" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Anterior" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Caută" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Trimite" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Derulare automată" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Fără sfârşit de linie" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Linie nouă" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Revenire cursor (ENTER)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "NL & CR (linie noua şi enter)" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Portul serial ''{0}'' este deja în uz. Verifică ce programe îl folosesc \n" +"şi încearcă să le închizi." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Eroare la deschiderea portului serial ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Nu am găsit portul serial ''{0}''. Ai făcut corect selecţia în meniul \n" +"Instrumente > Port serial?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"Buffer prea mic pentru cei {0} bytes specificaţi ca parametru pentru funcţia readBytesUntil() " +"luând în considerare şi caracterul menţionat la {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Eroare în Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Auto formatare" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Nu a rezultat nici o modificare în urma auto formatării." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Auto formatare anulată: prea multe paranteze în partea dreaptă" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Auto formatare anulată: prea multe paranteze în partea stângă" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Auto formatare anulată: prea multe acolade în partea dreaptă" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Auto formatare anulată: prea multe acolade în partea stângă" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Auto formatare terminată" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Corectare codare & reiniţializează" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Anulează toate modificările şi reiniţializează schiţa" + +#: 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 "" +"A apărut o eroare în timpul corectării codării fişierului.\n" +"Nu salva aceasta schiţa deoarece se va suprascrie fişierul vechi.\n" +"Redeschide schiţa şi încearcă din nou.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arhivează schiţa" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Nu am putut arhiva schiţa" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Arhivarea schiţei a fost anulata deoarece\n" +"schiţa nu a putut fi salvată." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arhivez schiţa ca:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Arhivarea schiţei a fost anulată" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Eroare la încărcarea codului {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" conţine caractere necunoscute. Dacă acest cod a fost realizat " +"într-o versiune mai veche, încearcă sa foloseşti Instrumente-> Corectare codare & reiniţializează " +" pentru a modifica schiţa şi a folosi codarea UTF-8. În caz contrar " +"e nevoie să ştergi caracterele necunoscute pentru a înlătura acest avertisment." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Schiţa este doar în citire" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Unele fişiere sunt \"doar în citire\", va trebui\n" +"să salvaţi schiţele într-o alta locaţie şi\n" +"să reîncercaţi." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Numele noului fişier" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Schiţa nu are nume" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Ce zici dacă ai salva întâi schiţa \n" +"şi pe urma să încerci să o redenumeşti?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problemă la redenumire" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Numele nu poate începe cu un spaţiu" + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" nu este o extensie acceptata." + +#: Sketch.java:378 +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 "" +"Fişierul principal nu poate avea o extensie.\n" +"(Ar fi timpul sa urmezi un curs de programare\n" +"\"adevărat\")" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Naaa" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Un fişier numit \"{0}\" exista deja în \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Nu poţi avea un fişier .cpp cu acelaşi nume ca şi schiţa." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Nu poţi redenumi schiţa în \"{0}\"\n" +"deoarece aceasta schiţa are deja un fişier .cpp cu acelaşi nume." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Nu pot redenumi" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Îmi pare rău, o schiţă (sau director) cu numele de \"{0}\" există deja." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Nu pot redenumi schiţa. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Nu pot redenumi \"{0}\" în \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Nu pot redenumi schiţa. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Nu pot redenumi schiţa. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() a returnat fals" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Eşti sigur că doreşti să ştergi această schiţa?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Eşti sigur ca vrei să ştergi \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Ştergere" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Nu am putut să o fac" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Nu am putut şterge \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: internal error.. Nu am putut găsi codul" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Schiţa este doar în citire" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Unele schiţe sunt \"doar în citire\". Va trebui\n" +"să salvaţi aceste schiţe într-o locaţie diferită." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"În Arduino 1.0, extensia implicita pentru fişiere a fost schimbata\n" +"din .pde în .ino. Noile schiţe (incluzând cele create\n" +"cu \"Salvează ca\") vor utiliza noua extensie. Extensia\n" +"schiţelor existente va fi modificată odată cu salvarea acestor fişiere, dar puteţi\n" +"dezactiva aceasta opţiune din dialogul cu preferinţe.\n" +"\n" +"Salvează schiţa şi modifică extensia?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Salvează directorul schiţei ca..." + +#: Sketch.java:865 +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}\"\n" +"deoarece schiţa conţine deja un fişier .cpp cu acest nume." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Uau, i-ai tras un OZN aici" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Nu poţi salva o schiţă într-o altă schiţă.\n" +"Acest lucru ar putea dura o veşnicie." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Selectează o imagine sau un alt fişier pentru a-l copia în schiţă" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Înlocuieşte versiunea curenta pentru {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Eroare la adăugarea fişierului" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Nu s-a putut şterge fişierul ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Nu mă poţi păcăli" + +#: Sketch.java:1079 +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 "" +"Acest fişier a fost deja copiat în\n" +"locaţia în care încerci să-l adaugi.\n" +"Mă opresc aici." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Nu am putut sa adaug ''{0}'' la schiţă." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Directorul 'build' a dispărut sau nu poate fi scris" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Nu am găsit clasa 'main'" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Excepţie necunoscută: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problema la mutarea {0} către directorul 'build'" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Încărcare..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Dimensiunea schiţei: {0} bytes (din maxim {1} bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Nu am putut determina dimensiunea programului: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Schiţa este prea mare; vezi http://www.arduino.cc/en/Guide/Troubleshooting#size pentru " +"ponturi în reducerea acesteia." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Lipsa */ de la sfârşitul unui /* comentariu */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Schiţa a dispărut" + +#: Sketch.java:1797 +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 "" +"Directorul schiţei a dispărut.\n" +" Voi încerca să salvez din nou în aceiaşi locaţie,\n" +"dar se vor pierde orice alte informaţii, mai puţin codul." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Nu am putut re-salva schiţa." + +#: Sketch.java:1811 +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 "" +"Nu am putut re-salva schiţa. Pentru a evita problemele,\n" +"îţi recomand sa faci o copiere a codului într-un alt editor de text." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"A fost necesar să modific numele schiţei. Numele unei schiţe poate conţine\n" +"doar caractere ASCII şi numere (dar nu poate începe cu un număr).\n" +"De asemenea nu poate avea mai mult de 64 caractere." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Eroare de compilator, te rog trimite acest cod către {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"portul serial {0} nu există sau placa de dezvoltare nu este conectată" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Dispozitivul nu răspunde, verifică dacă ai selectat portul serial corect sau apasă RESET" +"înainte de a realiza exportul" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Probleme la încărcarea aplicaţiei. Vezi http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload pentru sugestii." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Microcontrolerul găsit nu este cel corect. Ai selectat placa de dezvoltare corectă din meniul Instrumente " +"> Placă de dezvoltare?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Nu este selectată nici o placă de dezvoltare; te rog alege una din meniul Instrumente > Placă de dezvoltare" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} a returnat {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Eroare de compilare" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Te rog importa biblioteca SPI din meniul Schiţe > Importă bibliotecă." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Începând cu versiunea Arduino 0019, biblioteca Ethernet depinde de biblioteca SPI.\n" +"Se pare ca mai folosiţi o bibliotecă care depinde de biblioteca " +"SPI.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Nu mai puteţi folosi cuvântul cheie 'BYTE'." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Începând cu versiunea Arduino 1.0 cuvântul cheie 'BYTE' nu mai poate fi folosit.\n" +"Ca alternativă puteţi folosi Serial.write().\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Clasa Server a fost redenumită în EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Începând cu versiunea Arduino 1.0, clasa Server, din biblioteca Ethernet, a fost redenumită " +"în EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Clasa client a fost redenumită în EthernetClient" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Începând cu versiunea Arduino 1.0, clasa Client, din biblioteca Ethernet, a fost redenumită " +"în EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Clasa Udp a fost redenumită în EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Începând cu versiunea Arduino 1.0, clasa Udp, din biblioteca Ethernet, a fost redenumită " +"în EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() a fost redenumit în Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Începând cu versiunea Arduino 1.0, funcţia Wire.send() a fost redenumită în Wire.write() pentru " +"a păstra compatibilitatea cu alte librarii.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() a fost redenumit in Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Începând cu versiunea Arduino 1.0, funcţia Wire.receive() a fost redenumită în Wire.read() pentru " +"a păstra compatibilitatea cu alte biblioteci.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Consola de erori" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"O problema a apărut în timp ce încercam sa deschid\n" +"fişierul folosit pentru stocarea datelor din consolă." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Eroare non-fatala în timpul iniţializării interfeţei cu utilizatorul" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Mesajul de eroare ar trebui să apară, totuşi Arduino ar trebui să funcţioneze fără probleme" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Probleme la iniţializarea platformei de dezvoltare" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"O eroare necunoscută în timp ce se încarca\n" +"codul specific pentru sistemul tău de operare." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Te rog instalează JDK 1.5 sau mai recent." + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Nu este suficient JRE (Java Runtime Enviroment)\n" +"pentru a rula Arduino IDE. Te rog instalează JDK 1.5 sau mai recent.\n" +"Mai multe informaţii se pot găsi în zona de referinţe." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Dosarul cu schiţe a dispărut" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Dosarul cu schiţe nu mai există.\n" +"Arduino va comuta pe locaţia implicită a directorului\n" +"de schiţe, şi dacă e necesar va crea un nou dosar cu schiţe.\n" +" Arduino nu va mai vorbi despre el\n" +"la persoana a treia." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "E timpul pentru o pauză" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Ai atins limita la autodenumire a schiţelor noi\n" +"pentru ziua de azi. Nu crezi ca ar fi mai bine faci o plimbare decât să continui?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Răsăritul" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Pe bune, e timpul sa ieşi la aer." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Deschide o nouă schiţa Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Sunteţi sigur " +"că doriţi să părăsiţi aplicaţia?

Închizând ultima schiţa se va închide şi Arduino IDE." + +#: Base.java:970 +msgid "Contributed" +msgstr "Contribuţie" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Schiţa nu există" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Schiţa selectata nu mai există.\n" +"S-ar putea să fie nevoie sa reporneşti programul\n" +"pentru a actualiza meniul dosarului de schiţe." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Schita \"{0}\" nu poate fi folosita.\n" +"Numele schiţei trebuie să conţină doar litere şi numere\n" +"(ASCII-fără spaţii, şi numele nu poate începe cu un număr).\n" +"Pentru a înlătura acest mesaj, eliminaţi schiţa din\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Se ignoră schiţa cu nume greşit" + +#: Base.java:1202 +#, java-format +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 "" +"Biblioteca \"{0}\" nu poate fi folosită.\n" +"Numele bibliotecii trebuie să conţină doar litere şi numere.\n" +"(ASCII-fără spatii, şi numele nu poate începe cu un număr)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Se ignoră biblioteca cu numele greşit" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problema la preluarea directorului de date" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Eroare la preluarea directorului cu date pentru Arduino" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Probleme la setări" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino nu a putut porni deoarece\n" +"nu poate crea un director în care să-şi salveze setările." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Ai uitat dosarul cu schiţe" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino nu a putut porni deoarece\n" +"nu poate crea un director în care sa salveze dosarul cu schiţe." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Selectează (sau creează un nou) director pentru schiţe..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problema in deschiderea URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Nu se poate deschide URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problema la deschiderea directorului" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Nu se poate deschide directorul\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "mediu de programare" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Mesaj" + +#: Base.java:1842 +msgid "Warning" +msgstr "Avertisment" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Nu se poate înlătura vechea versiune pentru {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Nu se poate înlocui {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Nu se poate şterge {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Fila nouă" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Redenumire" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Fila precedentă" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Fila următoare" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Verifică" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Deschide" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Fereastră nouă" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Deschide într-o nouă fereastră" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Nu este disponibil nici un lansator" + +#: 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 "" +"Platformă nespecificată, lansator indisponibil.\n" +"Pentru a permite deschiderea URL-urilor sau a directoarelor, adaugaţi următoarea linie \n" +"\"launcher=/calea/către/aplicaţie\" în fişierul preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Nu pot citi setările culorilor pentru tema.\n" +"Este necesară reinstalarea aplicaţiei." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Răsfoire" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Catalană" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Chineză simplificată" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Daneză" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Olandeză" + +#: Preferences.java:91 +msgid "English" +msgstr "Engleză" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "Franceză" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipineză" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galeză" + +#: Preferences.java:96 +msgid "German" +msgstr "Germană" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Greacă" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Maghiară" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italiană" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Japoneză" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Letonă" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persană" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Română" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Spaniolă" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Nu s-a putut citi setările implicite.\n" +"Va trebui să reinstalezi Arduino IDE." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Nu se pot citi preferinţele din {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Eroare la citirea preferinţelor" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Eroare la citirea fişierului cu preferinţe. Te rog şterge (sau mută) acest fişier\n" +"{0} şi reporneşte Arduino IDE." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Locaţia dosarului cu schiţe:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Selectează noua locaţie pentru dosarul cu schiţe" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (este necesară repornirea editorului)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Mărimea caracterelor pentru editor:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Detaliază informaţiile de ieşire în timpul: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilării" + +#: Preferences.java:375 +msgid "upload" +msgstr "încărcării" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Verifică codul după încarcare" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Foloseşte un editor extern" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Caută actualizări la pornirea programului" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Se schimba extensia fişierelor schiţă la salvare (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Asociază fişierele .ino cu Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Alte preferinţe pot fi editate direct în fişier" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(editează doar atunci când Arduino IDE nu funcţionează)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "ignoră dimensiunea incorectă pentru fontul {0}" diff --git a/app/src/processing/app/Resources_ro.properties b/app/src/processing/app/Resources_ro.properties new file mode 100644 index 000000000..86ae98c68 --- /dev/null +++ b/app/src/processing/app/Resources_ro.properties @@ -0,0 +1,1036 @@ +# Romanian translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Pop Gheorghe , 2012. +# Razvan Daniel Ionescu , 2012. +# +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: Pop Gheorghe <>\nLanguage-Team\: Romanian\nLanguage\: de\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Nici un fi\u015fier nu a fost ad\u0103ugat schi\u0163ei. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Un fi\u015fier a fost ad\u0103ugat schi\u0163ei. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} fi\u015fiere au fost ad\u0103ugate schi\u0163ei. + +#: Editor.java:484 +File=Fi\u015fier + +#: Editor.java:486 EditorToolbar.java:41 +New=Nou + +#: Editor.java:494 Base.java:903 +Open...=Deschide... + +#: Editor.java:503 +Sketchbook=Dosar cu schi\u0163e + +#: Editor.java:509 +Examples=Exemple + +#: Editor.java:514 Editor.java:1977 +Close=\u00cenchide + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Salveaz\u0103 + +#: Editor.java:530 +Save\ As...=Salveaz\u0103 ca... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u00cencarc\u0103 + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u00cencarc\u0103 folosind programatorul + +#: Editor.java:556 +Page\ Setup=Ini\u0163ializare pagin\u0103 + +#: Editor.java:564 +Print=Tip\u0103rire + +#: Editor.java:576 Preferences.java:279 +Preferences=Preferin\u0163e + +#: Editor.java:586 Base.java:782 +Quit=Ie\u015fire + +#: Editor.java:600 +Sketch=Schi\u0163\u0103 + +#: Editor.java:602 +Verify\ /\ Compile=Verific\u0103 / Compileaz\u0103 + +#: Editor.java:629 +Import\ Library...=Import\u0103 bibliotec\u0103 + +#: Editor.java:634 +Show\ Sketch\ Folder=Arat\u0103 directorul schi\u0163ei + +#: Editor.java:643 +Add\ File...=Adaug\u0103 fi\u015fier... + +#: Editor.java:656 +Tools=Instrumente + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Monitorizare serial\u0103 + +#: Editor.java:682 +Board=Plac\u0103 de dezvoltare + +#: Editor.java:690 +Serial\ Port=Port serial + +#: Editor.java:695 +Programmer=Programator + +#: Editor.java:699 +Burn\ Bootloader=\u00cenc\u0103rc\u0103 Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu este inexistent + +#: Editor.java:927 Editor.java:934 +name\ is\ null=numele este inexistent + +#: Editor.java:986 +error\ retrieving\ port\ list=eroare la \u00eenc\u0103rcarea listei cu porturile disponibile + +#: Editor.java:1002 +Help=Ajutor + +#: Editor.java:1041 +Getting\ Started=Primii pa\u015fi + +#: Editor.java:1049 +Environment=Mediul de dezvoltare + +#: Editor.java:1057 +Troubleshooting=Depanare + +#: Editor.java:1065 +Reference=Instruc\u0163iuni + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Caut\u0103 \u00een instruc\u0163iuni + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u00centreb\u0103ri \u015fi r\u0103spunsuri + +#: Editor.java:1091 +Visit\ Arduino.cc=Vizita\u0163i Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Despre Arduino + +#: Editor.java:1116 +Edit=Editare + +#: Editor.java:1119 Editor.java:1341 +Undo=Anuleaz\u0103 + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Ref\u0103 + +#: Editor.java:1135 Editor.java:2652 +Cut=Taie + +#: Editor.java:1143 Editor.java:2660 +Copy=Copiaz\u0103 + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Copiaz\u0103 pentru forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Copiaz\u0103 ca \u015fi HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Lipire + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Selectare total\u0103 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Pune comentariu/Elimin\u0103 comentariu + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Cre\u015fte spa\u0163iere + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Redu spa\u0163iere + +#: Editor.java:1220 +Find...=Caut\u0103... + +#: Editor.java:1235 +Find\ Next=Caut\u0103 urmatorul... + +#: Editor.java:1245 +Find\ Previous=Caut\u0103 precedentul... + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Folose\u015fte selec\u0163ia pentru c\u0103utare + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Mai \u00eent\u00e2i selecteaz\u0103 un cuv\u00e2nt pentru a fi c\u0103utat. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Nici un rezultat disponibil pentru "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Compilez schi\u0163a... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Compilare terminat\u0103. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Salva\u0163i modific\u0103rile pentru "{0}"? + +#: Editor.java:2006 +\ \ 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.= Dore\u015fti s\u0103 salvezi modific\u0103rile aduse acestei schi\u0163e
\u00eenainte de a \u00eenchide?

Dac\u0103 nu salvezi , modific\u0103rile vor fi pierdute. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Renun\u0163\u0103 + +#: Editor.java:2017 +Don't\ Save=Nu salva + +#: Editor.java:2089 +Bad\ file\ selected=Fi\u015fierul selectat este invalid + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Se pot deschide doar propriile schi\u0163e\nsau alte fi\u015fiere cu extensia .ino sau .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Fi\u015fierul "{0}" trebuie sa fie \u00een interiorul\nunui director de schi\u0163e numit "{1}".\nCreez directorul, mut fi\u015fierul \u015fi continui? + +#: Editor.java:2109 +Moving=Deplaseaz\u0103 + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Eroare + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Un director cu numele "{0}" exist\u0103 deja. Nu pot deschide schi\u0163a. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Nu pot crea directorul pentru schi\u0163e + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Nu am putut copia c\u0103tre loca\u0163ia adecvat\u0103. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Nu am putut crea schi\u0163a. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Salvez... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Salvare finalizat\u0103. + +#: Editor.java:2270 +Save\ Canceled.=Salvare anulat\u0103. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Portul serial {0} nu a fost g\u0103sit.\nDore\u015fti s\u0103 utilizezi un alt port serial? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Se \u00eencarc\u0103 \u00een placa de dezvoltare... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u00cenc\u0103rcare finalizat\u0103. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u00cenc\u0103rcare anulat\u0103. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Salva\u0163i modific\u0103rile \u00eenainte de a exporta? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportul a fost anulat, modific\u0103rile trebuiesc \u00eent\u00e2i salvate. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Se \u00eencarc\u0103 bootloader-ul \u00een placa de dezvoltare (acest lucru o sa dureze un pic)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u00cenc\u0103rcarea bootloader-ului a fost finalizat\u0103. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Eroare \u00een timpul \u00eenc\u0103rc\u0103rii bootloader-ului. + +#: Editor.java:2500 +Printing...=Tip\u0103resc... + +#: Editor.java:2517 +Done\ printing.=Tip\u0103rire finalizat\u0103. + +#: Editor.java:2520 +Error\ while\ printing.=Eroare \u00een timpul tip\u0103ririi. + +#: Editor.java:2524 +Printing\ canceled.=Tip\u0103rire anulat\u0103. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Linie eronat\u0103\: {0} + +#: Editor.java:2641 +Open\ URL=Deschide URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=O nou\u0103 versiune este disponibil\u0103 pentru Arduino IDE,\ndore\u015fti s\u0103 vizitezi pagina de desc\u0103rc\u0103ri Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Da + +#: UpdateCheck.java:108 Preferences.java:77 +No=Nu + +#: UpdateCheck.java:111 +Update=Actualizeaz\u0103 + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Caut\u0103\: + +#: FindReplace.java:81 +Replace\ with\:=\u00cenlocuire cu\: + +#: FindReplace.java:96 +Ignore\ Case=Ignor\u0103 majuscule + +#: FindReplace.java:105 +Wrap\ Around=Contiunu\u0103 de la \u00eenceput + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u00cenlocuire peste tot + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u00cenlocuire + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=C\u0103utare \u015fi \u00eenlocuire + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Anterior + +#: FindReplace.java:124 FindReplace.java:127 +Find=Caut\u0103 + +#: SerialMonitor.java:93 +Send=Trimite + +#: SerialMonitor.java:110 +Autoscroll=Derulare automat\u0103 + +#: SerialMonitor.java:112 +No\ line\ ending=F\u0103r\u0103 sf\u00e2r\u015fit de linie + +#: SerialMonitor.java:112 +Newline=Linie nou\u0103 + +#: SerialMonitor.java:112 +Carriage\ return=Revenire cursor (ENTER) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=NL & CR (linie noua \u015fi enter) + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Portul serial ''{0}'' este deja \u00een uz. Verific\u0103 ce programe \u00eel folosesc \n\u015fi \u00eencearc\u0103 s\u0103 le \u00eenchizi. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=Eroare la deschiderea portului serial ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Nu am g\u0103sit portul serial ''{0}''. Ai f\u0103cut corect selec\u0163ia \u00een meniul \nInstrumente > Port serial? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Buffer prea mic pentru cei {0} bytes specifica\u0163i ca parametru pentru func\u0163ia readBytesUntil() lu\u00e2nd \u00een considerare \u015fi caracterul men\u0163ionat la {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Eroare \u00een Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Auto formatare + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=Nu a rezultat nici o modificare \u00een urma auto format\u0103rii. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Auto formatare anulat\u0103\: prea multe paranteze \u00een partea dreapt\u0103 + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Auto formatare anulat\u0103\: prea multe paranteze \u00een partea st\u00e2ng\u0103 + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Auto formatare anulat\u0103\: prea multe acolade \u00een partea dreapt\u0103 + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Auto formatare anulat\u0103\: prea multe acolade \u00een partea st\u00e2ng\u0103 + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Auto formatare terminat\u0103 + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Corectare codare & reini\u0163ializeaz\u0103 + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Anuleaz\u0103 toate modific\u0103rile \u015fi reini\u0163ializeaz\u0103 schi\u0163a + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=A ap\u0103rut o eroare \u00een timpul corect\u0103rii cod\u0103rii fi\u015fierului.\nNu salva aceasta schi\u0163a deoarece se va suprascrie fi\u015fierul vechi.\nRedeschide schi\u0163a \u015fi \u00eencearc\u0103 din nou.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Arhiveaz\u0103 schi\u0163a + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Nu am putut arhiva schi\u0163a + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arhivarea schi\u0163ei a fost anulata deoarece\nschi\u0163a nu a putut fi salvat\u0103. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arhivez schi\u0163a ca\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Arhivarea schi\u0163ei a fost anulat\u0103 + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Eroare la \u00eenc\u0103rcarea codului {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" con\u0163ine caractere necunoscute. Dac\u0103 acest cod a fost realizat \u00eentr-o versiune mai veche, \u00eencearc\u0103 sa folose\u015fti Instrumente-> Corectare codare & reini\u0163ializeaz\u0103 pentru a modifica schi\u0163a \u015fi a folosi codarea UTF-8. \u00cen caz contrar e nevoie s\u0103 \u015ftergi caracterele necunoscute pentru a \u00eenl\u0103tura acest avertisment. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Schi\u0163a este doar \u00een citire + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Unele fi\u015fiere sunt "doar \u00een citire", va trebui\ns\u0103 salva\u0163i schi\u0163ele \u00eentr-o alta loca\u0163ie \u015fi\ns\u0103 re\u00eencerca\u0163i. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Numele noului fi\u015fier + +#: Sketch.java:298 +Sketch\ is\ Untitled=Schi\u0163a nu are nume + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Ce zici dac\u0103 ai salva \u00eent\u00e2i schi\u0163a \n\u015fi pe urma s\u0103 \u00eencerci s\u0103 o redenume\u015fti? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Problem\u0103 la redenumire + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Numele nu poate \u00eencepe cu un spa\u0163iu + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" nu este o extensie acceptata. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Fi\u015fierul principal nu poate avea o extensie.\n(Ar fi timpul sa urmezi un curs de programare\n"adev\u0103rat") + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Naaa + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Un fi\u015fier numit "{0}" exista deja \u00een "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nu po\u0163i avea un fi\u015fier .cpp cu acela\u015fi nume ca \u015fi schi\u0163a. + +#: Sketch.java:425 +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:459 +Cannot\ Rename=Nu pot redenumi + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u00cemi pare r\u0103u, o schi\u0163\u0103 (sau director) cu numele de "{0}" exist\u0103 deja. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Nu pot redenumi schi\u0163a. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Nu pot redenumi "{0}" \u00een "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Nu pot redenumi schi\u0163a. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Nu pot redenumi schi\u0163a. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() a returnat fals + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=E\u015fti sigur c\u0103 dore\u015fti s\u0103 \u015ftergi aceast\u0103 schi\u0163a? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=E\u015fti sigur ca vrei s\u0103 \u015ftergi "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u015etergere + +#: Sketch.java:620 +Couldn't\ do\ it=Nu am putut s\u0103 o fac + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Nu am putut \u015fterge "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. Nu am putut g\u0103si codul + +#: Sketch.java:724 +Sketch\ is\ read-only=Schi\u0163a este doar \u00een citire + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Unele schi\u0163e sunt "doar \u00een citire". Va trebui\ns\u0103 salva\u0163i aceste schi\u0163e \u00eentr-o loca\u0163ie diferit\u0103. + +#: Sketch.java:743 +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?=\u00cen Arduino 1.0, extensia implicita pentru fi\u015fiere a fost schimbata\ndin .pde \u00een .ino. Noile schi\u0163e (incluz\u00e2nd cele create\ncu "Salveaz\u0103 ca") vor utiliza noua extensie. Extensia\nschi\u0163elor existente va fi modificat\u0103 odat\u0103 cu salvarea acestor fi\u015fiere, dar pute\u0163i\ndezactiva aceasta op\u0163iune din dialogul cu preferin\u0163e.\n\nSalveaz\u0103 schi\u0163a \u015fi modific\u0103 extensia? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Salveaz\u0103 directorul schi\u0163ei ca... + +#: Sketch.java:865 +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. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Uau, i-ai tras un OZN aici + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nu po\u0163i salva o schi\u0163\u0103 \u00eentr-o alt\u0103 schi\u0163\u0103.\nAcest lucru ar putea dura o ve\u015fnicie. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecteaz\u0103 o imagine sau un alt fi\u015fier pentru a-l copia \u00een schi\u0163\u0103 + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=\u00cenlocuie\u015fte versiunea curenta pentru {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Eroare la ad\u0103ugarea fi\u015fierului + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Nu s-a putut \u015fterge fi\u015fierul ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Nu m\u0103 po\u0163i p\u0103c\u0103li + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Acest fi\u015fier a fost deja copiat \u00een\nloca\u0163ia \u00een care \u00eencerci s\u0103-l adaugi.\nM\u0103 opresc aici. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Nu am putut sa adaug ''{0}'' la schi\u0163\u0103. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directorul 'build' a disp\u0103rut sau nu poate fi scris + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Nu am g\u0103sit clasa 'main' + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Excep\u0163ie necunoscut\u0103\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problema la mutarea {0} c\u0103tre directorul 'build' + +#: Sketch.java:1661 +Uploading...=\u00cenc\u0103rcare... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Dimensiunea schi\u0163ei\: {0} bytes (din maxim {1} bytes) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Nu am putut determina dimensiunea programului\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Schi\u0163a este prea mare; vezi http\://www.arduino.cc/en/Guide/Troubleshooting\#size pentru ponturi \u00een reducerea acesteia. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Lipsa */ de la sf\u00e2r\u015fitul unui /* comentariu */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Schi\u0163a a disp\u0103rut + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Directorul schi\u0163ei a disp\u0103rut.\n Voi \u00eencerca s\u0103 salvez din nou \u00een aceia\u015fi loca\u0163ie,\ndar se vor pierde orice alte informa\u0163ii, mai pu\u0163in codul. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Nu am putut re-salva schi\u0163a. + +#: Sketch.java:1811 +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.=Nu am putut re-salva schi\u0163a. Pentru a evita problemele,\n\u00ee\u0163i recomand sa faci o copiere a codului \u00eentr-un alt editor de text. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=A fost necesar s\u0103 modific numele schi\u0163ei. Numele unei schi\u0163e poate con\u0163ine\ndoar caractere ASCII \u015fi numere (dar nu poate \u00eencepe cu un num\u0103r).\nDe asemenea nu poate avea mai mult de 64 caractere. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Eroare de compilator, te rog trimite acest cod c\u0103tre {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=portul serial {0} nu exist\u0103 sau placa de dezvoltare nu este conectat\u0103 + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Dispozitivul nu r\u0103spunde, verific\u0103 dac\u0103 ai selectat portul serial corect sau apas\u0103 RESET\u00eenainte de a realiza exportul + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleme la \u00eenc\u0103rcarea aplica\u0163iei. Vezi http\://www.arduino.cc/en/Guide/Troubleshooting\#upload pentru sugestii. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Microcontrolerul g\u0103sit nu este cel corect. Ai selectat placa de dezvoltare corect\u0103 din meniul Instrumente > Plac\u0103 de dezvoltare? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nu este selectat\u0103 nici o plac\u0103 de dezvoltare; te rog alege una din meniul Instrumente > Plac\u0103 de dezvoltare + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} a returnat {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Eroare de compilare + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Te rog importa biblioteca SPI din meniul Schi\u0163e > Import\u0103 bibliotec\u0103. + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 0019, biblioteca Ethernet depinde de biblioteca SPI.\nSe pare ca mai folosi\u0163i o bibliotec\u0103 care depinde de biblioteca SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Nu mai pute\u0163i folosi cuv\u00e2ntul cheie 'BYTE'. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0 cuv\u00e2ntul cheie 'BYTE' nu mai poate fi folosit.\nCa alternativ\u0103 pute\u0163i folosi Serial.write().\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Clasa Server a fost redenumit\u0103 \u00een EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, clasa Server, din biblioteca Ethernet, a fost redenumit\u0103 \u00een EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Clasa client a fost redenumit\u0103 \u00een EthernetClient + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, clasa Client, din biblioteca Ethernet, a fost redenumit\u0103 \u00een EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Clasa Udp a fost redenumit\u0103 \u00een EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, clasa Udp, din biblioteca Ethernet, a fost redenumit\u0103 \u00een EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() a fost redenumit \u00een Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, func\u0163ia Wire.send() a fost redenumit\u0103 \u00een Wire.write() pentru a p\u0103stra compatibilitatea cu alte librarii.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() a fost redenumit in Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, func\u0163ia Wire.receive() a fost redenumit\u0103 \u00een Wire.read() pentru a p\u0103stra compatibilitatea cu alte biblioteci.\n\n + +#: EditorConsole.java:152 +Console\ Error=Consola de erori + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=O problema a ap\u0103rut \u00een timp ce \u00eencercam sa deschid\nfi\u015fierul folosit pentru stocarea datelor din consol\u0103. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Eroare non-fatala \u00een timpul ini\u0163ializ\u0103rii interfe\u0163ei cu utilizatorul + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Mesajul de eroare ar trebui s\u0103 apar\u0103, totu\u015fi Arduino ar trebui s\u0103 func\u0163ioneze f\u0103r\u0103 probleme + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Probleme la ini\u0163ializarea platformei de dezvoltare + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=O eroare necunoscut\u0103 \u00een timp ce se \u00eencarca\ncodul specific pentru sistemul t\u0103u de operare. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Te rog instaleaz\u0103 JDK 1.5 sau mai recent. + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Nu este suficient JRE (Java Runtime Enviroment)\npentru a rula Arduino IDE. Te rog instaleaz\u0103 JDK 1.5 sau mai recent.\nMai multe informa\u0163ii se pot g\u0103si \u00een zona de referin\u0163e. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Dosarul cu schi\u0163e a disp\u0103rut + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Dosarul cu schi\u0163e nu mai exist\u0103.\nArduino va comuta pe loca\u0163ia implicit\u0103 a directorului\nde schi\u0163e, \u015fi dac\u0103 e necesar va crea un nou dosar cu schi\u0163e.\n Arduino nu va mai vorbi despre el\nla persoana a treia. + +#: Base.java:532 +Time\ for\ a\ Break=E timpul pentru o pauz\u0103 + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Ai atins limita la autodenumire a schi\u0163elor noi\npentru ziua de azi. Nu crezi ca ar fi mai bine faci o plimbare dec\u00e2t s\u0103 continui? + +#: Base.java:537 +Sunshine=R\u0103s\u0103ritul + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Pe bune, e timpul sa ie\u015fi la aer. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Deschide o nou\u0103 schi\u0163a Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Sunte\u0163i sigur c\u0103 dori\u0163i s\u0103 p\u0103r\u0103si\u0163i aplica\u0163ia?

\u00cenchiz\u00e2nd ultima schi\u0163a se va \u00eenchide \u015fi Arduino IDE. + +#: Base.java:970 +Contributed=Contribu\u0163ie + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Schi\u0163a nu exist\u0103 + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Schi\u0163a selectata nu mai exist\u0103.\nS-ar putea s\u0103 fie nevoie sa reporne\u015fti programul\npentru a actualiza meniul dosarului de schi\u0163e. + +#: Base.java:1125 +#, 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}=Schita "{0}" nu poate fi folosita.\nNumele schi\u0163ei trebuie s\u0103 con\u0163in\u0103 doar litere \u015fi numere\n(ASCII-f\u0103r\u0103 spa\u0163ii, \u015fi numele nu poate \u00eencepe cu un num\u0103r).\nPentru a \u00eenl\u0103tura acest mesaj, elimina\u0163i schi\u0163a din\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Se ignor\u0103 schi\u0163a cu nume gre\u015fit + +#: Base.java:1202 +#, 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)=Biblioteca "{0}" nu poate fi folosit\u0103.\nNumele bibliotecii trebuie s\u0103 con\u0163in\u0103 doar litere \u015fi numere.\n(ASCII-f\u0103r\u0103 spatii, \u015fi numele nu poate \u00eencepe cu un num\u0103r) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Se ignor\u0103 biblioteca cu numele gre\u015fit + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problema la preluarea directorului de date + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Eroare la preluarea directorului cu date pentru Arduino + +#: Base.java:1440 +Settings\ issues=Probleme la set\u0103ri + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nu a putut porni deoarece\nnu poate crea un director \u00een care s\u0103-\u015fi salveze set\u0103rile. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Ai uitat dosarul cu schi\u0163e + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nu a putut porni deoarece\nnu poate crea un director \u00een care sa salveze dosarul cu schi\u0163e. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecteaz\u0103 (sau creeaz\u0103 un nou) director pentru schi\u0163e... + +#: Base.java:1647 +Problem\ Opening\ URL=Problema in deschiderea URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Nu se poate deschide URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problema la deschiderea directorului + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Nu se poate deschide directorul\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=mediu de programare + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Mesaj + +#: Base.java:1842 +Warning=Avertisment + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Nu se poate \u00eenl\u0103tura vechea versiune pentru {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Nu se poate \u00eenlocui {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Nu se poate \u015fterge {0} + +#: EditorHeader.java:292 +New\ Tab=Fila nou\u0103 + +#: EditorHeader.java:300 +Rename=Redenumire + +#: EditorHeader.java:326 +Previous\ Tab=Fila precedent\u0103 + +#: EditorHeader.java:340 +Next\ Tab=Fila urm\u0103toare + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Verific\u0103 + +#: EditorToolbar.java:41 +Open=Deschide + +#: EditorToolbar.java:46 +New\ Editor\ Window=Fereastr\u0103 nou\u0103 + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Deschide \u00eentr-o nou\u0103 fereastr\u0103 + +#: Platform.java:167 +No\ launcher\ available=Nu este disponibil nici un lansator + +#: 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\=/calea/c\u0103tre/aplica\u0163ie" \u00een fi\u015fierul preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nu pot citi set\u0103rile culorilor pentru tema.\nEste necesar\u0103 reinstalarea aplica\u0163iei. + +#: Preferences.java:80 +Browse=R\u0103sfoire + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Catalan\u0103 + +#: Preferences.java:87 +Chinese\ Simplified=Chinez\u0103 simplificat\u0103 + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Danez\u0103 + +#: Preferences.java:90 +Dutch=Olandez\u0103 + +#: Preferences.java:91 +English=Englez\u0103 + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=Francez\u0103 + +#: Preferences.java:94 +Filipino=Filipinez\u0103 + +#: Preferences.java:95 +Galician=Galez\u0103 + +#: Preferences.java:96 +German=German\u0103 + +#: Preferences.java:97 +Greek=Greac\u0103 + +#: Preferences.java:98 +Hungarian=Maghiar\u0103 + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Italian\u0103 + +#: Preferences.java:101 +Japanese=Japonez\u0103 + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Leton\u0103 + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Persan\u0103 + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Rom\u00e2n\u0103 + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Spaniol\u0103 + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nu s-a putut citi set\u0103rile implicite.\nVa trebui s\u0103 reinstalezi Arduino IDE. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Nu se pot citi preferin\u0163ele din {0} + +#: Preferences.java:261 +Error\ reading\ preferences=Eroare la citirea preferin\u0163elor + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Eroare la citirea fi\u015fierului cu preferin\u0163e. Te rog \u015fterge (sau mut\u0103) acest fi\u015fier\n{0} \u015fi reporne\u015fte Arduino IDE. + +#: Preferences.java:299 +Sketchbook\ location\:=Loca\u0163ia dosarului cu schi\u0163e\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Selecteaz\u0103 noua loca\u0163ie pentru dosarul cu schi\u0163e + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (este necesar\u0103 repornirea editorului) + +#: Preferences.java:354 +Editor\ font\ size\:\ =M\u0103rimea caracterelor pentru editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Detaliaz\u0103 informa\u0163iile de ie\u015fire \u00een timpul\: + +#: Preferences.java:373 +compilation\ =compil\u0103rii + +#: Preferences.java:375 +upload=\u00eenc\u0103rc\u0103rii + +#: Preferences.java:384 +Verify\ code\ after\ upload=Verific\u0103 codul dup\u0103 \u00eencarcare + +#: Preferences.java:393 +Use\ external\ editor=Folose\u015fte un editor extern + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Caut\u0103 actualiz\u0103ri la pornirea programului + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Se schimba extensia fi\u015fierelor schi\u0163\u0103 la salvare (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Asociaz\u0103 fi\u015fierele .ino cu Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Alte preferin\u0163e pot fi editate direct \u00een fi\u015fier + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(editeaz\u0103 doar atunci c\u00e2nd Arduino IDE nu func\u0163ioneaz\u0103) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=ignor\u0103 dimensiunea incorect\u0103 pentru fontul {0} diff --git a/app/src/processing/app/Resources_ru.po b/app/src/processing/app/Resources_ru.po new file mode 100644 index 000000000..be1f4b1b3 --- /dev/null +++ b/app/src/processing/app/Resources_ru.po @@ -0,0 +1,1660 @@ +# Russian translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# David A. Mellis <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-04-02 09:00+0800\n" +"PO-Revision-Date: 2012-04-09 18:26+0800\n" +"Last-Translator: Stanislav I. Ashmanov and Evgeniy Maskalev <>\n" +"Language-Team: Russian\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Файлы не добавлены." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Один файл добавлен к скетчу." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "К скетчу было добавлено файлов: {0}." + +#: Editor.java:484 +msgid "File" +msgstr "Файл" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Создать" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Открыть..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Папка со скетчами" + +#: Editor.java:509 +msgid "Examples" +msgstr "Примеры" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Закрыть" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Сохранить" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Сохранить как..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Загрузить" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Загрузить с помощью программатора" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Настройки печати" + +#: Editor.java:564 +msgid "Print" +msgstr "Печать" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Настройки" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Выход" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Скетч" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Проверить / Компилировать" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Импортировать библиотеку..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Показать папку скетчей" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Добавить файл..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Сервис" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Монитор порта" + +#: Editor.java:682 +msgid "Board" +msgstr "Плата" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Последовательный порт" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Программатор" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Записать загрузчик" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "Меню последовательного порта пусто" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "нет имени" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "ошибка получения списка портов" + +#: Editor.java:1002 +msgid "Help" +msgstr "Справка" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Начало работы" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Среда разработки" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Поиск неполадок" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Содержание" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Найти в справке" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Часто задаваемые вопросы" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Перейти на Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "О программе" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Правка" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Отменить" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Вернуть" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Вырезать" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Копировать" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Копировать для форума" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Копировать как HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Вставить" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Выделить всё" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Комментировать/Раскомментировать" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Увеличить отступ" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Уменьшить отступ" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Найти..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Найти следующее" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Найти предыдущее" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Найти выбранное" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Сначала выберите слово для поиска в справке" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Нет ссылок для \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Компилирование..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Компилирование выполнено" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Сохранить изменения в \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" Вы " +"хотите сохранить изменения в этом скетче
перед закрытием?

Если вы " +"не сохраните, все изменения будут утеряны." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Отмена" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Не сохранять" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Выбран неправильный файл" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing может открывать свои скетчи\n" +"и другие файлы, заканчивающиеся .ino или .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "ОК" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Файл \"{0}\" должен быть внутри\n" +"папки скетча с именем \"{1}\".\n" +"Создать эту папку, переместить файл и продолжить?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Перемещение" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Ошибка" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Папка с именем \"{0}\" уже существует. Невозможно открыть скетч." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Невозможно создать папку скетча." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Невозможно скопировать в нужное место." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Невозможно создать скетч" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Сохранение..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Сохранение выполнено." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Сохранение отменено." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Последовательный порт {0} не найден.\n" +"Повторить загрузку с другим последовательным портом?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Загрузка на плату ввода/вывода..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Загрузка выполнена." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Загрузка отменена" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Сохранить изменения перед экспортом?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Экспорт отменён, сначала сохраните изменения." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Запись загрузчика на плату ввода/вывода (минуточку)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Запись загрузчика выполнена." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Ошибка при записи загрузчика." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Печать..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Печать выполнена." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Ошибка во время печати" + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Печать отменена." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Строка с ошибкой: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Открыть ссылку" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Доступна новая версия Arduino, \n" +"хотите перейти на страницу загрузки?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Да" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Нет" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Обновление" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Найти:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Заменить:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Игнорировать регистр" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Выделять" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Заменить всё" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Заменить" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Заменить и найти" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Предыдущее" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Найти" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Послать" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Автопрокрутка" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Без окончания строки" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Новая строка (NL)" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Возврат каретки (CR)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "NL и CR вместе" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " бод" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"Последовательный порт ''{0}'' занят. Попробуйте выйти из программ, которые " +"могут его использовать." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "Ошибка при открытии последовательного порта ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Последовательный порт ''{0}'' не найден. Вы выбрали нужный из меню " +"Сервис > Последовательный порт?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() байтовый буфер слишком мал для {0} байтов вплоть до " +"символа {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Ошибка в Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Автоформатирование" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "Нечего форматировать." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Автоформатирование прервано: слишком много правых круглых скобок." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Автоформатирование прервано: слишком много левых круглых скобок." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Автоформатирование прервано: слишком много правых фигурных скобок." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Автоформатирование прервано: слишком много левых фигурных скобок." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Автоформатирование завершено." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Исправить кодировку и перезагрузить" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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" +"открыть скетч заново.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Архивировать скетч" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "ггММдд" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Скетч не может быть заархивирован" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Архивирование скетча было прервано, потому что\n" +"скетч некорректно сохранился." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Заархивировать скетч как:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Архивирование скетча отменено" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Ошибка при загрузке кода {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\" содержит нераспознанные символы. Если этот код был создан в " +"старой версии Processing, то вам понадобится использовать Сервис -> " +"Исправить кодировку, чтобы изменить кодировку скетча на UTF-8. Если нет, то " +"вам понадобится удалить плохие символы, чтобы избежать этого предупреждения." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Скетч только для чтения" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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" +"поэтому вам понадобится пересохранить скетч в другом\n" +"месте и попытаться ещё раз." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Имя для нового файла:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Скетч без имени" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"Как насчёт того, чтобы сначала сохранить скетч, \n" +"перед тем как переименовывать его?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Проблема с переименованием" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Имя не может начинаться с точки." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" - недопустимое расширение." + +#: Sketch.java:378 +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 "" +"Основной файл не может использовать расширение.\n" +"(Возможно для вас пришло время перейти к\n" +"\"настоящей\" среде программирования)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Нет" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Файл с именем \"{0}\" уже существует в \"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Вы не можете использовать .cpp файл с таким же именем как и у скетча." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Вы не можете переименовать скетч в \"{0}\", \n" +"потому что скетч уже имеет .cpp файл с таким именем." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Невозможно переименовать" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Извините, скетч (или папка) с названием \"{0}\" уже существует" + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Невозможно переименовать скетч. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Невозможно переименовать \"{0}\" в \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Невозможно переименовать скетч. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Невозможно переименовать скетч. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() вернул false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Вы действительно хотите удалить этот скетч?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Вы действительно хотите удалить \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Удалить" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Невозможно сделать это" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Невозможно удалить \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: внутренняя ошибка.. невозможно найти код" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Скетч только для чтения" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Некоторые файлы отмечены \"только для чтения\", поэтому\n" +"вам необходимо пересохранить этот скетч в другом месте." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"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" +"Сохранить скетч и обновить его расширение?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Сохранить папку скетча как..." + +#: Sketch.java:865 +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 файл с таким именем." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Как сюрреалистично!" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Вы не можете сохранить скетч в папку\n" +"внутри папки скетча. Это будет продолжаться вечно." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Выберите изображение или другой файл данных для копированя в скетч" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Заменить существующую версию {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Ошибка добавления файла" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Не удается удалить существующий файл ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Меня не обманешь" + +#: Sketch.java:1079 +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 "" +"Этот файл уже был скопирован в место,\n" +"из которого вы пытаетесь его добавить." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Невозможно добавить ''{0}'' к скетчу." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Отсутствует или не перезаписывается папка сборки" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Невозможно найти главный класс" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Неперехваченный тип исключения: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "{0} не перемещается в папу сборки" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Загружаем..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Размер скетча в двоичном коде: {0} байт (из {1} байт максимум)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Не могу определить размер программы: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Скетч слишком большой; обратитесь к http://www.arduino.cc/en/Guide/Troubleshooting#size " +"за советами по его уменьшению." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Отсутствует */ в конце /* комментария */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Не удается найти скетч" + +#: Sketch.java:1797 +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 "" +"Не удается найти папку скетча.\n" +"Будет выполнена попытка пересохрания его в том же месте,\n" +"но всё, кроме кода, будет утеряно." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Не удалось пересохранить скетч" + +#: Sketch.java:1811 +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" +"ваш код в другой текстовый редактор." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Имя скетча было изменено. Имена скетчей могут состоять только\n" +"из ASCII символов и чисел (но не могут начинаться с чисел).\n" +"Также, они должны быть менее 64 символов в длину." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Ошибка компилятора, пожалуйста, перешлите этот код на {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"выбранный последовательный порт {0} не существует или ваша плата не подключена" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Устройство не отвечает. Проверьте, правильно ли выбран последовательный порт, " +"или перезагрузите плату прямо перед загрузкой" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"Проблема загрузки в плату. Обратитесь к http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload для поиска решения." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Тип микроконтроллера неверный. Вы правильно выбрали плату из меню " +"Сервис > Платы?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Не выбрана модель платы, пожалуйста, выберите её в меню Сервис > Платы." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} вернул {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Ошибка при компиляции." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Пожалуйста, подключите библиотеку SPI в меню Скетч > Подключить библиотеку." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Начиная с Arduino 0019 библиотека Ethernet зависит от библиотеки SPI.\n" +"Похоже, что вы используете именно её, или другую библиотеку, зависящую " +"от библиотеки SPI.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Дескриптор 'BYTE' больше не поддерживается." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Начиная с версии Arduino 1.0, дескриптор 'BYTE' больше не поддерживается.\n" +"Пожалуйста, используйте Serial.write() вместо него.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Класс Server был переименован в EternetServer" + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Начиная с версии Arduino 1.0, класс Server библиотеки Ethernet был переименован в " +"EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Класс Client был переименован в EternetClient" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Начиная с версии Arduino 1.0, класс Client библиотеки Ethernet был переименован в " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Класс Udp был переименован в EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Начиная с версии Arduino 1.0, класс Udp библиотеки Ethernet был переименован в " +"EthernetUdp.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() была переименована в Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Начиная с версии Arduino 1.0, функция Wire.send() была переименована в " +"Wire.write() для согласованности с другими библиотеками.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() была переименована в Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Начиная с версии Arduino 1.0, функция Wire.receive() была переименована в " +"Wire.read() для согласованности с другими библиотеками.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "Ошибка консоли" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"Возникла проблема при попытке открыть файлы,\n" +"используемые для хранения вывода на консоль." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Нефатальная ошибка при настройке внешнего вида." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Далее идёт сообщение об ошибке, хотя Arduino должнен работать нормально." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Проблема с установкой платформы" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Произошла неизвестная ошибка при попытке\n" +"загрузить код, специфичный для вашей платформы." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Пожалуйста, установите версию JDK 1.5 или старше." + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "Arduino требуется полная версия JDK (а не только JRE)." +"Пожалуйста, установите версию JDK 1.5 или старше." +"Подробную информацию можно найти в справке." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Папка со скетчами исчезла." + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Папка со скетчами больше не существует.\n" +"Arduino переключится на папку по умолчанию,\n" +"создав её при необходимости. А затем Arduino\n" +"перестанет говорить о себе в третьем лице." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Пора сделать перерыв." + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Вы достигли лимита автоматического именования скетчей\n" +"на сегодня. Может, лучше пойти прогуляться?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Солнечный свет" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Серьёзно, вам просто необходимо пойти проветриться." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Открыть скетч Arduino..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Вы уверены, " +"что хотите выйти?

Если вы закроете последний скетч, то выйдете из Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Связанные" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Скетч не существует" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Выбранный скетч больше не существует.\n" +"Возможно, надо перезапустить Arduino, чтобы\n" +"обновить меню скетчей." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Скетч \"{0}\" Не может быть использован.\n" +"Имена скетчей должны содержать только основные буквы и цифры.\n" +"(Только ASCII, без пробелов, причём имя не может начинаться с пробела).\n" +"Чтобы избавиться от этого сообщения, уберите скетч из\n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Игнорирую скетч с плохим именем" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"Библиотека \"{0}\" не может быть использована.\n" +"Имена библиотек должны содержать только основные буквы и цифры.\n" +"(Только ASCII, без пробелов, причём имя не может начинаться с пробела)." + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Игнорирую библиотеку с плохим именем" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Проблема при обращении к папке с данными" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Проблема при обращении к папке с данными Arduino" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Вопросы, связанные с настройками" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino не может запуститься, потому что\n" +"не удаётся создать папку для хранения ваших настроек." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Вы забыли вашу папку со скетчами" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino не может запуститься, потому что\n" +"не удаётся создать папку для хранения ваших скетчей." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Выберите (или создайте) папку для хранения скетчей..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Проблема с открытием ссылки" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Не удалось открыть ссылку\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Проблема с открытием папки " + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Не удалось открыть папку\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "среда разработки" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Сообщение" + +#: Base.java:1842 +msgid "Warning" +msgstr "Внимание" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Не удалось удалить старую версию {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Не удалось заменить {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Не удалось удалить {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Новая вкладка" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Переименовать" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Предыдущая вкладка" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Следующая вкладка" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Проверить" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Открыть" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Новое окно редактора" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Открыть в другом окне" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Нет загрузчика" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" +"Неуказанная платформа, нет загрузчика.\n" +"Чтобы разрешить открытие ссылок или папок, добавьте \n" +"\"launcher=/path/to/app\" строку в preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Не удалось прочитать настройки цветовой темы.\n" +"Вам нужно будет переустановить Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Выбрать" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Настройки по умолчанию не читаются.\n" +"Вам нужно переустановить Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Невозможно прочитать настройки из {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "Ошибка чтения настроек" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"Ошибка чтения файла настроек. Пожалуйста удалите (или переместите)\n" +"{0} и перезагрузите Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Расположение папки со скетчами:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Выберите новое расположение папки со скетчами" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (требует перезагрузки Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Размер шрифта редактора: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Показывать подробный вывод при: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "компиляции" + +#: Preferences.java:375 +msgid "upload" +msgstr "загрузке" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "Проверка кода после загрузки" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Использовать внешний редактор" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Проверять обновления при запуске" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Обновлять расширение скетчей на новое при сохранении (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Автоматически ассоциировать .ino файлы с Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Больше свойств может быть отредактировано прямо в файле" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(редактируйте только если Arduino не запущено)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "игнорирование некорректного размера шрифта {0}" diff --git a/app/src/processing/app/Resources_ru.properties b/app/src/processing/app/Resources_ru.properties new file mode 100644 index 000000000..2f15fde7b --- /dev/null +++ b/app/src/processing/app/Resources_ru.properties @@ -0,0 +1,1034 @@ +# Russian translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# David A. Mellis <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-02 09\:00+0800\nPO-Revision-Date\: 2012-04-09 18\:26+0800\nLast-Translator\: Stanislav I. Ashmanov and Evgeniy Maskalev <>\nLanguage-Team\: Russian\nLanguage\: ru\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u0424\u0430\u0439\u043b\u044b \u043d\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u041e\u0434\u0438\u043d \u0444\u0430\u0439\u043b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d \u043a \u0441\u043a\u0435\u0442\u0447\u0443. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=\u041a \u0441\u043a\u0435\u0442\u0447\u0443 \u0431\u044b\u043b\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e \u0444\u0430\u0439\u043b\u043e\u0432\: {0}. + +#: Editor.java:484 +File=\u0424\u0430\u0439\u043b + +#: Editor.java:486 EditorToolbar.java:41 +New=\u0421\u043e\u0437\u0434\u0430\u0442\u044c + +#: Editor.java:494 Base.java:903 +Open...=\u041e\u0442\u043a\u0440\u044b\u0442\u044c... + +#: Editor.java:503 +Sketchbook=\u041f\u0430\u043f\u043a\u0430 \u0441\u043e \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438 + +#: Editor.java:509 +Examples=\u041f\u0440\u0438\u043c\u0435\u0440\u044b + +#: Editor.java:514 Editor.java:1977 +Close=\u0417\u0430\u043a\u0440\u044b\u0442\u044c + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c + +#: Editor.java:530 +Save\ As...=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430\u0442\u043e\u0440\u0430 + +#: Editor.java:556 +Page\ Setup=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u0435\u0447\u0430\u0442\u0438 + +#: Editor.java:564 +Print=\u041f\u0435\u0447\u0430\u0442\u044c + +#: Editor.java:576 Preferences.java:279 +Preferences=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 + +#: Editor.java:586 Base.java:782 +Quit=\u0412\u044b\u0445\u043e\u0434 + +#: Editor.java:600 +Sketch=\u0421\u043a\u0435\u0442\u0447 + +#: Editor.java:602 +Verify\ /\ Compile=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c / \u041a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c + +#: Editor.java:629 +Import\ Library...=\u0418\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443... + +#: Editor.java:634 +Show\ Sketch\ Folder=\u041f\u043e\u043a\u0430\u0437\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 + +#: Editor.java:643 +Add\ File...=\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0444\u0430\u0439\u043b... + +#: Editor.java:656 +Tools=\u0421\u0435\u0440\u0432\u0438\u0441 + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u041c\u043e\u043d\u0438\u0442\u043e\u0440 \u043f\u043e\u0440\u0442\u0430 + +#: Editor.java:682 +Board=\u041f\u043b\u0430\u0442\u0430 + +#: Editor.java:690 +Serial\ Port=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 + +#: Editor.java:695 +Programmer=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430\u0442\u043e\u0440 + +#: Editor.java:699 +Burn\ Bootloader=\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a + +#: Editor.java:923 +serialMenu\ is\ null=\u041c\u0435\u043d\u044e \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430 \u043f\u0443\u0441\u0442\u043e + +#: Editor.java:927 Editor.java:934 +name\ is\ null=\u043d\u0435\u0442 \u0438\u043c\u0435\u043d\u0438 + +#: Editor.java:986 +error\ retrieving\ port\ list=\u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430 \u043f\u043e\u0440\u0442\u043e\u0432 + +#: Editor.java:1002 +Help=\u0421\u043f\u0440\u0430\u0432\u043a\u0430 + +#: Editor.java:1041 +Getting\ Started=\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b + +#: Editor.java:1049 +Environment=\u0421\u0440\u0435\u0434\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 + +#: Editor.java:1057 +Troubleshooting=\u041f\u043e\u0438\u0441\u043a \u043d\u0435\u043f\u043e\u043b\u0430\u0434\u043e\u043a + +#: Editor.java:1065 +Reference=\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u041d\u0430\u0439\u0442\u0438 \u0432 \u0441\u043f\u0440\u0430\u0432\u043a\u0435 + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u0427\u0430\u0441\u0442\u043e \u0437\u0430\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432\u043e\u043f\u0440\u043e\u0441\u044b + +#: Editor.java:1091 +Visit\ Arduino.cc=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u041e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435 + +#: Editor.java:1116 +Edit=\u041f\u0440\u0430\u0432\u043a\u0430 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u0412\u0435\u0440\u043d\u0443\u0442\u044c + +#: Editor.java:1135 Editor.java:2652 +Cut=\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c + +#: Editor.java:1143 Editor.java:2660 +Copy=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u0444\u043e\u0440\u0443\u043c\u0430 + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u043a HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=\u0412\u0441\u0442\u0430\u0432\u0438\u0442\u044c + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u044c \u0432\u0441\u0451 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u041a\u043e\u043c\u043c\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c/\u0420\u0430\u0441\u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u0423\u0432\u0435\u043b\u0438\u0447\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u0423\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u044c \u043e\u0442\u0441\u0442\u0443\u043f + +#: Editor.java:1220 +Find...=\u041d\u0430\u0439\u0442\u0438... + +#: Editor.java:1235 +Find\ Next=\u041d\u0430\u0439\u0442\u0438 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435 + +#: Editor.java:1245 +Find\ Previous=\u041d\u0430\u0439\u0442\u0438 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435 + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u041d\u0430\u0439\u0442\u0438 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u043b\u043e\u0432\u043e \u0434\u043b\u044f \u043f\u043e\u0438\u0441\u043a\u0430 \u0432 \u0441\u043f\u0440\u0430\u0432\u043a\u0435 + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=\u041d\u0435\u0442 \u0441\u0441\u044b\u043b\u043e\u043a \u0434\u043b\u044f "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u041a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u041a\u043e\u043c\u043f\u0438\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 "{0}"? + +#: Editor.java:2006 +\ \ 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\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u044d\u0442\u043e\u043c \u0441\u043a\u0435\u0442\u0447\u0435
\u043f\u0435\u0440\u0435\u0434 \u0437\u0430\u043a\u0440\u044b\u0442\u0438\u0435\u043c?

\u0415\u0441\u043b\u0438 \u0432\u044b \u043d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u0435, \u0432\u0441\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0443\u0442\u0435\u0440\u044f\u043d\u044b. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u041e\u0442\u043c\u0435\u043d\u0430 + +#: Editor.java:2017 +Don't\ Save=\u041d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c + +#: Editor.java:2089 +Bad\ file\ selected=\u0412\u044b\u0431\u0440\u0430\u043d \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u0444\u0430\u0439\u043b + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing \u043c\u043e\u0436\u0435\u0442 \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0441\u043a\u0435\u0442\u0447\u0438\n\u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0444\u0430\u0439\u043b\u044b, \u0437\u0430\u043a\u0430\u043d\u0447\u0438\u0432\u0430\u044e\u0449\u0438\u0435\u0441\u044f .ino \u0438\u043b\u0438 .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=\u041e\u041a + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u0424\u0430\u0439\u043b "{0}" \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u0438\n\u043f\u0430\u043f\u043a\u0438 \u0441\u043a\u0435\u0442\u0447\u0430 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c "{1}".\n\u0421\u043e\u0437\u0434\u0430\u0442\u044c \u044d\u0442\u0443 \u043f\u0430\u043f\u043a\u0443, \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0444\u0430\u0439\u043b \u0438 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c? + +#: Editor.java:2109 +Moving=\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u041e\u0448\u0438\u0431\u043a\u0430 + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u041f\u0430\u043f\u043a\u0430 \u0441 \u0438\u043c\u0435\u043d\u0435\u043c "{0}" \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442. \u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u043a\u0435\u0442\u0447. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0441\u043a\u0435\u0442\u0447\u0430. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432 \u043d\u0443\u0436\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u0441\u043a\u0435\u0442\u0447 + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e. + +#: Editor.java:2270 +Save\ Canceled.=\u0421\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 {0} \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d.\n\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u0441 \u0434\u0440\u0443\u0433\u0438\u043c \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0440\u0442\u043e\u043c? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043d\u0430 \u043f\u043b\u0430\u0442\u0443 \u0432\u0432\u043e\u0434\u0430/\u0432\u044b\u0432\u043e\u0434\u0430... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430 + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043f\u0435\u0440\u0435\u0434 \u044d\u043a\u0441\u043f\u043e\u0440\u0442\u043e\u043c? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u043e\u0442\u043c\u0435\u043d\u0451\u043d, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430 \u043d\u0430 \u043f\u043b\u0430\u0442\u0443 \u0432\u0432\u043e\u0434\u0430/\u0432\u044b\u0432\u043e\u0434\u0430 (\u043c\u0438\u043d\u0443\u0442\u043e\u0447\u043a\u0443)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u0417\u0430\u043f\u0438\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430. + +#: Editor.java:2500 +Printing...=\u041f\u0435\u0447\u0430\u0442\u044c... + +#: Editor.java:2517 +Done\ printing.=\u041f\u0435\u0447\u0430\u0442\u044c \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430. + +#: Editor.java:2520 +Error\ while\ printing.=\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0435\u0447\u0430\u0442\u0438 + +#: Editor.java:2524 +Printing\ canceled.=\u041f\u0435\u0447\u0430\u0442\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\u0421\u0442\u0440\u043e\u043a\u0430 \u0441 \u043e\u0448\u0438\u0431\u043a\u043e\u0439\: {0} + +#: Editor.java:2641 +Open\ URL=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443 + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Arduino, \n\u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u0414\u0430 + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u041d\u0435\u0442 + +#: UpdateCheck.java:111 +Update=\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\u041d\u0430\u0439\u0442\u0438\: + +#: FindReplace.java:81 +Replace\ with\:=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c\: + +#: FindReplace.java:96 +Ignore\ Case=\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0440\u0435\u0433\u0438\u0441\u0442\u0440 + +#: FindReplace.java:105 +Wrap\ Around=\u0412\u044b\u0434\u0435\u043b\u044f\u0442\u044c + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0441\u0451 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0438 \u043d\u0430\u0439\u0442\u0438 + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435 + +#: FindReplace.java:124 FindReplace.java:127 +Find=\u041d\u0430\u0439\u0442\u0438 + +#: SerialMonitor.java:93 +Send=\u041f\u043e\u0441\u043b\u0430\u0442\u044c + +#: SerialMonitor.java:110 +Autoscroll=\u0410\u0432\u0442\u043e\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0430 + +#: SerialMonitor.java:112 +No\ line\ ending=\u0411\u0435\u0437 \u043e\u043a\u043e\u043d\u0447\u0430\u043d\u0438\u044f \u0441\u0442\u0440\u043e\u043a\u0438 + +#: SerialMonitor.java:112 +Newline=\u041d\u043e\u0432\u0430\u044f \u0441\u0442\u0440\u043e\u043a\u0430 (NL) + +#: SerialMonitor.java:112 +Carriage\ return=\u0412\u043e\u0437\u0432\u0440\u0430\u0442 \u043a\u0430\u0440\u0435\u0442\u043a\u0438 (CR) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=NL \u0438 CR \u0432\u043c\u0435\u0441\u0442\u0435 + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ \u0431\u043e\u0434 + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 ''{0}'' \u0437\u0430\u043d\u044f\u0442. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u044b\u0439\u0442\u0438 \u0438\u0437 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0435\u0433\u043e \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0438 \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0430 ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 ''{0}'' \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d. \u0412\u044b \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u043d\u0443\u0436\u043d\u044b\u0439 \u0438\u0437 \u043c\u0435\u043d\u044e \u0421\u0435\u0440\u0432\u0438\u0441 > \u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() \u0431\u0430\u0439\u0442\u043e\u0432\u044b\u0439 \u0431\u0443\u0444\u0435\u0440 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u0430\u043b \u0434\u043b\u044f {0} \u0431\u0430\u0439\u0442\u043e\u0432 \u0432\u043f\u043b\u043e\u0442\u044c \u0434\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u0430 {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=\u041e\u0448\u0438\u0431\u043a\u0430 \u0432 Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u041d\u0435\u0447\u0435\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e\: \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043f\u0440\u0430\u0432\u044b\u0445 \u043a\u0440\u0443\u0433\u043b\u044b\u0445 \u0441\u043a\u043e\u0431\u043e\u043a. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e\: \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043b\u0435\u0432\u044b\u0445 \u043a\u0440\u0443\u0433\u043b\u044b\u0445 \u0441\u043a\u043e\u0431\u043e\u043a. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e\: \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043f\u0440\u0430\u0432\u044b\u0445 \u0444\u0438\u0433\u0443\u0440\u043d\u044b\u0445 \u0441\u043a\u043e\u0431\u043e\u043a. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e\: \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u043b\u0435\u0432\u044b\u0445 \u0444\u0438\u0433\u0443\u0440\u043d\u044b\u0445 \u0441\u043a\u043e\u0431\u043e\u043a. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u0410\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u043e. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443 \u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u041d\u0435 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447? + +#: 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\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u0438\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443.\n\u041d\u0435 \u043f\u044b\u0442\u0430\u0439\u0442\u0435\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u043a\u0435\u0442\u0447, \u043f\u043e\u0441\u043a\u043e\u043b\u044c\u043a\u0443 \u043e\u043d \u043c\u043e\u0436\u0435\u0442\n\u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0441\u0442\u0430\u0440\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 '\u041e\u0442\u043a\u0440\u044b\u0442\u044c', \u0447\u0442\u043e\u0431\u044b\n\u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u043a\u0435\u0442\u0447 \u0437\u0430\u043d\u043e\u0432\u043e.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043a\u0435\u0442\u0447 + +#: tools/Archiver.java:59 +yyMMdd=\u0433\u0433\u041c\u041c\u0434\u0434 + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u0421\u043a\u0435\u0442\u0447 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0437\u0430\u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043a\u0435\u0442\u0447\u0430 \u0431\u044b\u043b\u043e \u043f\u0440\u0435\u0440\u0432\u0430\u043d\u043e, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e\n\u0441\u043a\u0435\u0442\u0447 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u043b\u0441\u044f. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\u0417\u0430\u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043a\u0435\u0442\u0447 \u043a\u0430\u043a\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\u0410\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043a\u0435\u0442\u0447\u0430 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u043a\u043e\u0434\u0430 {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b. \u0415\u0441\u043b\u0438 \u044d\u0442\u043e\u0442 \u043a\u043e\u0434 \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u0432 \u0441\u0442\u0430\u0440\u043e\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 Processing, \u0442\u043e \u0432\u0430\u043c \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0421\u0435\u0440\u0432\u0438\u0441 -> \u0418\u0441\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u043c\u0435\u043d\u0438\u0442\u044c \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443 \u0441\u043a\u0435\u0442\u0447\u0430 \u043d\u0430 UTF-8. \u0415\u0441\u043b\u0438 \u043d\u0435\u0442, \u0442\u043e \u0432\u0430\u043c \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043b\u043e\u0445\u0438\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0438\u0437\u0431\u0435\u0436\u0430\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u044f. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\u0421\u043a\u0435\u0442\u0447 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u041d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u044b "\u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f",\n\u043f\u043e\u044d\u0442\u043e\u043c\u0443 \u0432\u0430\u043c \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447 \u0432 \u0434\u0440\u0443\u0433\u043e\u043c\n\u043c\u0435\u0441\u0442\u0435 \u0438 \u043f\u043e\u043f\u044b\u0442\u0430\u0442\u044c\u0441\u044f \u0435\u0449\u0451 \u0440\u0430\u0437. + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u0418\u043c\u044f \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=\u0421\u043a\u0435\u0442\u0447 \u0431\u0435\u0437 \u0438\u043c\u0435\u043d\u0438 + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u041a\u0430\u043a \u043d\u0430\u0441\u0447\u0451\u0442 \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447, \n\u043f\u0435\u0440\u0435\u0434 \u0442\u0435\u043c \u043a\u0430\u043a \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u044b\u0432\u0430\u0442\u044c \u0435\u0433\u043e? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0441 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435\u043c + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=\u0418\u043c\u044f \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0442\u043e\u0447\u043a\u0438. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" - \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0444\u0430\u0439\u043b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435.\n(\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0434\u043b\u044f \u0432\u0430\u0441 \u043f\u0440\u0438\u0448\u043b\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0435\u0440\u0435\u0439\u0442\u0438 \u043a\n"\u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0439" \u0441\u0440\u0435\u0434\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\u041d\u0435\u0442 + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u0424\u0430\u0439\u043b \u0441 \u0438\u043c\u0435\u043d\u0435\u043c "{0}" \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0432 "{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u0430\u043a\u0438\u043c \u0436\u0435 \u0438\u043c\u0435\u043d\u0435\u043c \u043a\u0430\u043a \u0438 \u0443 \u0441\u043a\u0435\u0442\u0447\u0430. + +#: Sketch.java:425 +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 \u0441\u043a\u0435\u0442\u0447 \u0443\u0436\u0435 \u0438\u043c\u0435\u0435\u0442 .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c. + +#: Sketch.java:459 +Cannot\ Rename=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0418\u0437\u0432\u0438\u043d\u0438\u0442\u0435, \u0441\u043a\u0435\u0442\u0447 (\u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0430) \u0441 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435\u043c "{0}" \u0443\u0436\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0441\u043a\u0435\u0442\u0447. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c "{0}" \u0432 "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0441\u043a\u0435\u0442\u0447. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c \u0441\u043a\u0435\u0442\u0447. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() \u0432\u0435\u0440\u043d\u0443\u043b false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u043a\u0435\u0442\u0447? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u0423\u0434\u0430\u043b\u0438\u0442\u044c + +#: Sketch.java:620 +Couldn't\ do\ it=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u044d\u0442\u043e + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0443\u0434\u0430\u043b\u0438\u0442\u044c "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u0432\u043d\u0443\u0442\u0440\u0435\u043d\u043d\u044f\u044f \u043e\u0448\u0438\u0431\u043a\u0430.. \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u043a\u043e\u0434 + +#: Sketch.java:724 +Sketch\ is\ read-only=\u0421\u043a\u0435\u0442\u0447 \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u041d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043e\u0442\u043c\u0435\u0447\u0435\u043d\u044b "\u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f", \u043f\u043e\u044d\u0442\u043e\u043c\u0443\n\u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u0435\u0440\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u044d\u0442\u043e\u0442 \u0441\u043a\u0435\u0442\u0447 \u0432 \u0434\u0440\u0443\u0433\u043e\u043c \u043c\u0435\u0441\u0442\u0435. + +#: Sketch.java:743 +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\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0438\u0437\u043c\u0435\u043d\u0438\u043b\u043e\u0441\u044c\n\u0441 .pde \u043d\u0430 .ino. \u041d\u043e\u0432\u044b\u0435 \u0441\u043a\u0435\u0442\u0447\u0438 (\u0432\u043a\u043b\u044e\u0447\u0430\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u0447\u0435\u0440\u0435\u0437\n"\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043a\u0430\u043a") \u0431\u0443\u0434\u0443\u0442 \u0438\u043c\u0435\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435. \u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435\n\u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 \u0431\u0443\u0434\u0435\u0442 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438, \u043d\u043e \u0432\u044b\n\u043c\u043e\u0436\u0435\u0442\u0435 \u043e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u044d\u0442\u043e \u0432 \u0434\u0438\u0430\u043b\u043e\u0433\u0435 "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438".\n\n\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447 \u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0435\u0433\u043e \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0441\u043a\u0435\u0442\u0447\u0430 \u043a\u0430\u043a... + +#: Sketch.java:865 +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 \u0441\u043a\u0435\u0442\u0447 \u0443\u0436\u0435 \u0438\u043c\u0435\u0435\u0442 .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u0430\u043a\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=\u041a\u0430\u043a \u0441\u044e\u0440\u0440\u0435\u0430\u043b\u0438\u0441\u0442\u0438\u0447\u043d\u043e\! + +#: Sketch.java:887 +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\n\u0432\u043d\u0443\u0442\u0440\u0438 \u043f\u0430\u043f\u043a\u0438 \u0441\u043a\u0435\u0442\u0447\u0430. \u042d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c\u0441\u044f \u0432\u0435\u0447\u043d\u043e. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u043e\u0439 \u0444\u0430\u0439\u043b \u0434\u0430\u043d\u043d\u044b\u0445 \u0434\u043b\u044f \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u044f \u0432 \u0441\u043a\u0435\u0442\u0447 + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=\u0417\u0430\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=\u041e\u0448\u0438\u0431\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u0430 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0439 \u0444\u0430\u0439\u043b ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=\u041c\u0435\u043d\u044f \u043d\u0435 \u043e\u0431\u043c\u0430\u043d\u0435\u0448\u044c + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u042d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b \u0443\u0436\u0435 \u0431\u044b\u043b \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d \u0432 \u043c\u0435\u0441\u0442\u043e,\n\u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u0435\u0433\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c ''{0}'' \u043a \u0441\u043a\u0435\u0442\u0447\u0443. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043b\u0438 \u043d\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043f\u0430\u043f\u043a\u0430 \u0441\u0431\u043e\u0440\u043a\u0438 + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u0433\u043b\u0430\u0432\u043d\u044b\u0439 \u043a\u043b\u0430\u0441\u0441 + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=\u041d\u0435\u043f\u0435\u0440\u0435\u0445\u0432\u0430\u0447\u0435\u043d\u043d\u044b\u0439 \u0442\u0438\u043f \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder={0} \u043d\u0435 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0430\u0435\u0442\u0441\u044f \u0432 \u043f\u0430\u043f\u0443 \u0441\u0431\u043e\u0440\u043a\u0438 + +#: Sketch.java:1661 +Uploading...=\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u0420\u0430\u0437\u043c\u0435\u0440 \u0441\u043a\u0435\u0442\u0447\u0430 \u0432 \u0434\u0432\u043e\u0438\u0447\u043d\u043e\u043c \u043a\u043e\u0434\u0435\: {0} \u0431\u0430\u0439\u0442 (\u0438\u0437 {1} \u0431\u0430\u0439\u0442 \u043c\u0430\u043a\u0441\u0438\u043c\u0443\u043c) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\u041d\u0435 \u043c\u043e\u0433\u0443 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0438\u0442\u044c \u0440\u0430\u0437\u043c\u0435\u0440 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u0421\u043a\u0435\u0442\u0447 \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u0431\u043e\u043b\u044c\u0448\u043e\u0439; \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0437\u0430 \u0441\u043e\u0432\u0435\u0442\u0430\u043c\u0438 \u043f\u043e \u0435\u0433\u043e \u0443\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u044e. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 */ \u0432 \u043a\u043e\u043d\u0446\u0435 /* \u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u044f */ + +#: Sketch.java:1796 +Sketch\ Disappeared=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u041d\u0435 \u0443\u0434\u0430\u0435\u0442\u0441\u044f \u043d\u0430\u0439\u0442\u0438 \u043f\u0430\u043f\u043a\u0443 \u0441\u043a\u0435\u0442\u0447\u0430.\n\u0411\u0443\u0434\u0435\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0430 \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u043f\u0435\u0440\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0438\u044f \u0435\u0433\u043e \u0432 \u0442\u043e\u043c \u0436\u0435 \u043c\u0435\u0441\u0442\u0435,\n\u043d\u043e \u0432\u0441\u0451, \u043a\u0440\u043e\u043c\u0435 \u043a\u043e\u0434\u0430, \u0431\u0443\u0434\u0435\u0442 \u0443\u0442\u0435\u0440\u044f\u043d\u043e. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447 + +#: Sketch.java:1811 +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.=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0435\u0440\u0435\u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0441\u043a\u0435\u0442\u0447. \u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u0430\u043c \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0438 \u0432\u0441\u0442\u0430\u0432\u0438\u0442\u044c\n\u0432\u0430\u0448 \u043a\u043e\u0434 \u0432 \u0434\u0440\u0443\u0433\u043e\u0439 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0418\u043c\u044f \u0441\u043a\u0435\u0442\u0447\u0430 \u0431\u044b\u043b\u043e \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u043e. \u0418\u043c\u0435\u043d\u0430 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 \u043c\u043e\u0433\u0443\u0442 \u0441\u043e\u0441\u0442\u043e\u044f\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e\n\u0438\u0437 ASCII \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0438 \u0447\u0438\u0441\u0435\u043b (\u043d\u043e \u043d\u0435 \u043c\u043e\u0433\u0443\u0442 \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0447\u0438\u0441\u0435\u043b).\n\u0422\u0430\u043a\u0436\u0435, \u043e\u043d\u0438 \u0434\u043e\u043b\u0436\u043d\u044b \u0431\u044b\u0442\u044c \u043c\u0435\u043d\u0435\u0435 64 \u0441\u0438\u043c\u0432\u043e\u043b\u043e\u0432 \u0432 \u0434\u043b\u0438\u043d\u0443. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u041e\u0448\u0438\u0431\u043a\u0430 \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0442\u043e\u0440\u0430, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u0435\u0440\u0435\u0448\u043b\u0438\u0442\u0435 \u044d\u0442\u043e\u0442 \u043a\u043e\u0434 \u043d\u0430 {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 {0} \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 \u0438\u043b\u0438 \u0432\u0430\u0448\u0430 \u043f\u043b\u0430\u0442\u0430 \u043d\u0435 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0430 + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043d\u0435 \u043e\u0442\u0432\u0435\u0447\u0430\u0435\u0442. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u043b\u0438 \u0432\u044b\u0431\u0440\u0430\u043d \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u043e\u0440\u0442, \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 \u043f\u043b\u0430\u0442\u0443 \u043f\u0440\u044f\u043c\u043e \u043f\u0435\u0440\u0435\u0434 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u043e\u0439 + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0432 \u043f\u043b\u0430\u0442\u0443. \u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0434\u043b\u044f \u043f\u043e\u0438\u0441\u043a\u0430 \u0440\u0435\u0448\u0435\u043d\u0438\u044f. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0422\u0438\u043f \u043c\u0438\u043a\u0440\u043e\u043a\u043e\u043d\u0442\u0440\u043e\u043b\u043b\u0435\u0440\u0430 \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439. \u0412\u044b \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u043f\u043b\u0430\u0442\u0443 \u0438\u0437 \u043c\u0435\u043d\u044e \u0421\u0435\u0440\u0432\u0438\u0441 > \u041f\u043b\u0430\u0442\u044b? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u0430 \u043c\u043e\u0434\u0435\u043b\u044c \u043f\u043b\u0430\u0442\u044b, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0435\u0451 \u0432 \u043c\u0435\u043d\u044e \u0421\u0435\u0440\u0432\u0438\u0441 > \u041f\u043b\u0430\u0442\u044b. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} \u0432\u0435\u0440\u043d\u0443\u043b {1} + +#: debug/Compiler.java:426 +Error\ compiling.=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u0438. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 SPI \u0432 \u043c\u0435\u043d\u044e \u0421\u043a\u0435\u0442\u0447 > \u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443. + +#: debug/Compiler.java:466 +\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\u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 Arduino 0019 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 Ethernet \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 SPI.\n\u041f\u043e\u0445\u043e\u0436\u0435, \u0447\u0442\u043e \u0432\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0435 \u0438\u043c\u0435\u043d\u043d\u043e \u0435\u0451, \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0443\u044e \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443, \u0437\u0430\u0432\u0438\u0441\u044f\u0449\u0443\u044e \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0414\u0435\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0440 'BYTE' \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u0435\u0440\u0441\u0438\u0438 Arduino 1.0, \u0434\u0435\u0441\u043a\u0440\u0438\u043f\u0442\u043e\u0440 'BYTE' \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f.\n\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 Serial.write() \u0432\u043c\u0435\u0441\u0442\u043e \u043d\u0435\u0433\u043e.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u041a\u043b\u0430\u0441\u0441 Server \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 EternetServer + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u0435\u0440\u0441\u0438\u0438 Arduino 1.0, \u043a\u043b\u0430\u0441\u0441 Server \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 Ethernet \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u041a\u043b\u0430\u0441\u0441 Client \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 EternetClient + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u0435\u0440\u0441\u0438\u0438 Arduino 1.0, \u043a\u043b\u0430\u0441\u0441 Client \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 Ethernet \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u041a\u043b\u0430\u0441\u0441 Udp \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u0435\u0440\u0441\u0438\u0438 Arduino 1.0, \u043a\u043b\u0430\u0441\u0441 Udp \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 Ethernet \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 EthernetUdp.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() \u0431\u044b\u043b\u0430 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0430 \u0432 Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u0435\u0440\u0441\u0438\u0438 Arduino 1.0, \u0444\u0443\u043d\u043a\u0446\u0438\u044f Wire.send() \u0431\u044b\u043b\u0430 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0430 \u0432 Wire.write() \u0434\u043b\u044f \u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u043e\u0441\u0442\u0438 \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u043c\u0438.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0431\u044b\u043b\u0430 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0430 \u0432 Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u041d\u0430\u0447\u0438\u043d\u0430\u044f \u0441 \u0432\u0435\u0440\u0441\u0438\u0438 Arduino 1.0, \u0444\u0443\u043d\u043a\u0446\u0438\u044f Wire.receive() \u0431\u044b\u043b\u0430 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0430 \u0432 Wire.read() \u0434\u043b\u044f \u0441\u043e\u0433\u043b\u0430\u0441\u043e\u0432\u0430\u043d\u043d\u043e\u0441\u0442\u0438 \u0441 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u043c\u0438.\n\n + +#: EditorConsole.java:152 +Console\ Error=\u041e\u0448\u0438\u0431\u043a\u0430 \u043a\u043e\u043d\u0441\u043e\u043b\u0438 + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u0412\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0444\u0430\u0439\u043b\u044b,\n\u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0435 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u044b\u0432\u043e\u0434\u0430 \u043d\u0430 \u043a\u043e\u043d\u0441\u043e\u043b\u044c. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u041d\u0435\u0444\u0430\u0442\u0430\u043b\u044c\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0432\u0438\u0434\u0430. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u0414\u0430\u043b\u0435\u0435 \u0438\u0434\u0451\u0442 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u043e\u0431 \u043e\u0448\u0438\u0431\u043a\u0435, \u0445\u043e\u0442\u044f Arduino \u0434\u043e\u043b\u0436\u043d\u0435\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0441 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u043e\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435\n\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043a\u043e\u0434, \u0441\u043f\u0435\u0446\u0438\u0444\u0438\u0447\u043d\u044b\u0439 \u0434\u043b\u044f \u0432\u0430\u0448\u0435\u0439 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u044b. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044e JDK 1.5 \u0438\u043b\u0438 \u0441\u0442\u0430\u0440\u0448\u0435. + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u043b\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f JDK (\u0430 \u043d\u0435 \u0442\u043e\u043b\u044c\u043a\u043e JRE).\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u0432\u0435\u0440\u0441\u0438\u044e JDK 1.5 \u0438\u043b\u0438 \u0441\u0442\u0430\u0440\u0448\u0435.\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u0443\u044e \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044e \u043c\u043e\u0436\u043d\u043e \u043d\u0430\u0439\u0442\u0438 \u0432 \u0441\u043f\u0440\u0430\u0432\u043a\u0435. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u041f\u0430\u043f\u043a\u0430 \u0441\u043e \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438 \u0438\u0441\u0447\u0435\u0437\u043b\u0430. + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u041f\u0430\u043f\u043a\u0430 \u0441\u043e \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438 \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.\nArduino \u043f\u0435\u0440\u0435\u043a\u043b\u044e\u0447\u0438\u0442\u0441\u044f \u043d\u0430 \u043f\u0430\u043f\u043a\u0443 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e,\n\u0441\u043e\u0437\u0434\u0430\u0432 \u0435\u0451 \u043f\u0440\u0438 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438. \u0410 \u0437\u0430\u0442\u0435\u043c Arduino\n\u043f\u0435\u0440\u0435\u0441\u0442\u0430\u043d\u0435\u0442 \u0433\u043e\u0432\u043e\u0440\u0438\u0442\u044c \u043e \u0441\u0435\u0431\u0435 \u0432 \u0442\u0440\u0435\u0442\u044c\u0435\u043c \u043b\u0438\u0446\u0435. + +#: Base.java:532 +Time\ for\ a\ Break=\u041f\u043e\u0440\u0430 \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u0440\u044b\u0432. + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0412\u044b \u0434\u043e\u0441\u0442\u0438\u0433\u043b\u0438 \u043b\u0438\u043c\u0438\u0442\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u043a\u0435\u0442\u0447\u0435\u0439\n\u043d\u0430 \u0441\u0435\u0433\u043e\u0434\u043d\u044f. \u041c\u043e\u0436\u0435\u0442, \u043b\u0443\u0447\u0448\u0435 \u043f\u043e\u0439\u0442\u0438 \u043f\u0440\u043e\u0433\u0443\u043b\u044f\u0442\u044c\u0441\u044f? + +#: Base.java:537 +Sunshine=\u0421\u043e\u043b\u043d\u0435\u0447\u043d\u044b\u0439 \u0441\u0432\u0435\u0442 + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0421\u0435\u0440\u044c\u0451\u0437\u043d\u043e, \u0432\u0430\u043c \u043f\u0440\u043e\u0441\u0442\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043f\u043e\u0439\u0442\u0438 \u043f\u0440\u043e\u0432\u0435\u0442\u0440\u0438\u0442\u044c\u0441\u044f. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u043a\u0435\u0442\u0447 Arduino... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0432\u044b\u0439\u0442\u0438?

\u0415\u0441\u043b\u0438 \u0432\u044b \u0437\u0430\u043a\u0440\u043e\u0435\u0442\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0441\u043a\u0435\u0442\u0447, \u0442\u043e \u0432\u044b\u0439\u0434\u0435\u0442\u0435 \u0438\u0437 Arduino. + +#: Base.java:970 +Contributed=\u0421\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u0421\u043a\u0435\u0442\u0447 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442 + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u0441\u043a\u0435\u0442\u0447 \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u0441\u0443\u0449\u0435\u0441\u0442\u0432\u0443\u0435\u0442.\n\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u043d\u0430\u0434\u043e \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c Arduino, \u0447\u0442\u043e\u0431\u044b\n\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043c\u0435\u043d\u044e \u0441\u043a\u0435\u0442\u0447\u0435\u0439. + +#: Base.java:1125 +#, 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}=\u0421\u043a\u0435\u0442\u0447 "{0}" \u041d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d.\n\u0418\u043c\u0435\u043d\u0430 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0431\u0443\u043a\u0432\u044b \u0438 \u0446\u0438\u0444\u0440\u044b.\n(\u0422\u043e\u043b\u044c\u043a\u043e ASCII, \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432, \u043f\u0440\u0438\u0447\u0451\u043c \u0438\u043c\u044f \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u043f\u0440\u043e\u0431\u0435\u043b\u0430).\n\u0427\u0442\u043e\u0431\u044b \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f, \u0443\u0431\u0435\u0440\u0438\u0442\u0435 \u0441\u043a\u0435\u0442\u0447 \u0438\u0437\n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0443\u044e \u0441\u043a\u0435\u0442\u0447 \u0441 \u043f\u043b\u043e\u0445\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c + +#: Base.java:1202 +#, 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)=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 "{0}" \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0430.\n\u0418\u043c\u0435\u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u0435 \u0431\u0443\u043a\u0432\u044b \u0438 \u0446\u0438\u0444\u0440\u044b.\n(\u0422\u043e\u043b\u044c\u043a\u043e ASCII, \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432, \u043f\u0440\u0438\u0447\u0451\u043c \u0438\u043c\u044f \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u043f\u0440\u043e\u0431\u0435\u043b\u0430). + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u0443\u044e \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443 \u0441 \u043f\u043b\u043e\u0445\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u043f\u0440\u0438 \u043e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u0438 \u043a \u043f\u0430\u043f\u043a\u0435 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u043f\u0440\u0438 \u043e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u0438 \u043a \u043f\u0430\u043f\u043a\u0435 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 Arduino + +#: Base.java:1440 +Settings\ issues=\u0412\u043e\u043f\u0440\u043e\u0441\u044b, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u044b\u0435 \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c\u0438 + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c\u0441\u044f, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e\n\u043d\u0435 \u0443\u0434\u0430\u0451\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u0430\u0448\u0438\u0445 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u0412\u044b \u0437\u0430\u0431\u044b\u043b\u0438 \u0432\u0430\u0448\u0443 \u043f\u0430\u043f\u043a\u0443 \u0441\u043e \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438 + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c\u0441\u044f, \u043f\u043e\u0442\u043e\u043c\u0443 \u0447\u0442\u043e\n\u043d\u0435 \u0443\u0434\u0430\u0451\u0442\u0441\u044f \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0432\u0430\u0448\u0438\u0445 \u0441\u043a\u0435\u0442\u0447\u0435\u0439. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 (\u0438\u043b\u0438 \u0441\u043e\u0437\u0434\u0430\u0439\u0442\u0435) \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0441\u043a\u0435\u0442\u0447\u0435\u0439... + +#: Base.java:1647 +Problem\ Opening\ URL=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435\u043c \u0441\u0441\u044b\u043b\u043a\u0438 + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0441\u0441\u044b\u043b\u043a\u0443\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0441 \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435\u043c \u043f\u0430\u043f\u043a\u0438 + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043f\u0430\u043f\u043a\u0443\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +!index.html= + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u0441\u0440\u0435\u0434\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0438 + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 + +#: Base.java:1842 +Warning=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435 + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0441\u0442\u0430\u0440\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u043c\u0435\u043d\u0438\u0442\u044c {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0443\u0434\u0430\u043b\u0438\u0442\u044c {0} + +#: EditorHeader.java:292 +New\ Tab=\u041d\u043e\u0432\u0430\u044f \u0432\u043a\u043b\u0430\u0434\u043a\u0430 + +#: EditorHeader.java:300 +Rename=\u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c + +#: EditorHeader.java:326 +Previous\ Tab=\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0432\u043a\u043b\u0430\u0434\u043a\u0430 + +#: EditorHeader.java:340 +Next\ Tab=\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0432\u043a\u043b\u0430\u0434\u043a\u0430 + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u041f\u0440\u043e\u0432\u0435\u0440\u0438\u0442\u044c + +#: EditorToolbar.java:41 +Open=\u041e\u0442\u043a\u0440\u044b\u0442\u044c + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u041d\u043e\u0432\u043e\u0435 \u043e\u043a\u043d\u043e \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430 + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432 \u0434\u0440\u0443\u0433\u043e\u043c \u043e\u043a\u043d\u0435 + +#: Platform.java:167 +No\ launcher\ available=\u041d\u0435\u0442 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430 + +#: 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\u0443\u043a\u0430\u0437\u0430\u043d\u043d\u0430\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430, \u043d\u0435\u0442 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430.\n\u0427\u0442\u043e\u0431\u044b \u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 \u0441\u0441\u044b\u043b\u043e\u043a \u0438\u043b\u0438 \u043f\u0430\u043f\u043e\u043a, \u0434\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \n"launcher\=/path/to/app" \u0441\u0442\u0440\u043e\u043a\u0443 \u0432 preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0446\u0432\u0435\u0442\u043e\u0432\u043e\u0439 \u0442\u0435\u043c\u044b.\n\u0412\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043f\u0435\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c Processing. + +#: Preferences.java:80 +Browse=\u0412\u044b\u0431\u0440\u0430\u0442\u044c + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u043d\u0435 \u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f.\n\u0412\u0430\u043c \u043d\u0443\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0438\u0437 {0} + +#: Preferences.java:261 +Error\ reading\ preferences=\u041e\u0448\u0438\u0431\u043a\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u041e\u0448\u0438\u0431\u043a\u0430 \u0447\u0442\u0435\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0443\u0434\u0430\u043b\u0438\u0442\u0435 (\u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u0435)\n{0} \u0438 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u0435 Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441\u043e \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0441\u043e \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438 + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (\u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u0420\u0430\u0437\u043c\u0435\u0440 \u0448\u0440\u0438\u0444\u0442\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440\u0430\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0439 \u0432\u044b\u0432\u043e\u0434 \u043f\u0440\u0438\: + +#: Preferences.java:373 +compilation\ =\u043a\u043e\u043c\u043f\u0438\u043b\u044f\u0446\u0438\u0438 + +#: Preferences.java:375 +upload=\u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 + +#: Preferences.java:384 +Verify\ code\ after\ upload=\u041f\u0440\u043e\u0432\u0435\u0440\u043a\u0430 \u043a\u043e\u0434\u0430 \u043f\u043e\u0441\u043b\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 + +#: Preferences.java:393 +Use\ external\ editor=\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0438\u0439 \u0440\u0435\u0434\u0430\u043a\u0442\u043e\u0440 + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u041f\u0440\u043e\u0432\u0435\u0440\u044f\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u041e\u0431\u043d\u043e\u0432\u043b\u044f\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 \u043d\u0430 \u043d\u043e\u0432\u043e\u0435 \u043f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438 (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0430\u0441\u0441\u043e\u0446\u0438\u0438\u0440\u043e\u0432\u0430\u0442\u044c .ino \u0444\u0430\u0439\u043b\u044b \u0441 Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0411\u043e\u043b\u044c\u0448\u0435 \u0441\u0432\u043e\u0439\u0441\u0442\u0432 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u0442\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u043f\u0440\u044f\u043c\u043e \u0432 \u0444\u0430\u0439\u043b\u0435 + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0443\u0439\u0442\u0435 \u0442\u043e\u043b\u044c\u043a\u043e \u0435\u0441\u043b\u0438 Arduino \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u0438\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u0435\u043a\u043e\u0440\u0440\u0435\u043a\u0442\u043d\u043e\u0433\u043e \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u0448\u0440\u0438\u0444\u0442\u0430 {0} diff --git a/app/src/processing/app/Resources_sl.po b/app/src/processing/app/Resources_sl.po new file mode 100644 index 000000000..214d637c6 --- /dev/null +++ b/app/src/processing/app/Resources_sl.po @@ -0,0 +1,1568 @@ +# Slovene translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# Črtomir Gorup , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: Črtomir Gorup \n" +"Language-Team: Slovene\n" +"Language: sl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "" + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "" + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "" + +#: Editor.java:484 +msgid "File" +msgstr "Datoteka" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Nova" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Odpri..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "" + +#: Editor.java:509 +msgid "Examples" +msgstr "Primeri" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Zapri" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "Shrani" + +#: Editor.java:530 +msgid "Save As..." +msgstr "Skrani kot..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "Naloži" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "Naloži z programatorjem" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Nastavitve strani" + +#: Editor.java:564 +msgid "Print" +msgstr "Tiskaj" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Nastavitve" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Izhod" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Skica" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Preveri / prevedi" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Uvozi knjižnico..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Dodaj datoteko..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Orodja" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "" + +#: Editor.java:682 +msgid "Board" +msgstr "plošča" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Serijski vmesnik" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programer" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Posodobi nalagalnik" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "" + +#: Editor.java:1002 +msgid "Help" +msgstr "Pomoč" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Začetek" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Okolje" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Odpravljanje napak" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Referenca" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Poišči v Referenci" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Pogosto zastavljena vprašanja" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Obišči Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "O Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Uredi" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Razveljavi" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Uveljavi" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "Izreži" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopiraj" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopiraj za Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopiraj kot HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Prilepi" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Izberi vse" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "Zakomentiraj/odkomentiraj" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Povečaj zamik" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Zmanjšaj zamik" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Išči..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Najdi prejšnje" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Prevajam skico..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Prevajanje končano." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "Shrani spremembe v \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Prekliči" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Ne shrani" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" + +#: Editor.java:2109 +msgid "Moving" +msgstr "" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Napaka" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "" + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Shranjevanje..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Shranjevanje končano." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Shranjevanje preklicano." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Nalaganje na ploščo..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Nalaganje končano." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Nalaganje preklicano." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "Skrani spremembe pred izvozom?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Izvoz preklican, spremembe morajo biti prej shranjene." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Posodabljanje nalagalnika na plošči (lahko traja nekaj minut)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Posodobitev nalagalnika končana." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "Napaka med posodobitvijo nalagalnika." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Tiskanje..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Tiskanje končano." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "Napaka med tiskanjem." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Tiskanje preklicano." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "Napaka v vrstici: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Odpri URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "Dostopna je nova različica Arduino.\n" +"Ali želite obiskati stran za prenos Arduino?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "Posodobitev" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Išči:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Zamenjaj z:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Zamenjaj vse" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Zamenjaj" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Zamenjan & išči" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Prejšnji" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Išči" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Pošlji" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr "" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Avtomatsko oblikovanje" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Avtomatsko oblikovanje preklicano: Preveč desnih oklepajev." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Avtomatsko oblikovanje preklicano: Preveč levih oklepajev." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Avtomatsko oblikovanje preklicano: Preveč desnih zavitih oklepajev." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "Avtomatsko oblikovanje preklicano: Preveč levih zavitih oklepajev." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Avtomatsko oblikovanje končano." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Zavrzi vse spremembe in ponovno naloži\n" +"skico?" + +#: 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 "" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Arhiviraj skico" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Skice ni bilo možno arhivirati" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "Arhiviranje skice je bilo preklicano,\n" +"ker skice ni možno pravilno shraniti." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "Arhiviraj skico kot:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Arhiviranje skice preklicano." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "Napaka med nalaganjem kode {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,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 "" + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Ime nove datoteke:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Skica je Neimenovana" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "Problem pri preimenovanju" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Ime se ne sme začeti s piko." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "" + +#: Sketch.java:378 +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 "" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "" + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "" + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Skice ni možno preimenovati. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Skice ni možno preimenovati. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Skice ni možno preimenovati. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() je vrnila false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Ste prepričani, da želite izbrisati to skico?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Ste prepričani, da želite izbrisati \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Izbriši" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Ne morem izbrisati \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Skica je samo za branje" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "Shrani skico kot ..." + +#: Sketch.java:865 +msgid "" +"You can't save the sketch as \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Skice ne morete ponovno shraniti v njeno\n" +"lastno mapo. To bi se lahko nadaljevalo\n" +"v neskončnost." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Izberi sliko ali drugo datoteko za dodajanje k skici" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Zamenjam trenutno različico {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "Napaka pri dodajanju datoteke" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Ne morem izbrisati obstoječe datoteke ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Ne moreš me preslepiti" + +#: Sketch.java:1079 +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 "" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Ne morem dodati ''{0}'' k skici." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Neujeta izjema tipa: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "Problem pri premikanju {0} v mapo 'build'" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Nalagam..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Velikost binarne skice: {0} bajtov (od {1} možnih bajtov)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Velikosti programa ni bilo možno določiti: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Prevelika slica; glej http://www.arduino.cc/en/Guide/Troubleshooting#size za " +"nasvet glede zmanjšanja" + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Manjka */ na koncu /* komentarja */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Skica je izginila" + +#: Sketch.java:1797 +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 "" +"Mapa s skico je izginila.\n" +" Skico po ponovno shranjena na isto lokacijo,\n" +"vendar vse razen programske kode bo izgubljeno." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Skice ni bilo možno ponovno shraniti" + +#: Sketch.java:1811 +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 "" +"Skice ni bilo mogoče ponovno shraniti. Na vidiku so problemi, zato je\n" +"verjetno zdaj ravno pravi čas za kopiranje in lepljenje vaše kode v drug\n" +"urejevalnik." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Ime skice je bilo spremenjeno. Ime skice je lahko sestavljeno le\n" +"iz znakov ASCII ter številk (vendar se ne sme začeti s številko).\n" +"Ime mora tudi biti krajše od 64 znakov." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "Napaka prevajalnika, prosim posreduj kodo {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Plošča ni izbrana: prosim izberite ploščo v meniju Orodja > Plošča" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} je vrnil {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "Napaka pri prevajanju." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "Prosim uvozite knjižnico SPI v Skica > Uvoz knjižnice" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Od Arduina 0019 naprej knjižnica Ethernet uporablja knjižnico SPI.\n" +"Izgleda, da tudi vi oz. neka druga knjižnica hkrati uporablja knjižnico SPI.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Beseda 'BYTE' ni več podprta." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Od Arduina 1.0 naprej beseda 'BYTE' ni več podprta.\n" +"Namesto nje prosim uporabite Serial.write().\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Razred Server je bil preimenovan v EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Razred Client je bil preimenovan v EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Od Arduina 1.0 naprej je bil razred Client v knjižnici Ethernet preimenovan v " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Razred Udp je bil preimenovan v EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() je bil preimenovan v Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "" + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Ne-kritična napaka med nalaganjem 'Look & Feel'." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Kljub sporočilu o napaki bo Arduino deloval pravilno" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "Problem pri nastavljanju platforme" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "Prišlo je do neznane napake med naganjem\n" +"arhitehturno-odvisne kode za vaš računalnik." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Prosim namestite JDK 1.5 ali novejši" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Za delovanje Arduino potrebuje celoten sistem\n" +"JDK (ne le JRE). Prosim namestite JDK 1.5 ali novejši." +"Več informacij v referenci." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Manjka mapa skice" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Mapa skice ne obstaja več.\n" +"Arduino bo naložil privzeto lokacijo za skico in.\n" +"ustvaril novo mapo za skico (če je potrebno). Arduino bo" +"nato nehal govoriti o sebi v tretji osebi." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Čas za odmor" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "Dosegli ste dnevno mejo za poimenovanje\n" +"novih skic. Kaj pravite na sprehod?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Sonce" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Resno, čas je za svež zrak." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Odpri Arduino skico..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" + +#: Base.java:970 +msgid "Contributed" +msgstr "Prispevali" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Skica ne obstaja" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Izbrana skica Arduino ne obstaja\n" +"več. Ponovno lahko zaženete Arduino" + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "" + +#: Base.java:1202 +#, java-format +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 "" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "Problem pri nalaganju mape s podatki" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Napaka pri nalaganju mape s podatki Arduino." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "Nastavitve" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino se ne more zagnati, saj ne\n" +"more ustvariti mape za shranjevanje nastavitev." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Pozabili ste skico" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino se ne more zagnati, saj ne\n" +"more ustvariti mape za shranjevanje skice." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Izberite (ali ustvarite novo) mapo za skice..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "Problem pri odpiranju URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Napaka pri odpiranju naslova URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "Problem pri odpiranju mape" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Napaka odpiranju mape\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "" + +#: Base.java:1794 +msgid "index.html" +msgstr "" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "" + +#: Base.java:1804 +msgid "environment" +msgstr "okolje" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "" + +#: Base.java:1826 +msgid "Message" +msgstr "Sporočilo" + +#: Base.java:1842 +msgid "Warning" +msgstr "Opozorilo" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Ne morem odstraniti stare različice {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Ne morem zamenjati {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Ne morem izbrisati {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Nov zavihek" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Preimenuj" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Prejšnji zavihek" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Naslednji zavihek" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Preveri" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Odpri" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Novo okno urejevalnika" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Odpri v novem oknu" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Nastavitev barvne sheme ni bilo možno prebrati.\n" +"Potrebna je ponovna namestitev Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Lokacija skice:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Izberi novo lokacijo skice" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (potreben je ponovni zagon Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Velikost črk urejevalnika:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "" + +#: Preferences.java:373 +msgid "compilation " +msgstr "prevajanje " + +#: Preferences.java:375 +msgid "upload" +msgstr "naloži" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Uporabi zunanji urejevalnik" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Preveri posodobitve ob zagonu" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "" diff --git a/app/src/processing/app/Resources_sl.properties b/app/src/processing/app/Resources_sl.properties new file mode 100644 index 000000000..d8e49ee69 --- /dev/null +++ b/app/src/processing/app/Resources_sl.properties @@ -0,0 +1,1034 @@ +# Slovene translations for PACKAGE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# \u010crtomir Gorup , 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: \u010crtomir Gorup \nLanguage-Team\: Slovene\nLanguage\: sl\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +!No\ files\ were\ added\ to\ the\ sketch.= + +#: Editor.java:369 Sketch.java:996 +!One\ file\ added\ to\ the\ sketch.= + +#: Editor.java:373 +#, java-format +!{0}\ files\ added\ to\ the\ sketch.= + +#: Editor.java:484 +File=Datoteka + +#: Editor.java:486 EditorToolbar.java:41 +New=Nova + +#: Editor.java:494 Base.java:903 +Open...=Odpri... + +#: Editor.java:503 +!Sketchbook= + +#: Editor.java:509 +Examples=Primeri + +#: Editor.java:514 Editor.java:1977 +Close=Zapri + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=Shrani + +#: Editor.java:530 +Save\ As...=Skrani kot... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=Nalo\u017ei + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=Nalo\u017ei z programatorjem + +#: Editor.java:556 +Page\ Setup=Nastavitve strani + +#: Editor.java:564 +Print=Tiskaj + +#: Editor.java:576 Preferences.java:279 +Preferences=Nastavitve + +#: Editor.java:586 Base.java:782 +Quit=Izhod + +#: Editor.java:600 +Sketch=Skica + +#: Editor.java:602 +Verify\ /\ Compile=Preveri / prevedi + +#: Editor.java:629 +Import\ Library...=Uvozi knji\u017enico... + +#: Editor.java:634 +!Show\ Sketch\ Folder= + +#: Editor.java:643 +Add\ File...=Dodaj datoteko... + +#: Editor.java:656 +Tools=Orodja + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +!Serial\ Monitor= + +#: Editor.java:682 +Board=plo\u0161\u010da + +#: Editor.java:690 +Serial\ Port=Serijski vmesnik + +#: Editor.java:695 +Programmer=Programer + +#: Editor.java:699 +Burn\ Bootloader=Posodobi nalagalnik + +#: Editor.java:923 +!serialMenu\ is\ null= + +#: Editor.java:927 Editor.java:934 +!name\ is\ null= + +#: Editor.java:986 +!error\ retrieving\ port\ list= + +#: Editor.java:1002 +Help=Pomo\u010d + +#: Editor.java:1041 +Getting\ Started=Za\u010detek + +#: Editor.java:1049 +Environment=Okolje + +#: Editor.java:1057 +Troubleshooting=Odpravljanje napak + +#: Editor.java:1065 +Reference=Referenca + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Poi\u0161\u010di v Referenci + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Pogosto zastavljena vpra\u0161anja + +#: Editor.java:1091 +Visit\ Arduino.cc=Obi\u0161\u010di Arduino.cc + +#: Editor.java:1094 +!http\://arduino.cc/= + +#: Editor.java:1102 +About\ Arduino=O Arduino + +#: Editor.java:1116 +Edit=Uredi + +#: Editor.java:1119 Editor.java:1341 +Undo=Razveljavi + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Uveljavi + +#: Editor.java:1135 Editor.java:2652 +Cut=Izre\u017ei + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopiraj + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kopiraj za Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kopiraj kot HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Prilepi + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Izberi vse + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=Zakomentiraj/odkomentiraj + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Pove\u010daj zamik + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Zmanj\u0161aj zamik + +#: Editor.java:1220 +Find...=I\u0161\u010di... + +#: Editor.java:1235 +!Find\ Next= + +#: Editor.java:1245 +Find\ Previous=Najdi prej\u0161nje + +#: Editor.java:1255 +!Use\ Selection\ For\ Find= + +#: Editor.java:1816 +!First\ select\ a\ word\ to\ find\ in\ the\ reference.= + +#: Editor.java:1823 +#, java-format +!No\ reference\ available\ for\ "{0}"= + +#: Editor.java:1826 +#, java-format +!{0}.html= + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Prevajam skico... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Prevajanje kon\u010dano. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =Shrani spremembe v "{0}"? + +#: Editor.java:2006 +!\ \ 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.= + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Prekli\u010di + +#: Editor.java:2017 +Don't\ Save=Ne shrani + +#: Editor.java:2089 +!Bad\ file\ selected= + +#: Editor.java:2090 +!Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +!OK= + +#: Editor.java:2100 +#, java-format +!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= + +#: Editor.java:2109 +!Moving= + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Napaka + +#: Editor.java:2122 +#, java-format +!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= + +#: Editor.java:2132 +!Could\ not\ create\ the\ sketch\ folder.= + +#: Editor.java:2141 +!Could\ not\ copy\ to\ a\ proper\ location.= + +#: Editor.java:2159 +!Could\ not\ create\ the\ sketch.= + +#: Editor.java:2166 +#, java-format +!{0}\ |\ Arduino\ {1}= + +#: Editor.java:2223 Editor.java:2261 +Saving...=Shranjevanje... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Shranjevanje kon\u010dano. + +#: Editor.java:2270 +Save\ Canceled.=Shranjevanje preklicano. + +#: Editor.java:2296 +#, java-format +!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Nalaganje na plo\u0161\u010do... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Nalaganje kon\u010dano. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Nalaganje preklicano. + +#: Editor.java:2420 +Save\ changes\ before\ export?=Skrani spremembe pred izvozom? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Izvoz preklican, spremembe morajo biti prej shranjene. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Posodabljanje nalagalnika na plo\u0161\u010di (lahko traja nekaj minut)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Posodobitev nalagalnika kon\u010dana. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=Napaka med posodobitvijo nalagalnika. + +#: Editor.java:2500 +Printing...=Tiskanje... + +#: Editor.java:2517 +Done\ printing.=Tiskanje kon\u010dano. + +#: Editor.java:2520 +Error\ while\ printing.=Napaka med tiskanjem. + +#: Editor.java:2524 +Printing\ canceled.=Tiskanje preklicano. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=Napaka v vrstici\: {0} + +#: Editor.java:2641 +Open\ URL=Odpri URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Dostopna je nova razli\u010dica Arduino.\nAli \u017eelite obiskati stran za prenos Arduino? + +#: UpdateCheck.java:108 Preferences.java:76 +!Yes= + +#: UpdateCheck.java:108 Preferences.java:77 +!No= + +#: UpdateCheck.java:111 +Update=Posodobitev + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=I\u0161\u010di\: + +#: FindReplace.java:81 +Replace\ with\:=Zamenjaj z\: + +#: FindReplace.java:96 +!Ignore\ Case= + +#: FindReplace.java:105 +!Wrap\ Around= + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Zamenjaj vse + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Zamenjaj + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Zamenjan & i\u0161\u010di + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Prej\u0161nji + +#: FindReplace.java:124 FindReplace.java:127 +Find=I\u0161\u010di + +#: SerialMonitor.java:93 +Send=Po\u0161lji + +#: SerialMonitor.java:110 +!Autoscroll= + +#: SerialMonitor.java:112 +!No\ line\ ending= + +#: SerialMonitor.java:112 +!Newline= + +#: SerialMonitor.java:112 +!Carriage\ return= + +#: SerialMonitor.java:112 +!Both\ NL\ &\ CR= + +#: SerialMonitor.java:130 SerialMonitor.java:133 +!\ baud= + +#: Serial.java:147 +#, java-format +!Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.= + +#: Serial.java:154 +#, java-format +!Error\ opening\ serial\ port\ ''{0}''.= + +#: Serial.java:167 +#, java-format +!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= + +#: Serial.java:424 +#, java-format +!readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}= + +#: Serial.java:567 +#, java-format +!Error\ inside\ Serial.{0}()= + +#: tools/AutoFormat.java:91 +Auto\ Format=Avtomatsko oblikovanje + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +!No\ changes\ necessary\ for\ Auto\ Format.= + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Avtomatsko oblikovanje preklicano\: Preve\u010d desnih oklepajev. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Avtomatsko oblikovanje preklicano\: Preve\u010d levih oklepajev. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Avtomatsko oblikovanje preklicano\: Preve\u010d desnih zavitih oklepajev. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Avtomatsko oblikovanje preklicano\: Preve\u010d levih zavitih oklepajev. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Avtomatsko oblikovanje kon\u010dano. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +!Fix\ Encoding\ &\ Reload= + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Zavrzi vse spremembe in ponovno nalo\u017ei\nskico? + +#: 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= + +#: tools/Archiver.java:48 +Archive\ Sketch=Arhiviraj skico + +#: tools/Archiver.java:59 +!yyMMdd= + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Skice ni bilo mo\u017eno arhivirati + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arhiviranje skice je bilo preklicano,\nker skice ni mo\u017eno pravilno shraniti. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=Arhiviraj skico kot\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Arhiviranje skice preklicano. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=Napaka med nalaganjem kode {0} + +#: SketchCode.java:258 +#, java-format +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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.= + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +!Sketch\ is\ Read-Only= + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= + +#: Sketch.java:286 +Name\ for\ new\ file\:=Ime nove datoteke\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Skica je Neimenovana + +#: Sketch.java:299 +!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=Problem pri preimenovanju + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Ime se ne sme za\u010deti s piko. + +#: Sketch.java:368 +#, java-format +!".{0}"\ is\ not\ a\ valid\ extension.= + +#: Sketch.java:378 +!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +!Nope= + +#: Sketch.java:402 +#, java-format +!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= + +#: Sketch.java:415 +!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= + +#: Sketch.java:425 +!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= + +#: Sketch.java:459 +!Cannot\ Rename= + +#: Sketch.java:461 +#, java-format +!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Skice ni mo\u017eno preimenovati. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +!Could\ not\ rename\ "{0}"\ to\ "{1}"= + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Skice ni mo\u017eno preimenovati. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Skice ni mo\u017eno preimenovati. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() je vrnila false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Ste prepri\u010dani, da \u017eelite izbrisati to skico? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Ste prepri\u010dani, da \u017eelite izbrisati "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Izbri\u0161i + +#: Sketch.java:620 +!Couldn't\ do\ it= + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Ne morem izbrisati "{0}". + +#: Sketch.java:651 +!removeCode\:\ internal\ error..\ could\ not\ find\ code= + +#: Sketch.java:724 +Sketch\ is\ read-only=Skica je samo za branje + +#: Sketch.java:725 +!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= + +#: Sketch.java:743 +!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?= + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=Shrani skico kot ... + +#: Sketch.java:865 +!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= + +#: Sketch.java:886 +!How\ very\ Borges\ of\ you= + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Skice ne morete ponovno shraniti v njeno\nlastno mapo. To bi se lahko nadaljevalo\nv neskon\u010dnost. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Izberi sliko ali drugo datoteko za dodajanje k skici + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Zamenjam trenutno razli\u010dico {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=Napaka pri dodajanju datoteke + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Ne morem izbrisati obstoje\u010de datoteke ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Ne more\u0161 me preslepiti + +#: Sketch.java:1079 +!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Ne morem dodati ''{0}'' k skici. + +#: Sketch.java:1393 Sketch.java:1424 +!Build\ folder\ disappeared\ or\ could\ not\ be\ written= + +#: Sketch.java:1408 +!Could\ not\ find\ main\ class= + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Neujeta izjema tipa\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=Problem pri premikanju {0} v mapo 'build' + +#: Sketch.java:1661 +Uploading...=Nalagam... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Velikost binarne skice\: {0} bajtov (od {1} mo\u017enih bajtov) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Velikosti programa ni bilo mo\u017eno dolo\u010diti\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Prevelika slica; glej http\://www.arduino.cc/en/Guide/Troubleshooting\#size za nasvet glede zmanj\u0161anja + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manjka */ na koncu /* komentarja */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Skica je izginila + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Mapa s skico je izginila.\n Skico po ponovno shranjena na isto lokacijo,\nvendar vse razen programske kode bo izgubljeno. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Skice ni bilo mo\u017eno ponovno shraniti + +#: Sketch.java:1811 +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.=Skice ni bilo mogo\u010de ponovno shraniti. Na vidiku so problemi, zato je\nverjetno zdaj ravno pravi \u010das za kopiranje in lepljenje va\u0161e kode v drug\nurejevalnik. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Ime skice je bilo spremenjeno. Ime skice je lahko sestavljeno le\niz znakov ASCII ter \u0161tevilk (vendar se ne sme za\u010deti s \u0161tevilko).\nIme mora tudi biti kraj\u0161e od 64 znakov. + +#: debug/Uploader.java:52 +!https\://developer.berlios.de/bugs/?group_id\=3590= + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Napaka prevajalnika, prosim posreduj kodo {0} + +#: debug/Uploader.java:199 +#, java-format +!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= + +#: debug/Uploader.java:203 +!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= + +#: debug/Uploader.java:209 +!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= + +#: debug/Uploader.java:213 +!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= + +#: debug/Compiler.java:41 +!http\://code.google.com/p/arduino/issues/list= + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plo\u0161\u010da ni izbrana\: prosim izberite plo\u0161\u010do v meniju Orodja > Plo\u0161\u010da + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} je vrnil {1} + +#: debug/Compiler.java:426 +Error\ compiling.=Napaka pri prevajanju. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Prosim uvozite knji\u017enico SPI v Skica > Uvoz knji\u017enice + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nOd Arduina 0019 naprej knji\u017enica Ethernet uporablja knji\u017enico SPI.\nIzgleda, da tudi vi oz. neka druga knji\u017enica hkrati uporablja knji\u017enico SPI.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Beseda 'BYTE' ni ve\u010d podprta. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nOd Arduina 1.0 naprej beseda 'BYTE' ni ve\u010d podprta.\nNamesto nje prosim uporabite Serial.write().\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Razred Server je bil preimenovan v EthernetServer. + +#: debug/Compiler.java:478 +!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Razred Client je bil preimenovan v EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nOd Arduina 1.0 naprej je bil razred Client v knji\u017enici Ethernet preimenovan v EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Razred Udp je bil preimenovan v EthernetUdp. + +#: debug/Compiler.java:490 +!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() je bil preimenovan v Wire.write(). + +#: debug/Compiler.java:496 +!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= + +#: debug/Compiler.java:501 +!Wire.receive()\ has\ been\ renamed\ Wire.read().= + +#: debug/Compiler.java:502 +!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= + +#: EditorConsole.java:152 +!Console\ Error= + +#: EditorConsole.java:153 +!A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.= + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Ne-kriti\u010dna napaka med nalaganjem 'Look & Feel'. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Kljub sporo\u010dilu o napaki bo Arduino deloval pravilno + +#: Base.java:220 +Problem\ Setting\ the\ Platform=Problem pri nastavljanju platforme + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Pri\u0161lo je do neznane napake med naganjem\narhitehturno-odvisne kode za va\u0161 ra\u010dunalnik. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Prosim namestite JDK 1.5 ali novej\u0161i + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Za delovanje Arduino potrebuje celoten sistem\nJDK (ne le JRE). Prosim namestite JDK 1.5 ali novej\u0161i.Ve\u010d informacij v referenci. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Manjka mapa skice + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Mapa skice ne obstaja ve\u010d.\nArduino bo nalo\u017eil privzeto lokacijo za skico in.\nustvaril novo mapo za skico (\u010de je potrebno). Arduino bonato nehal govoriti o sebi v tretji osebi. + +#: Base.java:532 +Time\ for\ a\ Break=\u010cas za odmor + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Dosegli ste dnevno mejo za poimenovanje\nnovih skic. Kaj pravite na sprehod? + +#: Base.java:537 +Sunshine=Sonce + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Resno, \u010das je za sve\u017e zrak. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Odpri Arduino skico... + +#: Base.java:772 +!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= + +#: Base.java:970 +Contributed=Prispevali + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Skica ne obstaja + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Izbrana skica Arduino ne obstaja\nve\u010d. Ponovno lahko za\u017eenete Arduino + +#: Base.java:1125 +#, 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}= + +#: Base.java:1132 +!Ignoring\ sketch\ with\ bad\ name= + +#: Base.java:1202 +#, 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)= + +#: Base.java:1207 +!Ignoring\ bad\ library\ name= + +#: Base.java:1432 +Problem\ getting\ data\ folder=Problem pri nalaganju mape s podatki + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Napaka pri nalaganju mape s podatki Arduino. + +#: Base.java:1440 +Settings\ issues=Nastavitve + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino se ne more zagnati, saj ne\nmore ustvariti mape za shranjevanje nastavitev. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Pozabili ste skico + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino se ne more zagnati, saj ne\nmore ustvariti mape za shranjevanje skice. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Izberite (ali ustvarite novo) mapo za skice... + +#: Base.java:1647 +Problem\ Opening\ URL=Problem pri odpiranju URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Napaka pri odpiranju naslova URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=Problem pri odpiranju mape + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Napaka odpiranju mape\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +!http\://www.arduino.cc/playground/Learning/Linux= + +#: Base.java:1794 +!index.html= + +#: Base.java:1799 +!Guide_Environment.html= + +#: Base.java:1804 +environment=okolje + +#: Base.java:1804 +!platforms.html= + +#: Base.java:1809 +!Guide_Troubleshooting.html= + +#: Base.java:1814 +!FAQ.html= + +#: Base.java:1826 +Message=Sporo\u010dilo + +#: Base.java:1842 +Warning=Opozorilo + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Ne morem odstraniti stare razli\u010dice {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Ne morem zamenjati {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Ne morem izbrisati {0} + +#: EditorHeader.java:292 +New\ Tab=Nov zavihek + +#: EditorHeader.java:300 +Rename=Preimenuj + +#: EditorHeader.java:326 +Previous\ Tab=Prej\u0161nji zavihek + +#: EditorHeader.java:340 +Next\ Tab=Naslednji zavihek + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Preveri + +#: EditorToolbar.java:41 +Open=Odpri + +#: EditorToolbar.java:46 +New\ Editor\ Window=Novo okno urejevalnika + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Odpri v novem oknu + +#: Platform.java:167 +!No\ launcher\ available= + +#: 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= + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nastavitev barvne sheme ni bilo mo\u017eno prebrati.\nPotrebna je ponovna namestitev Processing. + +#: Preferences.java:80 +!Browse= + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= + +#: Preferences.java:242 +#, java-format +!Could\ not\ read\ preferences\ from\ {0}= + +#: Preferences.java:261 +!Error\ reading\ preferences= + +#: Preferences.java:263 +#, java-format +!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= + +#: Preferences.java:299 +Sketchbook\ location\:=Lokacija skice\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Izberi novo lokacijo skice + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (potreben je ponovni zagon Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Velikost \u010drk urejevalnika\: + +#: Preferences.java:371 +!Show\ verbose\ output\ during\:\ = + +#: Preferences.java:373 +compilation\ =prevajanje + +#: Preferences.java:375 +upload=nalo\u017ei + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +Use\ external\ editor=Uporabi zunanji urejevalnik + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Preveri posodobitve ob zagonu + +#: Preferences.java:412 +!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= + +#: Preferences.java:423 +!Automatically\ associate\ .ino\ files\ with\ Arduino= + +#: Preferences.java:433 +!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= + +#: Preferences.java:462 +!(edit\ only\ when\ Arduino\ is\ not\ running)= + +#: Preferences.java:609 +#, java-format +!ignoring\ invalid\ font\ size\ {0}= diff --git a/app/src/processing/app/Resources_ta.po b/app/src/processing/app/Resources_ta.po new file mode 100644 index 000000000..1836d2319 --- /dev/null +++ b/app/src/processing/app/Resources_ta.po @@ -0,0 +1,1656 @@ +# Tamil translations for Arduino IDE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# Ram Kumar.Y , 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-05-04 10:24-0400\n" +"Last-Translator: Ram Kumar.Y \n" +"Language-Team: Tamil\n" +"Language: ta\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "வரைவில் இன்னும் கோப்புகள் சேர்க்கப்படவில்லை." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "வரைவில் ஒரு கோப்பு சேர்க்கப்பட்டுள்ளன." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "கோப்புகள் வரைவில் சேர்கப்பட்டுள்ளன." + +#: Editor.java:484 +msgid "File" +msgstr "கோப்பு" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "புதிய" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "திற..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "வரைவு புத்தகம்" + +#: Editor.java:509 +msgid "Examples" +msgstr "எடுத்துக்காட்டுகள்" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "மூடு" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "சேமி" + +#: Editor.java:530 +msgid "Save As..." +msgstr "எனச் சேமி..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "பதிவேற்று" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "நிரலரை பயன்படுத்தி பதிவேற்று" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "பக்கத்தை நிறுவுக" + +#: Editor.java:564 +msgid "Print" +msgstr "அச்சிடுக" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "விருப்பத்தேர்வுகள்" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "வெளியேறுக" + +#: Editor.java:600 +msgid "Sketch" +msgstr "வரைவு" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "உறுதிப்படுத்து / தொகுப்பி" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "நூலகத்தை இறக்குமதி செய்..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "வரைவு உறையை காட்டுக" + +#: Editor.java:643 +msgid "Add File..." +msgstr "கோப்பை சேர்" + +#: Editor.java:656 +msgid "Tools" +msgstr "கருவிகள்" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "தொடர்நிலை கண்காணிப்புத்திரை" + +#: Editor.java:682 +msgid "Board" +msgstr "பலகை" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "தொடர்நிலை துறை" + +#: Editor.java:695 +msgid "Programmer" +msgstr "நிரலர்" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "துவக்கு நிரல் பதிவேற்று" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "தொடர் தெரிவுதிரை வெற்றாக உள்ளது" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "பெயர் வெற்றாக உள்ளது" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "துறை பட்டியலை பெறுவதில் பிழை ஏற்பட்டுள்ளது" + +#: Editor.java:1002 +msgid "Help" +msgstr "உதவி" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "தொடங்குதல்" + +#: Editor.java:1049 +msgid "Environment" +msgstr "சூழல்" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "சரிப்படுத்துதல்" + +#: Editor.java:1065 +msgid "Reference" +msgstr "குறிப்பு" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "குறிப்பில் கண்டுபிடி" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "அடிக்கடி கேட்கப்படும் கேள்விகள்" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Arduino.cc செல்க" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Arduino பற்றி" + +#: Editor.java:1116 +msgid "Edit" +msgstr "தொகு" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "திரும்பப்பெறுக" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "திரும்பச்செய்க" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "வெட்டுக" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "நகல்" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "பொது மன்றத்திற்காக நகலெடு" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "HTML ஆக நகலெடு" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "ஒட்டு" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "அனைத்தும் தேர்ந்தெடு" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "கருத்துரைக/கருத்தை நீக்குக" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "உள்தள்ளலை அதிகப்படுத்துக" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "உள்தள்ளலை குறைக்க" + +#: Editor.java:1220 +msgid "Find..." +msgstr "தேடு..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "அடுத்ததை தேடு" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "முந்தியதை தேடு" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "தேடுதலுக்கு தெரிவுகளை பயன்படுத்தவும்" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "குறிப்பில் தேட முதலில் ஒரு வார்த்தையை தேர்வு செய்யவும்" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "\"{0}\" க்கு எந்த குறிப்பும் இல்லை" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "வரைவை தொகுக்கிறது..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "தொகுத்துவிட்டது." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "மாறுதல்களை \"{0}\"? ல் சேமிக்கவும்" + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" நீங்கள் " +"மாற்றங்களை
வரைவில் சேமிக்க விரும்புகிறீர்களா?

இல்லையென்றால் " +"நீங்கள் மாற்றியவை அனைத்தையும் இழந்துவிடுவீர்கள்." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "இரத்து செய்" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "சேமிக்காதே" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "தவறான கோப்பு தேர்வுசெய்யப்பட்டுள்ளது " + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"செயலாக்கத்தால் அதனுடைய வரைவுகள் மற்றும்\n" +".ino அல்லது .pde நீட்டுதல் கொண்ட கோப்புகளை மட்டுமே திறக்க முடியும்" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "சரி" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"\"{0}\" கோப்பு \"{1}\" என்ற பெயர் கொண்ட\n" +"வரைவு உறையில் மட்டுமே இருக்க முடியும்.\n" +"இந்த உறையை உருவாக்கி, கோப்பை நகற்றி, முன்னேரவா?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "நகற்றுகிறது" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "பிழை" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "\"{0}\" என்ற உறை ஏற்கனவே இருக்கிறது. வரைவை திறக்க முடியவில்லை." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "வரைவு உறையை உருவாக்க முடியவில்லை." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "சரியான இடத்திற்கு பிரதி எடுக்க முடியவில்லை." + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "வரைவை உருவாக்க முடியவில்லை." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "சேமிக்கிறது..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "செமித்துவிட்டது." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "சேமிப்பு ரத்து செய்யப்பட்டது." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"தொடர்நிலை துறை {0} காணவில்லை.\n" +"வேறு தொடர்நிலை துறை கொண்டு மேலேற்ற முயற்சிக்கவும்?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "உள்ளீட்டு/வெளியீட்டு பலகைக்கு மேலேற்றுகிறது..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "மேலேற்றி முடித்துவிட்டது." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "மேலேற்றம் ரத்து செய்யப்பட்டது." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "ஏற்றுமதி செய்யும் முன் மாற்றங்களை செமிக்கவா?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "ஏற்றுமதி ரத்து செய்யப்பட்டது, மாற்றங்களை முதலில் சேமிக்க வேண்டும்." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "துவக்கு நிரலை உள்ளீடு/வெளியீடு பலகையில் பதிவேற்றப்படுகிறது (இது சில நிமிடங்கள் நடக்கும்)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "துவக்கு நிரலை பதிவேற்றிவிட்டது." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "துவக்கு நிரலை பதிவேற்றும்போது பிழை ஏற்பட்டுவிட்டது." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "அச்சிடுகிறது..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "அச்சிட்டுவிட்டது." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "அச்சிடும்போது பிழை ஏற்பட்டுவிட்டது." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "அச்சிடுவது ரத்து செய்யப்பட்டது." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "பிழையின் வரிசை: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "URLஐ திற" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Arduinoவின் புதிய பதிப்பு கிடைக்கிறது,\n" +"நீங்கள் Arduino பதிவிறக்க பக்கத்தை காண விரும்புகிறீர்களா?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "ஆம்" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "இல்லை" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "புதிய பதிப்பை தேடு" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "கண்டுபிடி:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "இதாக மாற்று:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "வேற்றுமையை அலட்சியப்படுத்து" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "சுற்றி கட்டு" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "அனைத்தையும் மாற்றிடு" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "மாற்று" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "மாற்றிவிட்டு தேடு" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "முந்திய" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "கண்டுபிடி" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "அனுப்பு" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "சுய உருள்" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "வரி முடிவு இல்லை" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "புது வரி" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "புதுவரி திரும்பி" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "NL மற்றும் CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " ஒலிபரப்பு வேகம்" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"தொடர்நிலை துறை ''{0}'' ஏற்கனவே பயன்பாட்டிலுள்ளது. அதை பயன்படுத்தும் வேறு நிரலை அணைத்துவிட்டு " +"முயற்சிக்கவும்." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "தொடர்நிலை துறை ''{0}''யை திறப்பதில் பிழை ஏற்பட்டுவிட்டது." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"தொடர்நிலை துறை ''{0}''யை காணவில்லை. நீங்கள் சரியானதை கருவிகள் > தொடர்நிலை துறை பட்டியலில் தேர்வு செய்தீர்களா?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() எண்பிட்டு அணை {0} எண்பிட்டுகளுக்கு மிக குறைவாக உள்ளது " +"char {1} உடன் சேற்று" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "தொடர்நிலை.{0}()க்குள் பிழை உள்ளது" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "சுய வடிவம்" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "சுய வடிவத்திற்கு எந்த மாற்றங்களும் தேவையில்லை." + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "சுய வடிவம் ரத்து செய்யப்பட்டது: மிக அதிகமான வலது குறியீடுகள்." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "சுய வடிவம் ரத்து செய்யப்பட்டது: மிக அதிகமான இடது குறியீடுகள்." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "சுய வடிவம் ரத்து செய்யப்பட்டது: மிக அதிகமான வலது வளைவு குறியீடுகள்." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "சுய வடிவம் ரத்து செய்யப்பட்டது: மிக அதிகமான இடது வளைவு குறியீடுகள்." + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "சுய வடிவம் முடிந்தது." + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "குறியீட்டை சரி செய்துவிட்டு ஏற்றவும்" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "வரைவை ஆவணப்படுத்தவும்" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "வரைவை ஆவணப்படுத்த முடியவில்லை" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"வரைவை ஆவணப்படுத்துவது ரத்து செய்யப்பட்டது. ஏனென்றால், \n" +"அந்த வரைவை சரியாக சேமிக்க முடியவில்லை." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "என வரைவை அவனப்படுது:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "வரைவை ஆவணப்படுத்துவது ரத்து செய்யப்பட்டது." + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "குறியீடு {0}ஐ மேலேற்றும்போது பிழை ஏற்பட்டுவிட்டது " + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,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 "" + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "வாசிப்பு வரைவு" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"சில கோப்புகள் \"read-only\" என குறிக்கப்பட்டுள்ளது,எனவே நீங்கள் \n" +"வேறு இடத்தில வரைவை மறுபடியும் சேமிக்கவும்,\n" +"பின்பு முயற்சிக்கவும்." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "புதிய கோப்பின் பெயர்:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "வரைவு பெயரிடப்படவில்லை" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"பெயரை மாற்றும் முன் வரைவை \n" +"சேமிப்பது பற்றி என்ன நினைக்கிறீர்கள்?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "பெயர்மாற்றத்தில் பிரச்சனை எழுந்துள்ளது" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "பெயர் முற்றுப்புள்ளி கொண்டு ஆரம்பிக்கக்கூடாது." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" சரியான நீடிப்பு கிடையாது." + +#: Sketch.java:378 +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 "" +"முக்கிய கோப்பு ஒரு நீட்டிப்பை பயன்படுத்த முடியாது.\n" +"(இந்த நேரம் நீங்கள் நிரலாக்க சூழல்\n" +"\"real\"ஐ பயன்படுத்த ஏதுவானது)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "இல்லை" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "\"{1}\"ல் ஏற்கனவே \"{0}\" என்ற பேரில் கோப்பு உள்ளது" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "நீங்கள் வரைவின் பெயரிலேயே .cpp கோப்பை உருவாக்க முடியாது." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"நீங்கள் \"{0}\" என்று வரைவை பெயர்மாற்றம் செய்ய முடியாது\n" +"ஏனென்றால் அந்த வரைவு ஏற்கனவே அதே பெயரில் ஒரு .cpp கோப்பை கொண்டுள்ளது." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "மறுபெயரிட முடியாது" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "மன்னிக்கவும், \"{0}\"என்று ஏற்கனவே ஒரு வரைவு (அல்லது உறை) உள்ளது." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "வரைவை மருபெயரிட முடியவில்லை. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "\"{0}\"ஐ \"{1}\"என மருபெயரிட முடியவில்லை " + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "வரைவை மருபெயரிட முடியவில்லை. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "வரைவை மருபெயரிட முடியவில்லை. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() தவறென கூறுகிறது" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "நீங்கள் இந்த வரைவை நீக்க வேண்டும் என்பதில் உறுதியாக இருக்கிறீர்களா?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "நீங்கள் \"{0}\"ஐ நீக்க வேண்டும் என்பதில் உறுதியாக இருக்கிறீர்களா?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "நீக்கு" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "அதை செய்ய முடியவில்லை" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "\"{0}\"ஐ நீக்க முடியவில்லை." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: உள் பிழை .. குறியீட்டை கண்டுபிடிக்க முடியவில்லை" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "வரைவை வாசிக்க மட்டுமே முடியும்" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"சில கோப்புகள் \"read-only\" என குறிப்பிடப்பட்டுள்ளது, எனவே \n" +"நீங்கள் மற்றொரு இடத்தில் இந்த வரைவை மீண்டும் சேமிக்க வேண்டும்." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"Arduino 1.0ல் ,.pdeல் இருந்து .inoவுக்கு முன்னிருப்பு கோப்பு நீட்டிப்பு \n" +"மாறிவிட்டது. புதிய வரைவுகள் (\"Save-As\" உருவாக்கியவை உட்பட),\n" +"புதிய நீட்டிப்பை பயன்படுத்தும். The extension\n" +"தற்போதுள்ள வரைவுகளின் நீட்டிப்பு செமிதவுடன் புதுப்பிக்கப்படும், ஆனால் நீங்கள்\n" +"இதை விருப்பங்கள் உரையாடலில் செயலிழக்க செய்யலாம்.\n" +"\n" +"வரைவை சேமித்து, அதன் நீட்டிப்பை புதுப்பிக்கவா?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "என வரைவை கொப்புரையில் சேமிக்கவும்..." + +#: Sketch.java:865 +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 கோப்பு உள்ளது." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "நீங்கள் மிகவும் திறமைசாலி" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"நீங்கள் வரைவுக்குள் உள்ள உறையிலேயே அந்த வரைவை சேமிக்க\n" +"முடியாது. இது நீண்டுகொண்டே போகும்." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "உங்கள் வரைவுக்குள் நகலெடுக்க ஒரு படத்தை அல்லது தரவு கோப்பை தேர்வு செய்யவும்" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "{0}வின் தற்போதைய பதிப்பை மாற்றவா?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "கோப்பை சேர்ப்பதில் பிழை" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "தற்போதுள்ள ''{0}'' கோப்பை நீக்க முடியவில்லை." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "நீங்கள் என்னை ஏமாற்ற முடியாது" + +#: Sketch.java:1079 +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 "" +"இந்த கோப்பு நீங்கள் நகலெடுக்க முயலும் இடத்தில் \n" +"ஏற்கனவே செர்கப்பட்டுவிட்டது.\n" +"நான் என்னால் முடிந்த அனைத்தையும் செய்துவிட்டேன்." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "''{0}''ஐ வரைவில் சேர்க்க முடியவில்லை." + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "கட்டுமான கோப்புறையை காணவில்லை (அ) எழுதப்பட்ட முடியவில்லை" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "முக்கிய வகுப்பை கண்டுபிடிக்க முடியவில்லை" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "பிடிக்கமுடியாத விதிவிலக்கு வகை: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "{0}ஐ கட்டுமான உறைக்குள் நகற்றுவதில் பிரச்சினை" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "பதிவேற்றுகிறது..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "இரும வரைவின் அளவு: {0} எண்பிட்டுகள் (அதிகபட்ச அளவு{1})" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "நிரல் அளவை தீர்மானிக்க முடியவில்லை: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"வரைவின் பெரியதாக உள்ளது; அதை குறைப்பது பற்றிய வழிமுறைகளுக்கு,\n" +"http://www.arduino.cc/en/Guide/Troubleshooting#size ஐ பார்க்கவும்." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "/* comment */ல் */ஐ காணவில்லை" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "வரைவு மறைந்துவிட்டது" + +#: Sketch.java:1797 +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 "" +"வரைவு உறை மறைந்துவிட்டது.\n" +" அதே இடத்தில சேமிக்க மறுபடியும் முயற்சிக்கிறேன்,\n" +"ஆனால், குறியீட்டை தவிர மற்றவைகளை இழந்துவிடுவீர்கள்." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "வரைவை மறுபடியும் சேமிக்க இயலவில்லை" + +#: Sketch.java:1811 +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" +"இதுவே உங்கள் குறியீட்டை நகலெடுத்து மற்றொரு உரை திருத்தியில் ஓட்டுவதற்கான சரியான நேரம்." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"வரைவின் பெயர் மாற்றப்பட்டுள்ளது. வரைவுப்பெயர்கள் ASCII எழுத்துக்கள் \n" +"மற்றும் எண்களை கொண்டிருக்கலாம்(ஆனால் எண்ணில் ஆரம்பமாகக்கூடாது).\n" +"அவை 64 எழுத்துகளுக்கு மேல் இருக்கக்கூடாது." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "தொகுப்பு பிழை, தயவு செய்து குறியீட்டை {0}க்கு சமர்பிக்கவும்" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"தேர்வு செய்த தொடர் துறை {0} இல்லை (அ)உங்கள் பலகை இணைக்கப்படவில்லை" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"சாதனம் பதிலளிக்கவில்லை, சரியான தொடர் துறையை தேர்வு செய்யவும் (அ) ஏற்றுமதி செய்யும் முன்" +"பலகையை மீட்டமைக்கவும்" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"பலகைக்கு பதிவேற்றம் செய்வதில் பிரச்சனை எழுந்துள்ளது. http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload ஐ பரிந்துரைகளுக்கு பார்க்கவும்." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"தவறான நுண் கட்டுப்பாட்டுக் கருவி கண்டறியப்பட்டது.நீங்கள் சரியான பலகையை கருவிகள்" +"> பலகை பட்டியலில் தேர்வு செய்தீர்களா?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "பலகை தேர்வு செய்யப்படவில்லை; ஒரு பலகையை கருவிகள் > பலகை பட்டியலில் தேர்வு செய்யவும்." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0},{1}என திருப்பியது" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "தொகுப்பதில் பிழை." + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "SPI நூலகத்தை வரைவு > நூலக இறக்குமதி பட்டியலில் இருந்து இறக்குமதி செய்யவும்." + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Arduino 0019வின் படி, ஈதர்நெட் நூலகம் SPI நூலகத்தையே சார்ந்துள்ளது.\n" +"நீங்கள் அந்த நூலகம் (அ) அதை சார்ந்துள்ள நூலகத்தையே " +"பயன்படுத்துகிறீர்கள்.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "'BYTE' குறிச்சொல் இனிமேல் உபயோகப்படாது." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Arduino 1.0ன் படி, 'BYTE' குறிச்சொல் இனிமேல் உபயோகப்படாது.\n" +" Serial.write()ஐ அதற்கு மாற்றாக பயன்படுத்தவும்.\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Server class, EthernetServer என பெயர்மாற்றப்பட்டுள்ளது." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Arduino 1.0ன் படி, ஈதர்நெட் நூலகத்தில் உள்ள Server class, EthernetServer என \n" +"பெயர்மாற்றப்பட்டுள்ளது.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Client class, EthernetClient என பெயர்மாற்றப்பட்டுள்ளது." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Arduino 1.0ன் படி, ஈதர்நெட் நூலகத்தில் உள்ள Client class, EthernetClient என \n" +"பெயர்மாற்றப்பட்டுள்ளது.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Udp class, EthernetUdp என பெயர்மாற்றப்பட்டுள்ளது." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Arduino 1.0ன் படி, ஈதர்நெட் நூலகத்தில் உள்ள Udp class, EthernetUdp என \n" +"பெயர்மாற்றப்பட்டுள்ளது.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send(), Wire.write() என பெயர்மாற்றப்பட்டுள்ளது." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Arduino 1.0ன் படி, Wire.send() செயல்கூறு, Wire.write() என \n" +"நிலைத்தன்மைக்காக பெயர்மாற்றப்பட்டுள்ளது.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive(), Wire.read() என பெயர்மாற்றப்பட்டுள்ளது" + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Arduino 1.0ன் படி, Wire.receive() செயல்கூறு, Wire.read() என \n" +"நிலைத்தன்மைக்காக பெயர்மாற்றப்பட்டுள்ளது.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "பணியக பிழை" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"பணியக வெளிப்பாடுகலை சேமிக்க பயன்படும் கோப்புகளை திறக்க \n" +"முயற்சிக்கும்போது பிரச்சனை ஏற்பட்டுவிட்டது." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "தோற்றம் & உருவத்தை அமைக்கும்போது அபாயமில்லாத பிழை ஏற்பட்டுவிட்டது." + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "பிழை செய்திகள் வரும், ஆனாலும் Arduino நன்றாகவே இயங்கும்." + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "இயங்குதளம் அமைப்பதில் பிரச்சினை" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"உங்கள் கணினிக்கு இயங்குதளம்-குறிப்பிட்ட குறியீட்டை ஏற்ற \n" +"முயற்சிக்கும்போது ஒரு அறியப்படாத பிழை ஏற்பட்டது." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "தயவுசெய்து JDK 1.5 (அ) புதியதை நிறுவவும்" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arduinoவிற்கு முழு JDK தேவை (JRE மற்றும் கூடாது). \n" +"JDK 1.5 (அ) புதியதை நிறுவவும்.\n" +"மேலும் விவரங்களை குறிப்பில் காணலாம்." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "வரைவுப்புத்தக உறை மறைந்துவிட்டது" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"வரைவுறை இல்லை.\n" +"Arduino இயல்பான வரைவுப்புத்தக இடத்திற்கு மாறியபின்,\n" +"தேவைப்பட்டால் புதிய வரைவுப்புத்தக உறையை உருவாக்கும். \n" +"Arduino தன்னைபற்றியே மூன்றாவது மனிதன் போல \n" +"பேசுவதை நிறுத்திக்கொள்ளும்." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "இடைவேளைக்கான நேரம்" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"நீங்கள் புதிய வரைவுகளை தானாக பெயரிடும் இன்றைய உச்சவரம்பை எட்டிவிட்டீர்கள்.\n" +" சிறிது நடைபயிற்சி மேற்கொள்ளலாமே!?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "சூர்யோதயம்" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "இல்லை உண்மையாகவே, இது நீங்கள் புத்துணர்ச்சி பெறவேண்டிய நேரம்." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "ஒரு Arduino வரைவை திறக்கவும்..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" நீங்கள் நிச்சயமாக " +"வெளியேற விரும்புகிறீர்களா?

கடைசியாக திறந்த வரைவை மூடினால் Arduino அணைந்துவிடும்." + +#: Base.java:970 +msgid "Contributed" +msgstr "பங்களிப்பு" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "வரைவு இல்லை" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"தேர்ந்தெடுக்கப்பட்ட வரைவு இல்லை.\n" +"வரைவுப்புத்தக பட்டியலை புதுப்பிக்க Arduinoவை \n" +"மறுதுவக்கம் செய்யவும்." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"\"{0}\" வரைவை பயன்படுத்த முடியாது.\n" +"வரைவுப்பெயர்களில் அடிப்படை எழுத்துக்கள் மற்றும் எண்கள் மட்டுமே இருக்க வேண்டும்\n" +"(இடைவெளி இல்லாமல் ASCII மட்டும், இது எண்னில் ஆரம்பமாகக் கூடாது).\n" +"இந்த செய்தியில் இருந்து விடிவு பெற, {1}ல் இருந்து வரைவை நீக்கு" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "தவறான பெயர் கொண்ட வரைவை அளச்சியப்படுத்துகிறது" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"\"{0}\" நூலகத்தை பயன்படுத்த முடியவில்லை.\n" +"நூலக பெயர்களில் அடிப்படை எழுத்துக்கள் மற்றும் எண்கள் மட்டுமே இருக்க வேண்டும்.\n" +"(இடைவெளி இல்லாமல் ASCII மட்டும், இது எண்னில் ஆரம்பமாகக் கூடாது)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "தவறான நூலகப்பெயரை அலட்சியப்படுத்துகிறது" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "தரவு கோப்புறையை பெறுவதில் பிரச்சினை" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "Arduino தரவு கோப்புறையை பெறுவதில் பிழை." + +#: Base.java:1440 +msgid "Settings issues" +msgstr "அமைப்பு சிக்கல்கள்" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino இயங்க முடியவில்லை, ஏனென்றால் உங்கள் \n" +"அமைப்புகளை சேமிக்க ஒரு உறையை உருவாக்க முடியவில்லை." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "நீங்கள் உங்கள் வரைவுப்புத்தகத்தை மறந்துவிட்டீர்கள்" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino இயங்கமுடியவில்லை ஏனென்றால்,\n" +"வரைவுப்புத்தகத்தை சேமிக்க உறையை உருவாக்கமுடியவில்லை." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "வரைவுகளுக்கு உறையை தேர்வு செய்யவும் (அல்லது உருவாக்கவும்)..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "URLஐ திறப்பதில் பிரச்சனை எழுந்துள்ளது" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"URLஐ திறக்க முடியவில்லை\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "கோப்புறையை திறப்பதில் பிரச்சனை எழுந்துள்ளது" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"கோப்புறையை திறக்க முடியவில்லை\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "சுற்றுச்சூழல்" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "தகவல்" + +#: Base.java:1842 +msgid "Warning" +msgstr "எச்சரிக்கை" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "{0}வின் பழைய பதிப்பை அகற்ற முடியவில்லை" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "{0}வை மாற்ற முடியவில்லை" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "{0}ஐ நீக்க முடியவில்லை" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "புதிய தாவல்" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "மருபெயரிடுக" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "முந்தைய தாவல்" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "அடுத்த தாவல்" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "சரிபார்க்க" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "திற" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "புதிய திருத்தி சாளரம்" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "மற்றொரு சாளரத்தில் திற" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "எந்த ஏவுதிரையும் கிட்டவில்லை" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" +"குறிப்பிடப்படாத இயங்குதளம், எந்த எவுதிரையும் இல்லை.\n" +"URL (அ) உரைகளை திறக்க, \n" +"\"launcher=/path/to/app\" என்ற வரியை preferences.txtல் சேர்க்கவும்" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"வண்ண கரு அமைப்புகளை படிக்க முடியவில்லை.\n" +"நீங்கள் செயல்முறையை மீண்டும் நிறுவ வேண்டும்." + +#: Preferences.java:80 +msgid "Browse" +msgstr "உலவு" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "கடாலன்" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "இலகு நடை சீனம் " + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "டானியம்" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "உலாந்தியம்" + +#: Preferences.java:91 +msgid "English" +msgstr "ஆங்கிலம்" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "பிரஞ்சு" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "ஃபிலிபினோ" + +#: Preferences.java:95 +msgid "Galician" +msgstr "காலிசியன்" + +#: Preferences.java:96 +msgid "German" +msgstr "ஜெர்மானியம்" + +#: Preferences.java:97 +msgid "Greek" +msgstr "கிரேக்கம்" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "ஹங்கேரியன்" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "இத்தாலியன்" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "ஜப்பனீஸ்" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "லேட்வியன்" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "பர்ஸியன்" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "ரோமானியம்" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "ஸ்பானியம்" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"இயல்புநிலை அமைப்புகளை படிக்க முடியவில்லை.\n" +"நீங்கள் Arduinoவை மீண்டும் நிறுவ வேண்டும்." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "{0}ல் இருந்து விருப்பங்களை படிக்க முடியவில்லை" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "விருப்பங்களை படிப்பதில் பிழை" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"விருப்பக் கோப்பை படிப்பதில் பிழை. தயவு செய்து {0}வை அகற்றவும்((அ) நகற்றவும்)\n" +"பின்பு Arduinoவை மறுதொடக்கம் செய்யவும்." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "வரைவுப்புத்தக இடம்:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "புதிய வரைவுப்புத்தக இடத்தை தேர்வு செய்யவும்" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (Arduino மறுதுவக்கம் தேவைப்படுகிறது)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "திருத்தி எழுத்துரு அளவு: " + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "இதன் போது வேர்போசு வெளியீட்டை காண்பிக்கவும்:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "தொகுப்பு" + +#: Preferences.java:375 +msgid "upload" +msgstr "பதிவேற்று" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "பதிவேற்றியவுடன் குறியீட்டை சரிபார்க்கவும்" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "புற திருத்தியை பயன்படுத்துக" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "துவக்கும் போது புதுப்பிப்புகள் உள்ளதா என பார்" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "சேமிக்கும் பொது வரைவு கோப்புகளை புதிய நீட்டிப்புகளுக்கு புதுப்பிக்கவும் (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "தானாகவே .ino கோப்புகளை Arduinoவுடன் தொடர்பு படுத்தவும்" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "மேலும் விருப்பத்தேர்வுகளை நேரடியாக கோப்பில் திருத்தலாம்" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(Arduino செயல்படாதபோது மாற்றம் மட்டுமே முடியும்)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "தவறான எழுத்துரு அளவை {0} அளச்சியப்படுத்துகிறது" diff --git a/app/src/processing/app/Resources_ta.properties b/app/src/processing/app/Resources_ta.properties new file mode 100644 index 000000000..380f6ccc7 --- /dev/null +++ b/app/src/processing/app/Resources_ta.properties @@ -0,0 +1,1034 @@ +# Tamil translations for Arduino IDE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# Ram Kumar.Y , 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-05-04 10\:24-0400\nLast-Translator\: Ram Kumar.Y \nLanguage-Team\: Tamil\nLanguage\: ta\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd \u0b87\u0ba9\u0bcd\u0ba9\u0bc1\u0bae\u0bcd \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd \u0b92\u0bb0\u0bc1 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba9. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba9. + +#: Editor.java:484 +File=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 + +#: Editor.java:486 EditorToolbar.java:41 +New=\u0baa\u0bc1\u0ba4\u0bbf\u0baf + +#: Editor.java:494 Base.java:903 +Open...=\u0ba4\u0bbf\u0bb1... + +#: Editor.java:503 +Sketchbook=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95\u0bae\u0bcd + +#: Editor.java:509 +Examples=\u0b8e\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bcd + +#: Editor.java:514 Editor.java:1977 +Close=\u0bae\u0bc2\u0b9f\u0bc1 + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u0b9a\u0bc7\u0bae\u0bbf + +#: Editor.java:530 +Save\ As...=\u0b8e\u0ba9\u0b9a\u0bcd \u0b9a\u0bc7\u0bae\u0bbf... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u0ba8\u0bbf\u0bb0\u0bb2\u0bb0\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 + +#: Editor.java:556 +Page\ Setup=\u0baa\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0bc1\u0b95 + +#: Editor.java:564 +Print=\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95 + +#: Editor.java:576 Preferences.java:279 +Preferences=\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b95\u0bb3\u0bcd + +#: Editor.java:586 Base.java:782 +Quit=\u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1\u0bc1\u0b95 + +#: Editor.java:600 +Sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 + +#: Editor.java:602 +Verify\ /\ Compile=\u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1 / \u0ba4\u0bca\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bbf + +#: Editor.java:629 +Import\ Library...=\u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd... + +#: Editor.java:634 +Show\ Sketch\ Folder=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95 + +#: Editor.java:643 +Add\ File...=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd + +#: Editor.java:656 +Tools=\u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0b95\u0ba3\u0bcd\u0b95\u0bbe\u0ba3\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb0\u0bc8 + +#: Editor.java:682 +Board=\u0baa\u0bb2\u0b95\u0bc8 + +#: Editor.java:690 +Serial\ Port=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 + +#: Editor.java:695 +Programmer=\u0ba8\u0bbf\u0bb0\u0bb2\u0bb0\u0bcd + +#: Editor.java:699 +Burn\ Bootloader=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0bbf\u0bb0\u0bb2\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 + +#: Editor.java:923 +serialMenu\ is\ null=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd \u0ba4\u0bc6\u0bb0\u0bbf\u0bb5\u0bc1\u0ba4\u0bbf\u0bb0\u0bc8 \u0bb5\u0bc6\u0bb1\u0bcd\u0bb1\u0bbe\u0b95 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: Editor.java:927 Editor.java:934 +name\ is\ null=\u0baa\u0bc6\u0baf\u0bb0\u0bcd \u0bb5\u0bc6\u0bb1\u0bcd\u0bb1\u0bbe\u0b95 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: Editor.java:986 +error\ retrieving\ port\ list=\u0ba4\u0bc1\u0bb1\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bc8 \u0baa\u0bc6\u0bb1\u0bc1\u0bb5\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: Editor.java:1002 +Help=\u0b89\u0ba4\u0bb5\u0bbf + +#: Editor.java:1041 +Getting\ Started=\u0ba4\u0bc6\u0bbe\u0b9f\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb2\u0bcd + +#: Editor.java:1049 +Environment=\u0b9a\u0bc2\u0bb4\u0bb2\u0bcd + +#: Editor.java:1057 +Troubleshooting=\u0b9a\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0ba4\u0bb2\u0bcd + +#: Editor.java:1065 +Reference=\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1 + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u0b85\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0b9f\u0bbf \u0b95\u0bc7\u0b9f\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd \u0b95\u0bc7\u0bb3\u0bcd\u0bb5\u0bbf\u0b95\u0bb3\u0bcd + +#: Editor.java:1091 +Visit\ Arduino.cc=Arduino.cc \u0b9a\u0bc6\u0bb2\u0bcd\u0b95 + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Arduino \u0baa\u0bb1\u0bcd\u0bb1\u0bbf + +#: Editor.java:1116 +Edit=\u0ba4\u0bca\u0b95\u0bc1 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0baa\u0bcd\u0baa\u0bc6\u0bb1\u0bc1\u0b95 + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc6\u0baf\u0bcd\u0b95 + +#: Editor.java:1135 Editor.java:2652 +Cut=\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95 + +#: Editor.java:1143 Editor.java:2660 +Copy=\u0ba8\u0b95\u0bb2\u0bcd + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u0baa\u0bca\u0ba4\u0bc1 \u0bae\u0ba9\u0bcd\u0bb1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bbe\u0b95 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1 + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=HTML \u0b86\u0b95 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1 + +#: Editor.java:1175 Editor.java:2684 +Paste=\u0b92\u0b9f\u0bcd\u0b9f\u0bc1 + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95/\u0b95\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1\u0b95 + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bb2\u0bc8 \u0b85\u0ba4\u0bbf\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95 + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bb2\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0b95\u0bcd\u0b95 + +#: Editor.java:1220 +Find...=\u0ba4\u0bc7\u0b9f\u0bc1... + +#: Editor.java:1235 +Find\ Next=\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0ba4\u0bc8 \u0ba4\u0bc7\u0b9f\u0bc1 + +#: Editor.java:1245 +Find\ Previous=\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0ba4\u0bc8 \u0ba4\u0bc7\u0b9f\u0bc1 + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u0ba4\u0bc7\u0b9f\u0bc1\u0ba4\u0bb2\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0ba4\u0bc6\u0bb0\u0bbf\u0bb5\u0bc1\u0b95\u0bb3\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0ba4\u0bc7\u0b9f \u0bae\u0bc1\u0ba4\u0bb2\u0bbf\u0bb2\u0bcd \u0b92\u0bb0\u0bc1 \u0bb5\u0bbe\u0bb0\u0bcd\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"="{0}" \u0b95\u0bcd\u0b95\u0bc1 \u0b8e\u0ba8\u0bcd\u0ba4 \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0ba4\u0bca\u0b95\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u0ba4\u0bca\u0b95\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u0bae\u0bbe\u0bb1\u0bc1\u0ba4\u0bb2\u0bcd\u0b95\u0bb3\u0bc8 "{0}"? \u0bb2\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd + +#: Editor.java:2006 +\ \ 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.= \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bc8
\u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe?

\u0b87\u0bb2\u0bcd\u0bb2\u0bc8\u0baf\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bbf\u0baf\u0bb5\u0bc8 \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b87\u0bb4\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bc1\u0bb5\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u0b87\u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd + +#: Editor.java:2017 +Don't\ Save=\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bbe\u0ba4\u0bc7 + +#: Editor.java:2089 +Bad\ file\ selected=\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u0b9a\u0bc6\u0baf\u0bb2\u0bbe\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bbe\u0bb2\u0bcd \u0b85\u0ba4\u0ba9\u0bc1\u0b9f\u0bc8\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd\n.ino \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 .pde \u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1\u0ba4\u0bb2\u0bcd \u0b95\u0bca\u0ba3\u0bcd\u0b9f \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=\u0b9a\u0bb0\u0bbf + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?="{0}" \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 "{1}" \u0b8e\u0ba9\u0bcd\u0bb1 \u0baa\u0bc6\u0baf\u0bb0\u0bcd \u0b95\u0bca\u0ba3\u0bcd\u0b9f\n\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b89\u0bb1\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd.\n\u0b87\u0ba8\u0bcd\u0ba4 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bbf, \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc8 \u0ba8\u0b95\u0bb1\u0bcd\u0bb1\u0bbf, \u0bae\u0bc1\u0ba9\u0bcd\u0ba9\u0bc7\u0bb0\u0bb5\u0bbe? + +#: Editor.java:2109 +Moving=\u0ba8\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u0baa\u0bbf\u0bb4\u0bc8 + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.="{0}" \u0b8e\u0ba9\u0bcd\u0bb1 \u0b89\u0bb1\u0bc8 \u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1. \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0baa\u0bbf\u0bb0\u0ba4\u0bbf \u0b8e\u0b9f\u0bc1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\u0b9a\u0bc6\u0bae\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:2270 +Save\ Canceled.=\u0b9a\u0bc7\u0bae\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 {0} \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0bb5\u0bc7\u0bb1\u0bc1 \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bc1 \u0bae\u0bc7\u0bb2\u0bc7\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u0b89\u0bb3\u0bcd\u0bb3\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1/\u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc1 \u0baa\u0bb2\u0b95\u0bc8\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc7\u0bb2\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u0bae\u0bc7\u0bb2\u0bc7\u0bb1\u0bcd\u0bb1\u0bbf \u0bae\u0bc1\u0b9f\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u0bae\u0bc7\u0bb2\u0bc7\u0bb1\u0bcd\u0bb1\u0bae\u0bcd \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bc1\u0ba9\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b9a\u0bc6\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbe? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0ba4\u0bbf \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1, \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0bae\u0bc1\u0ba4\u0bb2\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0bbf\u0bb0\u0bb2\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0bc0\u0b9f\u0bc1/\u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 \u0baa\u0bb2\u0b95\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 (\u0b87\u0ba4\u0bc1 \u0b9a\u0bbf\u0bb2 \u0ba8\u0bbf\u0bae\u0bbf\u0b9f\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba8\u0b9f\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0bbf\u0bb0\u0bb2\u0bc8 \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bbf\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1 \u0ba8\u0bbf\u0bb0\u0bb2\u0bc8 \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:2500 +Printing...=\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1... + +#: Editor.java:2517 +Done\ printing.=\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:2520 +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. + +#: Editor.java:2524 +Printing\ canceled.=\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0bb5\u0ba4\u0bc1 \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0bb5\u0bb0\u0bbf\u0b9a\u0bc8\: {0} + +#: Editor.java:2641 +Open\ URL=URL\u0b90 \u0ba4\u0bbf\u0bb1 + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Arduino\u0bb5\u0bbf\u0ba9\u0bcd \u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bbf\u0b9f\u0bc8\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0ba4\u0bc1,\n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd Arduino \u0baa\u0ba4\u0bbf\u0bb5\u0bbf\u0bb1\u0b95\u0bcd\u0b95 \u0baa\u0b95\u0bcd\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b95\u0bbe\u0ba3 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u0b86\u0bae\u0bcd + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u0b87\u0bb2\u0bcd\u0bb2\u0bc8 + +#: UpdateCheck.java:111 +Update=\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \u0ba4\u0bc7\u0b9f\u0bc1 + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\: + +#: FindReplace.java:81 +Replace\ with\:=\u0b87\u0ba4\u0bbe\u0b95 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\: + +#: FindReplace.java:96 +Ignore\ Case=\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bc8\u0baf\u0bc8 \u0b85\u0bb2\u0b9f\u0bcd\u0b9a\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1 + +#: FindReplace.java:105 +Wrap\ Around=\u0b9a\u0bc1\u0bb1\u0bcd\u0bb1\u0bbf \u0b95\u0b9f\u0bcd\u0b9f\u0bc1 + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bbf\u0b9f\u0bc1 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1 + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bbf\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0ba4\u0bc7\u0b9f\u0bc1 + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bbf\u0baf + +#: FindReplace.java:124 FindReplace.java:127 +Find=\u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf + +#: SerialMonitor.java:93 +Send=\u0b85\u0ba9\u0bc1\u0baa\u0bcd\u0baa\u0bc1 + +#: SerialMonitor.java:110 +Autoscroll=\u0b9a\u0bc1\u0baf \u0b89\u0bb0\u0bc1\u0bb3\u0bcd + +#: SerialMonitor.java:112 +No\ line\ ending=\u0bb5\u0bb0\u0bbf \u0bae\u0bc1\u0b9f\u0bbf\u0bb5\u0bc1 \u0b87\u0bb2\u0bcd\u0bb2\u0bc8 + +#: SerialMonitor.java:112 +Newline=\u0baa\u0bc1\u0ba4\u0bc1 \u0bb5\u0bb0\u0bbf + +#: SerialMonitor.java:112 +Carriage\ return=\u0baa\u0bc1\u0ba4\u0bc1\u0bb5\u0bb0\u0bbf \u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bbf + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=NL \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ \u0b92\u0bb2\u0bbf\u0baa\u0bb0\u0baa\u0bcd\u0baa\u0bc1 \u0bb5\u0bc7\u0b95\u0bae\u0bcd + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 ''{0}'' \u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0bbe\u0b9f\u0bcd\u0b9f\u0bbf\u0bb2\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0b85\u0ba4\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd \u0bb5\u0bc7\u0bb1\u0bc1 \u0ba8\u0bbf\u0bb0\u0bb2\u0bc8 \u0b85\u0ba3\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 ''{0}''\u0baf\u0bc8 \u0ba4\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 ''{0}''\u0baf\u0bc8 \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9\u0ba4\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd > \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8 \u0ba4\u0bc1\u0bb1\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0bb2\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() \u0b8e\u0ba3\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0b85\u0ba3\u0bc8 {0} \u0b8e\u0ba3\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bbf\u0b95 \u0b95\u0bc1\u0bb1\u0bc8\u0bb5\u0bbe\u0b95 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 char {1} \u0b89\u0b9f\u0ba9\u0bcd \u0b9a\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=\u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0ba8\u0bbf\u0bb2\u0bc8.{0}()\u0b95\u0bcd\u0b95\u0bc1\u0bb3\u0bcd \u0baa\u0bbf\u0bb4\u0bc8 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: tools/AutoFormat.java:91 +Auto\ Format=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0b8e\u0ba8\u0bcd\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1\: \u0bae\u0bbf\u0b95 \u0b85\u0ba4\u0bbf\u0b95\u0bae\u0bbe\u0ba9 \u0bb5\u0bb2\u0ba4\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1\u0b95\u0bb3\u0bcd. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1\: \u0bae\u0bbf\u0b95 \u0b85\u0ba4\u0bbf\u0b95\u0bae\u0bbe\u0ba9 \u0b87\u0b9f\u0ba4\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1\u0b95\u0bb3\u0bcd. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1\: \u0bae\u0bbf\u0b95 \u0b85\u0ba4\u0bbf\u0b95\u0bae\u0bbe\u0ba9 \u0bb5\u0bb2\u0ba4\u0bc1 \u0bb5\u0bb3\u0bc8\u0bb5\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1\u0b95\u0bb3\u0bcd. + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1\: \u0bae\u0bbf\u0b95 \u0b85\u0ba4\u0bbf\u0b95\u0bae\u0bbe\u0ba9 \u0b87\u0b9f\u0ba4\u0bc1 \u0bb5\u0bb3\u0bc8\u0bb5\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1\u0b95\u0bb3\u0bcd. + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0bae\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0ba8\u0bcd\u0ba4\u0ba4\u0bc1. + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b9a\u0bb0\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0b8f\u0bb1\u0bcd\u0bb1\u0bb5\u0bc1\u0bae\u0bcd + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u0b85\u0ba3\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b92\u0ba4\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b8f\u0bb1\u0bcd\u0bb1\u0bb5\u0bbe? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b9a\u0bb0\u0bbf\u0b9a\u0bc6\u0baf\u0bcd\u0baf \u0bae\u0bc1\u0baf\u0bb2\u0bc1\u0bae\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\n\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0baf\u0bb2\u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbe\u0bae\u0bcd. \u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd, \u0b85\u0ba4\u0bc1 \u0baa\u0bb4\u0bc8\u0baf \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \n\u0bae\u0bb1\u0bcd\u0bb1\u0bbf\u0baf\u0bae\u0bc8\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bc1\u0bae\u0bcd. \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0baa\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0ba4\u0bbf\u0bb1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b86\u0bb5\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b86\u0bb5\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b86\u0bb5\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0ba4\u0bc1 \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. \u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd, \n\u0b85\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0b95 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\u0b8e\u0ba9 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b85\u0bb5\u0ba9\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bc1\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b86\u0bb5\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb5\u0ba4\u0bc1 \u0bb0\u0ba4\u0bcd\u0ba4\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bc1 {0}\u0b90 \u0bae\u0bc7\u0bb2\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 + +#: SketchCode.java:258 +#, java-format +!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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.= + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\u0bb5\u0bbe\u0b9a\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u0b9a\u0bbf\u0bb2 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd "read-only" \u0b8e\u0ba9 \u0b95\u0bc1\u0bb1\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1,\u0b8e\u0ba9\u0bb5\u0bc7 \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \n\u0bb5\u0bc7\u0bb1\u0bc1 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0baa\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd,\n\u0baa\u0bbf\u0ba9\u0bcd\u0baa\u0bc1 \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd. + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bbf\u0ba9\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bcd\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u0baa\u0bc6\u0baf\u0bb0\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0bae\u0bc1\u0ba9\u0bcd \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \n\u0b9a\u0bc7\u0bae\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bc1 \u0baa\u0bb1\u0bcd\u0bb1\u0bbf \u0b8e\u0ba9\u0bcd\u0ba9 \u0ba8\u0bbf\u0ba9\u0bc8\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0ba9\u0bc8 \u0b8e\u0bb4\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=\u0baa\u0bc6\u0baf\u0bb0\u0bcd \u0bae\u0bc1\u0bb1\u0bcd\u0bb1\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0bb3\u0bcd\u0bb3\u0bbf \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bc1 \u0b86\u0bb0\u0bae\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9 \u0ba8\u0bc0\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bbf\u0b9f\u0bc8\u0baf\u0bbe\u0ba4\u0bc1. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u0bae\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0baf \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0b92\u0bb0\u0bc1 \u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1.\n(\u0b87\u0ba8\u0bcd\u0ba4 \u0ba8\u0bc7\u0bb0\u0bae\u0bcd \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba8\u0bbf\u0bb0\u0bb2\u0bbe\u0b95\u0bcd\u0b95 \u0b9a\u0bc2\u0bb4\u0bb2\u0bcd\n"real"\u0b90 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0b8f\u0ba4\u0bc1\u0bb5\u0bbe\u0ba9\u0ba4\u0bc1) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\u0b87\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"="{1}"\u0bb2\u0bcd \u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 "{0}" \u0b8e\u0ba9\u0bcd\u0bb1 \u0baa\u0bc7\u0bb0\u0bbf\u0bb2\u0bcd \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0ba9\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0bb2\u0bc7\u0baf\u0bc7 .cpp \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1. + +#: Sketch.java:425 +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:459 +Cannot\ Rename=\u0bae\u0bb1\u0bc1\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1 + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0bae\u0ba9\u0bcd\u0ba9\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd, "{0}"\u0b8e\u0ba9\u0bcd\u0bb1\u0bc1 \u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0b92\u0bb0\u0bc1 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 (\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0b89\u0bb1\u0bc8) \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb0\u0bc1\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"="{0}"\u0b90 "{1}"\u0b8e\u0ba9 \u0bae\u0bb0\u0bc1\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb0\u0bc1\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb0\u0bc1\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() \u0ba4\u0bb5\u0bb1\u0bc6\u0ba9 \u0b95\u0bc2\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b8e\u0ba9\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd "{0}"\u0b90 \u0ba8\u0bc0\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b8e\u0ba9\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0b89\u0bb1\u0bc1\u0ba4\u0bbf\u0baf\u0bbe\u0b95 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1 + +#: Sketch.java:620 +Couldn't\ do\ it=\u0b85\u0ba4\u0bc8 \u0b9a\u0bc6\u0baf\u0bcd\u0baf \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".="{0}"\u0b90 \u0ba8\u0bc0\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: \u0b89\u0bb3\u0bcd \u0baa\u0bbf\u0bb4\u0bc8 .. \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:724 +Sketch\ is\ read-only=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bb5\u0bbe\u0b9a\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u0b9a\u0bbf\u0bb2 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd "read-only" \u0b8e\u0ba9 \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1, \u0b8e\u0ba9\u0bb5\u0bc7 \n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc6\u0bbe\u0bb0\u0bc1 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. + +#: Sketch.java:743 +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 1.0\u0bb2\u0bcd ,.pde\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 .ino\u0bb5\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0ba9\u0bcd\u0ba9\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bc1 \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc1 \u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \n\u0bae\u0bbe\u0bb1\u0bbf\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. \u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bb3\u0bcd ("Save-As" \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bbf\u0baf\u0bb5\u0bc8 \u0b89\u0b9f\u0bcd\u0baa\u0b9f),\n\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bae\u0bcd. The extension\n\u0ba4\u0bb1\u0bcd\u0baa\u0bc7\u0bbe\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bb3\u0bbf\u0ba9\u0bcd \u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bc6\u0bae\u0bbf\u0ba4\u0bb5\u0bc1\u0b9f\u0ba9\u0bcd \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd, \u0b86\u0ba9\u0bbe\u0bb2\u0bcd \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd\n\u0b87\u0ba4\u0bc8 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0bb0\u0bc8\u0baf\u0bbe\u0b9f\u0bb2\u0bbf\u0bb2\u0bcd \u0b9a\u0bc6\u0baf\u0bb2\u0bbf\u0bb4\u0b95\u0bcd\u0b95 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb2\u0bbe\u0bae\u0bcd.\n\n\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0ba4\u0bcd\u0ba4\u0bc1, \u0b85\u0ba4\u0ba9\u0bcd \u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbe? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=\u0b8e\u0ba9 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b95\u0bca\u0baa\u0bcd\u0baa\u0bc1\u0bb0\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd... + +#: Sketch.java:865 +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. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bbf\u0b95\u0bb5\u0bc1\u0bae\u0bcd \u0ba4\u0bbf\u0bb1\u0bae\u0bc8\u0b9a\u0bbe\u0bb2\u0bbf + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bcd\u0b95\u0bc1\u0bb3\u0bcd \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95 \u0b92\u0bb0\u0bc1 \u0baa\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0ba4\u0bb0\u0bb5\u0bc1 \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?={0}\u0bb5\u0bbf\u0ba9\u0bcd \u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc8\u0baf \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bb5\u0bbe? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc8 \u0b9a\u0bc7\u0bb0\u0bcd\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb4\u0bc8 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0ba4\u0bb1\u0bcd\u0baa\u0bcb\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3 ''{0}'' \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Sketch.java:1078 +You\ can't\ fool\ me=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b8e\u0ba9\u0bcd\u0ba9\u0bc8 \u0b8f\u0bae\u0bbe\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1 + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0b87\u0ba8\u0bcd\u0ba4 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0baf\u0bb2\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \n\u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0b9a\u0bc6\u0bb0\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\n\u0ba8\u0bbe\u0ba9\u0bcd \u0b8e\u0ba9\u0bcd\u0ba9\u0bbe\u0bb2\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0ba8\u0bcd\u0ba4 \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc7\u0ba9\u0bcd. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=''{0}''\u0b90 \u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bbe\u0ba9 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 (\u0b85) \u0b8e\u0bb4\u0bc1\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\u0bae\u0bc1\u0b95\u0bcd\u0b95\u0bbf\u0baf \u0bb5\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc8 \u0b95\u0ba3\u0bcd\u0b9f\u0bc1\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=\u0baa\u0bbf\u0b9f\u0bbf\u0b95\u0bcd\u0b95\u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4 \u0bb5\u0bbf\u0ba4\u0bbf\u0bb5\u0bbf\u0bb2\u0b95\u0bcd\u0b95\u0bc1 \u0bb5\u0b95\u0bc8\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder={0}\u0b90 \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bbe\u0ba9 \u0b89\u0bb1\u0bc8\u0b95\u0bcd\u0b95\u0bc1\u0bb3\u0bcd \u0ba8\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0bb5\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0bbf\u0ba9\u0bc8 + +#: Sketch.java:1661 +Uploading...=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u0b87\u0bb0\u0bc1\u0bae \u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0ba9\u0bcd \u0b85\u0bb3\u0bb5\u0bc1\: {0} \u0b8e\u0ba3\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bcd (\u0b85\u0ba4\u0bbf\u0b95\u0baa\u0b9f\u0bcd\u0b9a \u0b85\u0bb3\u0bb5\u0bc1{1}) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\u0ba8\u0bbf\u0bb0\u0bb2\u0bcd \u0b85\u0bb3\u0bb5\u0bc8 \u0ba4\u0bc0\u0bb0\u0bcd\u0bae\u0bbe\u0ba9\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0ba9\u0bcd \u0baa\u0bc6\u0bb0\u0bbf\u0baf\u0ba4\u0bbe\u0b95 \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1; \u0b85\u0ba4\u0bc8 \u0b95\u0bc1\u0bb1\u0bc8\u0baa\u0bcd\u0baa\u0ba4\u0bc1 \u0baa\u0bb1\u0bcd\u0bb1\u0bbf\u0baf \u0bb5\u0bb4\u0bbf\u0bae\u0bc1\u0bb1\u0bc8\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1,\nhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0b90 \u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* comment */\u0bb2\u0bcd */\u0b90 \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:1796 +Sketch\ Disappeared=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0bae\u0bb1\u0bc8\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b89\u0bb1\u0bc8 \u0bae\u0bb1\u0bc8\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\n \u0b85\u0ba4\u0bc7 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bb1\u0bc1\u0baa\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bbf\u0bb1\u0bc7\u0ba9\u0bcd,\n\u0b86\u0ba9\u0bbe\u0bb2\u0bcd, \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0ba4\u0bb5\u0bbf\u0bb0 \u0bae\u0bb1\u0bcd\u0bb1\u0bb5\u0bc8\u0b95\u0bb3\u0bc8 \u0b87\u0bb4\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bc1\u0bb5\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0baa\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0b87\u0baf\u0bb2\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Sketch.java:1811 +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.=\u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0b95 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b87\u0ba8\u0bcd\u0ba4 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0ba9\u0bc8\u0baf\u0bbf\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb2\u0bbe\u0bae\u0bcd,\n\u0b87\u0ba4\u0bc1\u0bb5\u0bc7 \u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1 \u0bae\u0bb1\u0bcd\u0bb1\u0bca\u0bb0\u0bc1 \u0b89\u0bb0\u0bc8 \u0ba4\u0bbf\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b93\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0ba4\u0bb1\u0bcd\u0b95\u0bbe\u0ba9 \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9 \u0ba8\u0bc7\u0bb0\u0bae\u0bcd. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bbf\u0ba9\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bcd \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0b95\u0bb3\u0bcd ASCII \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd \n\u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bca\u0ba3\u0bcd\u0b9f\u0bbf\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0bb2\u0bbe\u0bae\u0bcd(\u0b86\u0ba9\u0bbe\u0bb2\u0bcd \u0b8e\u0ba3\u0bcd\u0ba3\u0bbf\u0bb2\u0bcd \u0b86\u0bb0\u0bae\u0bcd\u0baa\u0bae\u0bbe\u0b95\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1).\n\u0b85\u0bb5\u0bc8 64 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0bae\u0bc7\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95\u0b95\u0bcd\u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u0ba4\u0bca\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc1 \u0baa\u0bbf\u0bb4\u0bc8, \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 {0}\u0b95\u0bcd\u0b95\u0bc1 \u0b9a\u0bae\u0bb0\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4 \u0ba4\u0bca\u0b9f\u0bb0\u0bcd \u0ba4\u0bc1\u0bb1\u0bc8 {0} \u0b87\u0bb2\u0bcd\u0bb2\u0bc8 (\u0b85)\u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0bb2\u0b95\u0bc8 \u0b87\u0ba3\u0bc8\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u0b9a\u0bbe\u0ba4\u0ba9\u0bae\u0bcd \u0baa\u0ba4\u0bbf\u0bb2\u0bb3\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8, \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9 \u0ba4\u0bca\u0b9f\u0bb0\u0bcd \u0ba4\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd (\u0b85) \u0b8f\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bc1\u0bae\u0bcd \u0bae\u0bc1\u0ba9\u0bcd\u0baa\u0bb2\u0b95\u0bc8\u0baf\u0bc8 \u0bae\u0bc0\u0b9f\u0bcd\u0b9f\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u0baa\u0bb2\u0b95\u0bc8\u0b95\u0bcd\u0b95\u0bc1 \u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0bb5\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0ba9\u0bc8 \u0b8e\u0bb4\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0b90 \u0baa\u0bb0\u0bbf\u0ba8\u0bcd\u0ba4\u0bc1\u0bb0\u0bc8\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0ba8\u0bc1\u0ba3\u0bcd \u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bcd \u0b95\u0bb0\u0bc1\u0bb5\u0bbf \u0b95\u0ba3\u0bcd\u0b9f\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bb0\u0bbf\u0baf\u0bbe\u0ba9 \u0baa\u0bb2\u0b95\u0bc8\u0baf\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd> \u0baa\u0bb2\u0b95\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0bb2\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0baa\u0bb2\u0b95\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8; \u0b92\u0bb0\u0bc1 \u0baa\u0bb2\u0b95\u0bc8\u0baf\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd > \u0baa\u0bb2\u0b95\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0bb2\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0},{1}\u0b8e\u0ba9 \u0ba4\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0baf\u0ba4\u0bc1 + +#: debug/Compiler.java:426 +Error\ compiling.=\u0ba4\u0bca\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb4\u0bc8. + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=SPI \u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 > \u0ba8\u0bc2\u0bb2\u0b95 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0b87\u0bb1\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0ba4\u0bbf \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd. + +#: debug/Compiler.java:466 +\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\u0bb5\u0bbf\u0ba9\u0bcd \u0baa\u0b9f\u0bbf, \u0b88\u0ba4\u0bb0\u0bcd\u0ba8\u0bc6\u0b9f\u0bcd \u0ba8\u0bc2\u0bb2\u0b95\u0bae\u0bcd SPI \u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc7 \u0b9a\u0bbe\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1.\n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b85\u0ba8\u0bcd\u0ba4 \u0ba8\u0bc2\u0bb2\u0b95\u0bae\u0bcd (\u0b85) \u0b85\u0ba4\u0bc8 \u0b9a\u0bbe\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3 \u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc7 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' \u0b95\u0bc1\u0bb1\u0bbf\u0b9a\u0bcd\u0b9a\u0bca\u0bb2\u0bcd \u0b87\u0ba9\u0bbf\u0bae\u0bc7\u0bb2\u0bcd \u0b89\u0baa\u0baf\u0bcb\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4\u0bc1. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nArduino 1.0\u0ba9\u0bcd \u0baa\u0b9f\u0bbf, 'BYTE' \u0b95\u0bc1\u0bb1\u0bbf\u0b9a\u0bcd\u0b9a\u0bca\u0bb2\u0bcd \u0b87\u0ba9\u0bbf\u0bae\u0bc7\u0bb2\u0bcd \u0b89\u0baa\u0baf\u0bcb\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4\u0bc1.\n Serial.write()\u0b90 \u0b85\u0ba4\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bbe\u0b95 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd.\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server class, EthernetServer \u0b8e\u0ba9 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nArduino 1.0\u0ba9\u0bcd \u0baa\u0b9f\u0bbf, \u0b88\u0ba4\u0bb0\u0bcd\u0ba8\u0bc6\u0b9f\u0bcd \u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3 Server class, EthernetServer \u0b8e\u0ba9 \n\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client class, EthernetClient \u0b8e\u0ba9 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nArduino 1.0\u0ba9\u0bcd \u0baa\u0b9f\u0bbf, \u0b88\u0ba4\u0bb0\u0bcd\u0ba8\u0bc6\u0b9f\u0bcd \u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3 Client class, EthernetClient \u0b8e\u0ba9 \n\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp class, EthernetUdp \u0b8e\u0ba9 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nArduino 1.0\u0ba9\u0bcd \u0baa\u0b9f\u0bbf, \u0b88\u0ba4\u0bb0\u0bcd\u0ba8\u0bc6\u0b9f\u0bcd \u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0b89\u0bb3\u0bcd\u0bb3 Udp class, EthernetUdp \u0b8e\u0ba9 \n\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send(), Wire.write() \u0b8e\u0ba9 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1. + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nArduino 1.0\u0ba9\u0bcd \u0baa\u0b9f\u0bbf, Wire.send() \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0b95\u0bc2\u0bb1\u0bc1, Wire.write() \u0b8e\u0ba9 \n\u0ba8\u0bbf\u0bb2\u0bc8\u0ba4\u0bcd\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bbe\u0b95 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive(), Wire.read() \u0b8e\u0ba9 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nArduino 1.0\u0ba9\u0bcd \u0baa\u0b9f\u0bbf, Wire.receive() \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0b95\u0bc2\u0bb1\u0bc1, Wire.read() \u0b8e\u0ba9 \n\u0ba8\u0bbf\u0bb2\u0bc8\u0ba4\u0bcd\u0ba4\u0ba9\u0bcd\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bbe\u0b95 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1.\n\n + +#: EditorConsole.java:152 +Console\ Error=\u0baa\u0ba3\u0bbf\u0baf\u0b95 \u0baa\u0bbf\u0bb4\u0bc8 + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u0baa\u0ba3\u0bbf\u0baf\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bbe\u0b9f\u0bc1\u0b95\u0bb2\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0bae\u0bcd \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 \n\u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd\u0baa\u0bc7\u0bbe\u0ba4\u0bc1 \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0ba9\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u0ba4\u0bcb\u0bb1\u0bcd\u0bb1\u0bae\u0bcd & \u0b89\u0bb0\u0bc1\u0bb5\u0ba4\u0bcd\u0ba4\u0bc8 \u0b85\u0bae\u0bc8\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd\u0baa\u0bcb\u0ba4\u0bc1 \u0b85\u0baa\u0bbe\u0baf\u0bae\u0bbf\u0bb2\u0bcd\u0bb2\u0bbe\u0ba4 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u0baa\u0bbf\u0bb4\u0bc8 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bbf\u0b95\u0bb3\u0bcd \u0bb5\u0bb0\u0bc1\u0bae\u0bcd, \u0b86\u0ba9\u0bbe\u0bb2\u0bc1\u0bae\u0bcd Arduino \u0ba8\u0ba9\u0bcd\u0bb1\u0bbe\u0b95\u0bb5\u0bc7 \u0b87\u0baf\u0b99\u0bcd\u0b95\u0bc1\u0bae\u0bcd. + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u0b87\u0baf\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb3\u0bae\u0bcd \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0bbf\u0ba9\u0bc8 + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b95\u0ba3\u0bbf\u0ba9\u0bbf\u0b95\u0bcd\u0b95\u0bc1 \u0b87\u0baf\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb3\u0bae\u0bcd-\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0bcd\u0b9f \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b8f\u0bb1\u0bcd\u0bb1 \n\u0bae\u0bc1\u0baf\u0bb1\u0bcd\u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd\u0baa\u0bc7\u0bbe\u0ba4\u0bc1 \u0b92\u0bb0\u0bc1 \u0b85\u0bb1\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0baa\u0bbf\u0bb4\u0bc8 \u0b8f\u0bb1\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=\u0ba4\u0baf\u0bb5\u0bc1\u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 JDK 1.5 (\u0b85) \u0baa\u0bc1\u0ba4\u0bbf\u0baf\u0ba4\u0bc8 \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0bb5\u0bc1\u0bae\u0bcd + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino\u0bb5\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bc1\u0bb4\u0bc1 JDK \u0ba4\u0bc7\u0bb5\u0bc8 (JRE \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1). \nJDK 1.5 (\u0b85) \u0baa\u0bc1\u0ba4\u0bbf\u0baf\u0ba4\u0bc8 \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5\u0bb5\u0bc1\u0bae\u0bcd.\n\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0bb5\u0bbf\u0bb5\u0bb0\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0b95\u0bbe\u0ba3\u0bb2\u0bbe\u0bae\u0bcd. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0b89\u0bb1\u0bc8 \u0bae\u0bb1\u0bc8\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1 + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0bb1\u0bc8 \u0b87\u0bb2\u0bcd\u0bb2\u0bc8.\nArduino \u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bbe\u0ba9 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0bae\u0bbe\u0bb1\u0bbf\u0baf\u0baa\u0bbf\u0ba9\u0bcd,\n\u0ba4\u0bc7\u0bb5\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bbe\u0bb2\u0bcd \u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd. \nArduino \u0ba4\u0ba9\u0bcd\u0ba9\u0bc8\u0baa\u0bb1\u0bcd\u0bb1\u0bbf\u0baf\u0bc7 \u0bae\u0bc2\u0ba9\u0bcd\u0bb1\u0bbe\u0bb5\u0ba4\u0bc1 \u0bae\u0ba9\u0bbf\u0ba4\u0ba9\u0bcd \u0baa\u0bcb\u0bb2 \n\u0baa\u0bc7\u0b9a\u0bc1\u0bb5\u0ba4\u0bc8 \u0ba8\u0bbf\u0bb1\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0b95\u0bcd\u0b95\u0bca\u0bb3\u0bcd\u0bb3\u0bc1\u0bae\u0bcd. + +#: Base.java:532 +Time\ for\ a\ Break=\u0b87\u0b9f\u0bc8\u0bb5\u0bc7\u0bb3\u0bc8\u0b95\u0bcd\u0b95\u0bbe\u0ba9 \u0ba8\u0bc7\u0bb0\u0bae\u0bcd + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bb3\u0bc8 \u0ba4\u0bbe\u0ba9\u0bbe\u0b95 \u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f\u0bc1\u0bae\u0bcd \u0b87\u0ba9\u0bcd\u0bb1\u0bc8\u0baf \u0b89\u0b9a\u0bcd\u0b9a\u0bb5\u0bb0\u0bae\u0bcd\u0baa\u0bc8 \u0b8e\u0b9f\u0bcd\u0b9f\u0bbf\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd.\n \u0b9a\u0bbf\u0bb1\u0bbf\u0ba4\u0bc1 \u0ba8\u0b9f\u0bc8\u0baa\u0baf\u0bbf\u0bb1\u0bcd\u0b9a\u0bbf \u0bae\u0bc7\u0bb1\u0bcd\u0b95\u0bca\u0bb3\u0bcd\u0bb3\u0bb2\u0bbe\u0bae\u0bc7\!? + +#: Base.java:537 +Sunshine=\u0b9a\u0bc2\u0bb0\u0bcd\u0baf\u0bcb\u0ba4\u0baf\u0bae\u0bcd + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0b87\u0bb2\u0bcd\u0bb2\u0bc8 \u0b89\u0ba3\u0bcd\u0bae\u0bc8\u0baf\u0bbe\u0b95\u0bb5\u0bc7, \u0b87\u0ba4\u0bc1 \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0ba3\u0bb0\u0bcd\u0b9a\u0bcd\u0b9a\u0bbf \u0baa\u0bc6\u0bb1\u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bbf\u0baf \u0ba8\u0bc7\u0bb0\u0bae\u0bcd. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u0b92\u0bb0\u0bc1 Arduino \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba8\u0bbf\u0b9a\u0bcd\u0b9a\u0baf\u0bae\u0bbe\u0b95 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1 \u0bb5\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0bc1\u0b95\u0bbf\u0bb1\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bbe?

\u0b95\u0b9f\u0bc8\u0b9a\u0bbf\u0baf\u0bbe\u0b95 \u0ba4\u0bbf\u0bb1\u0ba8\u0bcd\u0ba4 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bc2\u0b9f\u0bbf\u0ba9\u0bbe\u0bb2\u0bcd Arduino \u0b85\u0ba3\u0bc8\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bc1\u0bae\u0bcd. + +#: Base.java:970 +Contributed=\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bbf\u0baa\u0bcd\u0baa\u0bc1 + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b87\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u0ba4\u0bc7\u0bb0\u0bcd\u0ba8\u0bcd\u0ba4\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b87\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bc8 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95 Arduino\u0bb5\u0bc8 \n\u0bae\u0bb1\u0bc1\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd. + +#: Base.java:1125 +#, 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}="{0}" \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bbe\u0ba4\u0bc1.\n\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0b95\u0bb3\u0bbf\u0bb2\u0bcd \u0b85\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc8 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd\n(\u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf \u0b87\u0bb2\u0bcd\u0bb2\u0bbe\u0bae\u0bb2\u0bcd ASCII \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd, \u0b87\u0ba4\u0bc1 \u0b8e\u0ba3\u0bcd\u0ba9\u0bbf\u0bb2\u0bcd \u0b86\u0bb0\u0bae\u0bcd\u0baa\u0bae\u0bbe\u0b95\u0b95\u0bcd \u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1).\n\u0b87\u0ba8\u0bcd\u0ba4 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bbf\u0baf\u0bbf\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bbf\u0b9f\u0bbf\u0bb5\u0bc1 \u0baa\u0bc6\u0bb1, {1}\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0ba8\u0bc0\u0b95\u0bcd\u0b95\u0bc1 + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0baa\u0bc6\u0baf\u0bb0\u0bcd \u0b95\u0bca\u0ba3\u0bcd\u0b9f \u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b85\u0bb3\u0b9a\u0bcd\u0b9a\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 + +#: Base.java:1202 +#, java-format +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)="{0}" \u0ba8\u0bc2\u0bb2\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0ba8\u0bc2\u0bb2\u0b95 \u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0b95\u0bb3\u0bbf\u0bb2\u0bcd \u0b85\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc8 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd \u0b8e\u0ba3\u0bcd\u0b95\u0bb3\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0b87\u0bb0\u0bc1\u0b95\u0bcd\u0b95 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd.\n(\u0b87\u0b9f\u0bc8\u0bb5\u0bc6\u0bb3\u0bbf \u0b87\u0bb2\u0bcd\u0bb2\u0bbe\u0bae\u0bb2\u0bcd ASCII \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bcd, \u0b87\u0ba4\u0bc1 \u0b8e\u0ba3\u0bcd\u0ba9\u0bbf\u0bb2\u0bcd \u0b86\u0bb0\u0bae\u0bcd\u0baa\u0bae\u0bbe\u0b95\u0b95\u0bcd \u0b95\u0bc2\u0b9f\u0bbe\u0ba4\u0bc1) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0ba8\u0bc2\u0bb2\u0b95\u0baa\u0bcd\u0baa\u0bc6\u0baf\u0bb0\u0bc8 \u0b85\u0bb2\u0b9f\u0bcd\u0b9a\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u0ba4\u0bb0\u0bb5\u0bc1 \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0baa\u0bc6\u0bb1\u0bc1\u0bb5\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0bbf\u0ba9\u0bc8 + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=Arduino \u0ba4\u0bb0\u0bb5\u0bc1 \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0baa\u0bc6\u0bb1\u0bc1\u0bb5\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb4\u0bc8. + +#: Base.java:1440 +Settings\ issues=\u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1 \u0b9a\u0bbf\u0b95\u0bcd\u0b95\u0bb2\u0bcd\u0b95\u0bb3\u0bcd + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino \u0b87\u0baf\u0b99\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8, \u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd \u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \n\u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0b92\u0bb0\u0bc1 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b89\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0bae\u0bb1\u0ba8\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc0\u0bb0\u0bcd\u0b95\u0bb3\u0bcd + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino \u0b87\u0baf\u0b99\u0bcd\u0b95\u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 \u0b8f\u0ba9\u0bc6\u0ba9\u0bcd\u0bb1\u0bbe\u0bb2\u0bcd,\n\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95\u0ba4\u0bcd\u0ba4\u0bc8 \u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0b89\u0bb1\u0bc8\u0baf\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd (\u0b85\u0bb2\u0bcd\u0bb2\u0ba4\u0bc1 \u0b89\u0bb0\u0bc1\u0bb5\u0bbe\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd)... + +#: Base.java:1647 +Problem\ Opening\ URL=URL\u0b90 \u0ba4\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0ba9\u0bc8 \u0b8e\u0bb4\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=URL\u0b90 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0ba4\u0bbf\u0bb1\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb0\u0b9a\u0bcd\u0b9a\u0ba9\u0bc8 \u0b8e\u0bb4\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u0b9a\u0bc1\u0bb1\u0bcd\u0bb1\u0bc1\u0b9a\u0bcd\u0b9a\u0bc2\u0bb4\u0bb2\u0bcd + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u0ba4\u0b95\u0bb5\u0bb2\u0bcd + +#: Base.java:1842 +Warning=\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}={0}\u0bb5\u0bbf\u0ba9\u0bcd \u0baa\u0bb4\u0bc8\u0baf \u0baa\u0ba4\u0bbf\u0baa\u0bcd\u0baa\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}={0}\u0bb5\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}={0}\u0b90 \u0ba8\u0bc0\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: EditorHeader.java:292 +New\ Tab=\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0ba4\u0bbe\u0bb5\u0bb2\u0bcd + +#: EditorHeader.java:300 +Rename=\u0bae\u0bb0\u0bc1\u0baa\u0bc6\u0baf\u0bb0\u0bbf\u0b9f\u0bc1\u0b95 + +#: EditorHeader.java:326 +Previous\ Tab=\u0bae\u0bc1\u0ba8\u0bcd\u0ba4\u0bc8\u0baf \u0ba4\u0bbe\u0bb5\u0bb2\u0bcd + +#: EditorHeader.java:340 +Next\ Tab=\u0b85\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0ba4\u0bbe\u0bb5\u0bb2\u0bcd + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95 + +#: EditorToolbar.java:41 +Open=\u0ba4\u0bbf\u0bb1 + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0ba4\u0bbf\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf \u0b9a\u0bbe\u0bb3\u0bb0\u0bae\u0bcd + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u0bae\u0bb1\u0bcd\u0bb1\u0bc6\u0bbe\u0bb0\u0bc1 \u0b9a\u0bbe\u0bb3\u0bb0\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \u0ba4\u0bbf\u0bb1 + +#: Platform.java:167 +No\ launcher\ available=\u0b8e\u0ba8\u0bcd\u0ba4 \u0b8f\u0bb5\u0bc1\u0ba4\u0bbf\u0bb0\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b95\u0bbf\u0b9f\u0bcd\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: 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=\u0b95\u0bc1\u0bb1\u0bbf\u0baa\u0bcd\u0baa\u0bbf\u0b9f\u0baa\u0bcd\u0baa\u0b9f\u0bbe\u0ba4 \u0b87\u0baf\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb3\u0bae\u0bcd, \u0b8e\u0ba8\u0bcd\u0ba4 \u0b8e\u0bb5\u0bc1\u0ba4\u0bbf\u0bb0\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b87\u0bb2\u0bcd\u0bb2\u0bc8.\nURL (\u0b85) \u0b89\u0bb0\u0bc8\u0b95\u0bb3\u0bc8 \u0ba4\u0bbf\u0bb1\u0b95\u0bcd\u0b95, \n"launcher\=/path/to/app" \u0b8e\u0ba9\u0bcd\u0bb1 \u0bb5\u0bb0\u0bbf\u0baf\u0bc8 preferences.txt\u0bb2\u0bcd \u0b9a\u0bc7\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u0bb5\u0ba3\u0bcd\u0ba3 \u0b95\u0bb0\u0bc1 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0bae\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. + +#: Preferences.java:80 +Browse=\u0b89\u0bb2\u0bb5\u0bc1 + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=\u0b95\u0b9f\u0bbe\u0bb2\u0ba9\u0bcd + +#: Preferences.java:87 +Chinese\ Simplified=\u0b87\u0bb2\u0b95\u0bc1 \u0ba8\u0b9f\u0bc8 \u0b9a\u0bc0\u0ba9\u0bae\u0bcd + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=\u0b9f\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd + +#: Preferences.java:90 +Dutch=\u0b89\u0bb2\u0bbe\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0bae\u0bcd + +#: Preferences.java:91 +English=\u0b86\u0b99\u0bcd\u0b95\u0bbf\u0bb2\u0bae\u0bcd + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=\u0baa\u0bbf\u0bb0\u0b9e\u0bcd\u0b9a\u0bc1 + +#: Preferences.java:94 +Filipino=\u0b83\u0baa\u0bbf\u0bb2\u0bbf\u0baa\u0bbf\u0ba9\u0bc7\u0bbe + +#: Preferences.java:95 +Galician=\u0b95\u0bbe\u0bb2\u0bbf\u0b9a\u0bbf\u0baf\u0ba9\u0bcd + +#: Preferences.java:96 +German=\u0b9c\u0bc6\u0bb0\u0bcd\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd + +#: Preferences.java:97 +Greek=\u0b95\u0bbf\u0bb0\u0bc7\u0b95\u0bcd\u0b95\u0bae\u0bcd + +#: Preferences.java:98 +Hungarian=\u0bb9\u0b99\u0bcd\u0b95\u0bc7\u0bb0\u0bbf\u0baf\u0ba9\u0bcd + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=\u0b87\u0ba4\u0bcd\u0ba4\u0bbe\u0bb2\u0bbf\u0baf\u0ba9\u0bcd + +#: Preferences.java:101 +Japanese=\u0b9c\u0baa\u0bcd\u0baa\u0ba9\u0bc0\u0bb8\u0bcd + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=\u0bb2\u0bc7\u0b9f\u0bcd\u0bb5\u0bbf\u0baf\u0ba9\u0bcd + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=\u0baa\u0bb0\u0bcd\u0bb8\u0bbf\u0baf\u0ba9\u0bcd + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=\u0bb0\u0bc7\u0bbe\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=\u0bb8\u0bcd\u0baa\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1\u0ba8\u0bbf\u0bb2\u0bc8 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd Arduino\u0bb5\u0bc8 \u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}={0}\u0bb2\u0bcd \u0b87\u0bb0\u0bc1\u0ba8\u0bcd\u0ba4\u0bc1 \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 + +#: Preferences.java:261 +Error\ reading\ preferences=\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b99\u0bcd\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb4\u0bc8 + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0b95\u0bcd \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc8 \u0baa\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0ba4\u0bbf\u0bb2\u0bcd \u0baa\u0bbf\u0bb4\u0bc8. \u0ba4\u0baf\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1 {0}\u0bb5\u0bc8 \u0b85\u0b95\u0bb1\u0bcd\u0bb1\u0bb5\u0bc1\u0bae\u0bcd((\u0b85) \u0ba8\u0b95\u0bb1\u0bcd\u0bb1\u0bb5\u0bc1\u0bae\u0bcd)\n\u0baa\u0bbf\u0ba9\u0bcd\u0baa\u0bc1 Arduino\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0ba4\u0bca\u0b9f\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd. + +#: Preferences.java:299 +Sketchbook\ location\:=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0b87\u0b9f\u0bae\u0bcd\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1\u0baa\u0bcd\u0baa\u0bc1\u0ba4\u0bcd\u0ba4\u0b95 \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (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) + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u0ba4\u0bbf\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc1\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u0b87\u0ba4\u0ba9\u0bcd \u0baa\u0bcb\u0ba4\u0bc1 \u0bb5\u0bc7\u0bb0\u0bcd\u0baa\u0bcb\u0b9a\u0bc1 \u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b95\u0bbe\u0ba3\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd\: + +#: Preferences.java:373 +compilation\ =\u0ba4\u0bc6\u0bbe\u0b95\u0bc1\u0baa\u0bcd\u0baa\u0bc1 + +#: Preferences.java:375 +upload=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 + +#: Preferences.java:384 +Verify\ code\ after\ upload=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bbf\u0baf\u0bb5\u0bc1\u0b9f\u0ba9\u0bcd \u0b95\u0bc1\u0bb1\u0bbf\u0baf\u0bc0\u0b9f\u0bcd\u0b9f\u0bc8 \u0b9a\u0bb0\u0bbf\u0baa\u0bbe\u0bb0\u0bcd\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd + +#: Preferences.java:393 +Use\ external\ editor=\u0baa\u0bc1\u0bb1 \u0ba4\u0bbf\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bbf\u0baf\u0bc8 \u0baa\u0baf\u0ba9\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95 + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0baa\u0bc7\u0bbe\u0ba4\u0bc1 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bcd \u0b89\u0bb3\u0bcd\u0bb3\u0ba4\u0bbe \u0b8e\u0ba9 \u0baa\u0bbe\u0bb0\u0bcd + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0b9a\u0bc7\u0bae\u0bbf\u0b95\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0baa\u0bca\u0ba4\u0bc1 \u0bb5\u0bb0\u0bc8\u0bb5\u0bc1 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0ba8\u0bc0\u0b9f\u0bcd\u0b9f\u0bbf\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc1\u0b95\u0bcd\u0b95\u0bc1 \u0baa\u0bc1\u0ba4\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0b95\u0bcd\u0b95\u0bb5\u0bc1\u0bae\u0bcd (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=\u0ba4\u0bbe\u0ba9\u0bbe\u0b95\u0bb5\u0bc7 .ino \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 Arduino\u0bb5\u0bc1\u0b9f\u0ba9\u0bcd \u0ba4\u0bca\u0b9f\u0bb0\u0bcd\u0baa\u0bc1 \u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bb5\u0bc1\u0bae\u0bcd + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0bae\u0bc7\u0bb2\u0bc1\u0bae\u0bcd \u0bb5\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0ba4\u0bcd\u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b95\u0bb3\u0bc8 \u0ba8\u0bc7\u0bb0\u0b9f\u0bbf\u0baf\u0bbe\u0b95 \u0b95\u0bc7\u0bbe\u0baa\u0bcd\u0baa\u0bbf\u0bb2\u0bcd \u0ba4\u0bbf\u0bb0\u0bc1\u0ba4\u0bcd\u0ba4\u0bb2\u0bbe\u0bae\u0bcd + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(Arduino \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0b9f\u0bbe\u0ba4\u0baa\u0bcb\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0b8e\u0bb4\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0bb0\u0bc1 \u0b85\u0bb3\u0bb5\u0bc8 {0} \u0b85\u0bb3\u0b9a\u0bcd\u0b9a\u0bbf\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 diff --git a/app/src/processing/app/Resources_tl.po b/app/src/processing/app/Resources_tl.po new file mode 100644 index 000000000..e2f0e1740 --- /dev/null +++ b/app/src/processing/app/Resources_tl.po @@ -0,0 +1,1657 @@ +# Filipino translations for Arduino IDE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# David A. Mellis <>, 2012. +# Translation to Filipino by Marc Lester Tan + +msgid "" +msgstr "" +"Project-Id-Version: Bersyon 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: Marc Lester Tan \n" +"Language-Team: Filipino \n\n" +"Language: tl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=ASCII\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "Walang naidagdag na file sa sketch." + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "Isang file ang naidagdag sa sketch." + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0} files and naidagdag sa sketch." + +#: Editor.java:484 +msgid "File" +msgstr "File" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "Bago" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "Buksan..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "Sketchbook" + +#: Editor.java:509 +msgid "Examples" +msgstr "Mga Halimbawa" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "Isara" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "I-save" + +#: Editor.java:530 +msgid "Save As..." +msgstr "I-save bilang" + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "I-upload" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "I-upload gamit ang Programmer" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "Kompigurasyon ng Pahina" + +#: Editor.java:564 +msgid "Print" +msgstr "I-print" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "Mga Kagustuhan" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "Quit" + +#: Editor.java:600 +msgid "Sketch" +msgstr "Sketch" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "Beripikahin / I-compile" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "Humango ng Library..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "Ipakita ang Sketch Folder" + +#: Editor.java:643 +msgid "Add File..." +msgstr "Magdagdag ng File..." + +#: Editor.java:656 +msgid "Tools" +msgstr "Mga Kasangkapan" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "Serial Monitor" + +#: Editor.java:682 +msgid "Board" +msgstr "Board" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "Serial Port" + +#: Editor.java:695 +msgid "Programmer" +msgstr "Programmer" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "Ilagay ang Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "serialMenu ay null" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "ang pangalan ay null" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "may mali sa pagkuha ng listahan ng port" + +#: Editor.java:1002 +msgid "Help" +msgstr "Tulong" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "Mga Patnubay sa Pagsisimula" + +#: Editor.java:1049 +msgid "Environment" +msgstr "Environment" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "Mga Sagot sa Problema" + +#: Editor.java:1065 +msgid "Reference" +msgstr "Sanggunian" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "Hanapin sa Sanggunian" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "Mga Karaniwang Tanong" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "Bisitahin ang Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "Tungkol sa Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "Baguhin" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "Ipawalang Bisa" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "Ulitin Muli" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "I-Cut" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "Kopyahin" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "Kopyahin para sa Forum" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "Kopyahin bilang HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "Ilagay" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "Piliin Lahat" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "I-Comment/I-Uncomment" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "Dagdagan ang Indent" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "Bawasan ang Indent" + +#: Editor.java:1220 +msgid "Find..." +msgstr "Hanapin..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "Hanapin ang Susunod" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "Hanapin ang Nauna" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "Gamitin ang Napili sa Paghahanap" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "Pumili muna ng salita na hahanapin sa sanggunian." + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "Walang sanggunian para sa \"{0}\"" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "Kinokompile ang Sketch..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "Tapos na ang pagkokompile." + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "I-Save ang mga pagbabago sa \"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr " Nais mo bang I-save ang iyong mga nagawa
bago isara?

Mawawala ang lahat ng ginawa kapag hindi mo I-sesave." + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "Kanselahin" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "Huwag I-Save" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "Mali ang File na napili" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Maari lamang buksan ng Processing ang sariling sketches\n" +"at iba pang file na may extension na .ino o .pde" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "OK" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"Ang file \"{0}\" ay nararapat na nasa loob\n" +"ng sketch folder na \"{1}\".\n" +"I-create ang folder, ilipat ang file at magpatuloy?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "Inililipat" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "Mali" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "Mayroon nang folder na \"{0}\". Hindi mabuksan ang sketch." + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "Hindi makalikha ng sketch folder." + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "Hindi makopya sa tamang lokasyon" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "Hindi makalikha ng sketch." + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "Sine-save..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "Tapos na sa pag save." + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "Nakansela ang pag save." + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"Hindi makita ang serial port na {0}.\n" +"Subukan muli ang pagupload gamit ang ibang serial port?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "Ina-upload sa I/O Board..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "Tapos na ang pagupload." + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "Nakansela ang pag upload." + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "I-save ang mga nagawa bago i-export?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "Nakansela ang pag export, kailangan muna i-save ang mga nagawa." + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "Inilalagay ang bootloader sa I/O Board (Maaring abutin ng isang minuto)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "Tapos na ang paglagay ng bootloader." + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "May mali habang naglalagay ng bootloader." + +#: Editor.java:2500 +msgid "Printing..." +msgstr "Nagpi-print..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "Tapos na ang pag print." + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "May mali habang nagpi-print." + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "Nakansela ang pagpi-print." + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "May mali sa linya: {0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "Buksan ang URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"May bagong bersyon ng Arduino,\n" +"nais mo bang magpunta sa Arduino download page?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "Oo" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "Hindi" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "I-update" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "Hanapin:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "Palitan ng:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "Ignore Case" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "Wrap Around" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "Palitan Lahat" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "Palitan" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "Palitan at Hanapin" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "Nakaraan" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "Hanapin" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "Ipadala" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "Autoscroll" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "Walang pagtatapos sa linya" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "Bagong linya" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "Carriage return" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "Parehong NL at CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr "baud" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "Ang serial port ''{0}'' ay kasalukuyang ginagamit. Subukang ihinto ang ibang programa na maaring gumagamit nito." + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "May mali sa pagbukas ng serial port ''{0}''." + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"Hindi makita ang serial port na ''{0}''. Tama ba ang iyong napili sa Mga Kasangkapan > " +"Serial Port menu?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() byte buffer ay masyadong maliit para sa {0} bytes hanggang sa " +"char {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "May mali sa loob ng Serial.{0}()" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "Auto Format" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "Nakansela ang Auto Format: Napakaraming kanang panaklong." + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "Nakansela ang Auto Format: Napakaraming kaliwang panaklong." + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "Nakansela ang Auto Format: Napakaraming kanang panaklaw." + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "Tapos na ang pag Auto Format" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "Itama ang Encoding at I-reload" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +msgstr "Alisin ang lahat ng nagawa at i-reload ang sketch?" + +#: 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 "" +"May pagkakamali habang sinusubukang ayusin ang file encoding.\n" +"Huwag subukang i-save ang sketch na ito dahil maaaring mapatungan\n" +"ang lumang bersion. Gamitin ang Buksan para buksan muli ang sketch.\n" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "Archive Sketch" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "Hindi mai-archive and sketch" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"Nakansela ang pag archive ng sketch sapagkat\n" +"hindi ito mai-save ng tama." + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "I-archive ang sketch bilang:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "Nakansela ang pag-archive ng sketch" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "May mali habang niloload ang code {0}" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"Ang \"{0}\" ay naglalaman ng hindi maintidihang titik. Kung ang code na ito ay ginawa mula sa " +"lumang bersyon ng Processing, Kinakailangan mong gamitin ang Mga Kasangkapan -> Itama ang Encoding at " +"I-reload para magamit ang UTF-8 encoding sa sketch. Kung hindi naman ay kinakailangan mong " +"alisin ang mga hindi maintidihang titik para maalis ang babalang ito." + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "Ang sketch ay Read-Only" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"Ang ilang files ay \"read-only\", kaya kinakailangan\n" +"mong i-save ang sketch sa ibang lokasyon,\n" +"at subukan muli." + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "Pangalan para sa bagong file:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "Walang pangalan ang Sketch" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"I-save muna ang sketch bago \n" +"palitan ng pangalan?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "May mali sa pag palit ng pangalan" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "Hindi maaaring magsimula ang pangalan sa tuldok." + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\" ay hindi tamang extension." + +#: Sketch.java:378 +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 "" +"Hindi maaaring gumamit ng extension ang main file.\n" +"(Sa tingin ko ay oras na para ikaw ay gumamit\n" +"ng totoong programming environment)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "Hindi" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "Mayroon ng file na nagngangalang \"{0}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr "Hindi maaaring magkaroon ng .cpp file na kaparehong pangalan ng sketch." + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"Hindi maaaring palitan ang pangalan sa \"{0}\"\n" +"sapagkat mayroon ng .cpp file na may ganyang pangalan sa sketch." + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "Hindi maaaring palitan ang pangalan" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "Paumanhin, mayroon ng sketch o folder na may pangalang \"{0}\"." + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "Ayaw mapalitan ang pangalan ng sketch. (0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "Hindi mapalitan ang pangalan mula \"{0}\" para maging \"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "Hindi mapalitan ang pangalan ng sketch. (1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "Hindi mapalitan ang pangalan ng sketch. (2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile() ay nagbalik ng false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "Nais mo bang burahin ang sketch na ito?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "Nais mo bang burahin ang \"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "Alisin" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "Hindi ko magawa yan" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "Hindi ko madelete \"{0}\"." + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode: internal error...hindi makita ang code" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "Ang sketch ay read-only" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"Ang ilang files ay \"read-only\", kaya kinakailangan\n" +"mong i-resave ang sketch sa ibang lokasyon." + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"disable this in the Preferences dialog.\n" +"\n" +"Save sketch and update its extension?" +msgstr "" +"Sa Arduino 1.0, ang default na file extension ay naging\n" +".ino mula .pde. Ang mga bagong sketches (kasama ung mga nagawa \n" +"gamit ang \"I-save bilang\" ay gagamit ng bagong extension. Ang extension\n" +"ng mga dati ng sketches ay mababago pag save, ngunit maaari mo itong\n" +"mabago sa Mga Kagustuhan na dialog.\n" +"\n" +"I-save ang sketch at baguhin ang kanyang extension?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "I-save ang sketch folder bilang..." + +#: Sketch.java:865 +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}\"\n" +"dahil ang mayroon na itong .cpp na may parehong pangalan." + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "Napaka Borges mo" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"Hindi mo maaaring i-save ang sketch sa loob ng folder\n" +"kung saaan nakalagay sketch. Magpapatuloy lamang ito ng walang katapusan." + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "Pumili ng image o kahit anong data file na kokopyahin sa iyong sketch" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "Palitan ang version {0}?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "May mali sa pagdagdag ng file" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "Hindi mabura ang file na ''{0}''." + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "Hindi mo ako maloloko" + +#: Sketch.java:1079 +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 "" +"Ang file na ito ay nakopya na sa " +"lokasyon kung saan mo sya gustong ikopya.\n" +"Wala na akong gagawin." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "Hindi maidagdag ang ''{0}'' sa sketch" + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "Nawawala ang build folder o hindi sya masulatan" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "Hindi makita ang main class" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Hindi nahuling exception type: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "May problema sa paglipat ng {0} sa build folder" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "Inaupload..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "Sukat ng Binary sketch: {0} bytes (of a {1} byte maximum)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "Hindi malaman ang sukat ng programa: {0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"Masyadong malaki ang sketch; Tignan ang http://www.arduino.cc/en/Guide/Troubleshooting#size para " +"sa mga patnubay para mapaliit ito." + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "Nawawala ang */ sa dulo ng /* comment */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "Nawala ang sketch" + +#: Sketch.java:1797 +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 "" +"Nawala ng folder ng sketch.\n" +" Susubukang ire-save sa parehong lokasyon,\n" +"subalit lahat maliban sa code ay mawawala." + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "Hindi mai-resave ang sketch" + +#: Sketch.java:1811 +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 "" +"Hindi mai-resave ng maayos ang sketch. Maaaring malaki na ang iyong problema sa oras na ito,\n" +"kaya mas mabuti pang icopy-paste mo na ang code mo sa ibang text editor." + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"Kinakailangang palitan ang sketch name. Ang pangalan ng sketch ay maaari lamang magkaroon ng\n" +"ASCII characters at mga numero (ngunit hindi maaaring magsimula sa numero).\n" +"Hindi rin maaaring lumagpas ng 64 na titik ang pangalan." + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "May error sa compiler, Pakisubmit ang code na ito sa {0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"hindi makita ang napiling serial port {0} o kaya naman ay hindi kunektado ang iyong board" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"Hindi tumutugon ang device, siguraduhing tama ang napiling serial port o kaya ay pindutin ang RESET " +"bago mag export" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"May problema sa pagupload sa board. Tignan ang http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload para sa mga karagdagang kaalaman." + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"Mali ang nakitang microcontroller. Napili mo ba ang tamang board mula sa Mga Kasangkapan " +"> Board menu?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasangkapan > Board menu." + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0} ay nagbalik ng {1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "May mali sa pagcompile" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"Mula sa Arduino 0019, ang Ethernet library ay nakasalalay sa SPI library.\n" +"Maaaring ginagamit mo ito o kaya ibang library na nakasalalay sa SPI library.\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "Ang 'BYTE' keyword ay hindi na sinusuportahan." + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"Mula sa Arduino 1.0, ang 'BYTE' keyword ay hindi na susuportahan.\n" +"Maaari lamang na gumamit na lang ng Serial.write().\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Ang Server class ay pinalitan ng pangalan at naging EthernetServer." + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"Mula sa Arduino 1.0, ang Server class mula sa Ethernet library ay papalitan na para maging " +"EthernetServer.\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Ang Client class ay pinangalanan ng EthernetClient." + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Mula sa Arduino 1.0, ang Client class mula sa Ethernet library ay pinangalanan ng " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Ang Udp class ay pinangalanang EthernetUdp." + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"Mula sa Arduino 1.0, ang Udp class mula sa Ethernet library hay pinangalanan ng " +"EthernetClient.\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send() ay pinangalanan ng Wire.write()." + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Mula sa Arduino 1.0, ang Wire.send() function ay pinangalanan ng Wire.write() para sa " +"pagkakakapareho sa ibang libraries.\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive() ay pinangalanang Wire.read()." + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"Mula sa Arduino 1.0, ang Wire.receive() function ay pinangalanan ng Wire.read() " +"para sa pagkakapareho sa ibang libraries.\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "May error sa console" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"May nangyaring problema habang inoopen ang files\n" +"na gagamitin para mastore ang console output." + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "Non-fatal error habang nagseset ng Look & Feel" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "Narito ang error message, subalit ang Arduino ay gagana pa rin ng maayos" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "May problema sa pagset ng Platform" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"May hindi alam na error ang nangyari habang niloload ang \n" +"platform-specific code para sa iyong machine." + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "Maaari lamang na maginstall ng JDK 1.5 pataas" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Ang Arduino ay nangangailangan ng full JDK (hindi lamang JRE)\n" +"para gumana. Maaari lamang na maginstall ng JDK 1.5 pataas.\n" +"Maaaring makakuha ng karagdagang kaalaman sa sanggunian." + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "Nawala ang folder ng sketchbook" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"Ang sketchbook folder ay hindi ko na makita.\n" +"Gagamitin ko na ang default lokasyon ng sketchbook \n" +"at gagawa ng bagong sketchbook folder kung\n" +"kinakailangan. At hindi ko na kakausapin\n" +"ang sarili ko." + +#: Base.java:532 +msgid "Time for a Break" +msgstr "Oras na para magpahinga" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"Naabot mo na ang limit para sa pagauto-name ng bagong sketches\n" +"para sa araw na ito. Bakit hindi ka maglakad lakad sa paligid-ligid?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "Sinag ng araw" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "Hindi nga walang biro, oras na para makalanghap ka ng sariwang hangin." + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "Magbukas ng Arduino sketch..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" Sigurado ka ba " +"na gusto mo mag Quit?

Ang pagsara ng huling nakabukas na sketch ay magki-quit ng Arduino." + +#: Base.java:970 +msgid "Contributed" +msgstr "Nakapagbahagi" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "Hindi makita ang sketch" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"Ang napiling sketch nay hindi na makita.\n" +"kinakailangan mong i-restart ang Arduino para maupdate\n" +"ang sketchbook menu." + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"Ang sketch \"{0}\" ay hindi maaaring gamitin.\n" +"Ang pangalan ng sketch ay maaarin lamang magkaroon ng titik at numero\n" +"(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero).\n" +"Para maaalis ang message na ito, alisin ang sketch mula sa \n" +"{1}" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "Hindi papansin ang sketch na may maling pangalan" + +#: Base.java:1202 +#, java-format +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 "" +"Ang library \"{0}\" ay maaaring gamitin.\n" +"Ang pangalan ng library ay maaari lamang magkaron ng titik at numero.\n" +"(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero)" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "Hindi papansinin ang library na may maling pangalan" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "May problema sa pagkuha ng data folder" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "May problema sa pagkuha ng Arduino data folder" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "May problema sa Settings" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Ayaw gumana ng Arduino sapagkat hindi ito\n" +"makagawa ng folder kung saan ilalagay ang iyong settings." + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "Nakalimutan mo ang iyong sketchbook" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Ayaw gumana ng Arduino sapagkat hindi ito\n" +"makagawa ng folder kung saan ilalagay ang iyong sketchbook." + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "Pumili (o gumawa ng bago) ng folder para sa sketches..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "May problema sa pagbukas ng URL" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"Hindi mabuksan ang URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "May problema sa pagbukas ng Folder" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"Hindi mabuksan ang folder\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "environment" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "Mensahe" + +#: Base.java:1842 +msgid "Warning" +msgstr "Warning" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "Hindi maaalis ang lumang bersyon na {0}" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "Hindi mapalitan ang {0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "Hindi maalis ang {0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "Bagong Tab" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "Palitan ng Pangalan" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "Nakaraang Tab" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "Susunod na Tab" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "Beripikahin" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "Buksan" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "Bagong Editor Window" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "Buksan sa ibang Window" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "Walang launcher na maaaring magamit" + +#: 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 "" +"Hindi malamang platform, walang launcher na maaaring magamit.\n" +"Para mabuksan ang URLs o folders, magdagdag ng\n" +"\"launcher=/path/to/app\" sa preferences.txt" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"Hindi mabasa ang color theme settings.\n" +"Kinakailangan mong i-reinstall ang Processing." + +#: Preferences.java:80 +msgid "Browse" +msgstr "Browse" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "Catalan" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "Chinese Simplified" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "Danish" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "Dutch" + +#: Preferences.java:91 +msgid "English" +msgstr "Ingles" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "French" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "Filipino" + +#: Preferences.java:95 +msgid "Galician" +msgstr "Galician" + +#: Preferences.java:96 +msgid "German" +msgstr "German" + +#: Preferences.java:97 +msgid "Greek" +msgstr "Greek" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "Hungarian" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "Italian" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "Japanese" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "Latvian" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "Persian" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "Romanian" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "Spanish" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"Hindi mabasa ang default settings.\n" +"Kinakailangan mong i-reinstall ang Arduino." + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "Hindi mabasa ang mga kagustuhan mula sa {0}" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "May problema sa pagread ng preferences" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"May problema sa pagbasa ng preferences file. Maaari lamang na i-delete (o ilipat) ang \n" +"{0} at irestart ang Arduino." + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "Lokasyon ng Sketchbook:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "Pumili ng bagong lokasyon ng sketchbook" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (kinakailangang i-restart ang Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "Sukat ng font para sa Editor:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "Ipakita ang verbose na output: " + +#: Preferences.java:373 +msgid "compilation " +msgstr "compilation" + +#: Preferences.java:375 +msgid "upload" +msgstr "upload" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "I-verify ang code pagkatapos mai-upload" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "Gumamit ng ibang editor" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "Suriin ang updates tuwing magsisimula" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "Baguhin ang sketch files na gumamit ng bagong extension kapag nagsave (.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "Kusang iassociate ang .ino files sa Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "Madami pang preferences ang maaaring baguhin mula sa file" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(baguhin lamang kung hindi tumatakbo ang Arduino)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "hindi papansinin ang maling sukat ng font {0}" diff --git a/app/src/processing/app/Resources_tl.properties b/app/src/processing/app/Resources_tl.properties new file mode 100644 index 000000000..ad0982c6e --- /dev/null +++ b/app/src/processing/app/Resources_tl.properties @@ -0,0 +1,1034 @@ +# Filipino translations for Arduino IDE package. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# David A. Mellis <>, 2012. +# Translation to Filipino by Marc Lester Tan +!=Project-Id-Version\: Bersyon 1.0\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: Marc Lester Tan \nLanguage-Team\: Filipino \n\nLanguage\: tl\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=Walang naidagdag na file sa sketch. + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=Isang file ang naidagdag sa sketch. + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0} files and naidagdag sa sketch. + +#: Editor.java:484 +File=File + +#: Editor.java:486 EditorToolbar.java:41 +New=Bago + +#: Editor.java:494 Base.java:903 +Open...=Buksan... + +#: Editor.java:503 +Sketchbook=Sketchbook + +#: Editor.java:509 +Examples=Mga Halimbawa + +#: Editor.java:514 Editor.java:1977 +Close=Isara + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=I-save + +#: Editor.java:530 +Save\ As...=I-save bilang + +#: Editor.java:538 EditorToolbar.java:41 +Upload=I-upload + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=I-upload gamit ang Programmer + +#: Editor.java:556 +Page\ Setup=Kompigurasyon ng Pahina + +#: Editor.java:564 +Print=I-print + +#: Editor.java:576 Preferences.java:279 +Preferences=Mga Kagustuhan + +#: Editor.java:586 Base.java:782 +Quit=Quit + +#: Editor.java:600 +Sketch=Sketch + +#: Editor.java:602 +Verify\ /\ Compile=Beripikahin / I-compile + +#: Editor.java:629 +Import\ Library...=Humango ng Library... + +#: Editor.java:634 +Show\ Sketch\ Folder=Ipakita ang Sketch Folder + +#: Editor.java:643 +Add\ File...=Magdagdag ng File... + +#: Editor.java:656 +Tools=Mga Kasangkapan + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=Serial Monitor + +#: Editor.java:682 +Board=Board + +#: Editor.java:690 +Serial\ Port=Serial Port + +#: Editor.java:695 +Programmer=Programmer + +#: Editor.java:699 +Burn\ Bootloader=Ilagay ang Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=serialMenu ay null + +#: Editor.java:927 Editor.java:934 +name\ is\ null=ang pangalan ay null + +#: Editor.java:986 +error\ retrieving\ port\ list=may mali sa pagkuha ng listahan ng port + +#: Editor.java:1002 +Help=Tulong + +#: Editor.java:1041 +Getting\ Started=Mga Patnubay sa Pagsisimula + +#: Editor.java:1049 +Environment=Environment + +#: Editor.java:1057 +Troubleshooting=Mga Sagot sa Problema + +#: Editor.java:1065 +Reference=Sanggunian + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=Hanapin sa Sanggunian + +#: Editor.java:1083 +Frequently\ Asked\ Questions=Mga Karaniwang Tanong + +#: Editor.java:1091 +Visit\ Arduino.cc=Bisitahin ang Arduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=Tungkol sa Arduino + +#: Editor.java:1116 +Edit=Baguhin + +#: Editor.java:1119 Editor.java:1341 +Undo=Ipawalang Bisa + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=Ulitin Muli + +#: Editor.java:1135 Editor.java:2652 +Cut=I-Cut + +#: Editor.java:1143 Editor.java:2660 +Copy=Kopyahin + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=Kopyahin para sa Forum + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=Kopyahin bilang HTML + +#: Editor.java:1175 Editor.java:2684 +Paste=Ilagay + +#: Editor.java:1184 Editor.java:2692 +Select\ All=Piliin Lahat + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=I-Comment/I-Uncomment + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=Dagdagan ang Indent + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=Bawasan ang Indent + +#: Editor.java:1220 +Find...=Hanapin... + +#: Editor.java:1235 +Find\ Next=Hanapin ang Susunod + +#: Editor.java:1245 +Find\ Previous=Hanapin ang Nauna + +#: Editor.java:1255 +Use\ Selection\ For\ Find=Gamitin ang Napili sa Paghahanap + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=Pumili muna ng salita na hahanapin sa sanggunian. + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=Walang sanggunian para sa "{0}" + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=Kinokompile ang Sketch... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=Tapos na ang pagkokompile. + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =I-Save ang mga pagbabago sa "{0}"? + +#: Editor.java:2006 +\ \ 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.= Nais mo bang I-save ang iyong mga nagawa
bago isara?

Mawawala ang lahat ng ginawa kapag hindi mo I-sesave. + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=Kanselahin + +#: Editor.java:2017 +Don't\ Save=Huwag I-Save + +#: Editor.java:2089 +Bad\ file\ selected=Mali ang File na napili + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Maari lamang buksan ng Processing ang sariling sketches\nat iba pang file na may extension na .ino o .pde + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=OK + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Ang file "{0}" ay nararapat na nasa loob\nng sketch folder na "{1}".\nI-create ang folder, ilipat ang file at magpatuloy? + +#: Editor.java:2109 +Moving=Inililipat + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=Mali + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Mayroon nang folder na "{0}". Hindi mabuksan ang sketch. + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=Hindi makalikha ng sketch folder. + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=Hindi makopya sa tamang lokasyon + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=Hindi makalikha ng sketch. + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=Sine-save... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=Tapos na sa pag save. + +#: Editor.java:2270 +Save\ Canceled.=Nakansela ang pag save. + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Hindi makita ang serial port na {0}.\nSubukan muli ang pagupload gamit ang ibang serial port? + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=Ina-upload sa I/O Board... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=Tapos na ang pagupload. + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=Nakansela ang pag upload. + +#: Editor.java:2420 +Save\ changes\ before\ export?=I-save ang mga nagawa bago i-export? + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Nakansela ang pag export, kailangan muna i-save ang mga nagawa. + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Inilalagay ang bootloader sa I/O Board (Maaring abutin ng isang minuto)... + +#: Editor.java:2463 +Done\ burning\ bootloader.=Tapos na ang paglagay ng bootloader. + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=May mali habang naglalagay ng bootloader. + +#: Editor.java:2500 +Printing...=Nagpi-print... + +#: Editor.java:2517 +Done\ printing.=Tapos na ang pag print. + +#: Editor.java:2520 +Error\ while\ printing.=May mali habang nagpi-print. + +#: Editor.java:2524 +Printing\ canceled.=Nakansela ang pagpi-print. + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=May mali sa linya\: {0} + +#: Editor.java:2641 +Open\ URL=Buksan ang URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=May bagong bersyon ng Arduino,\nnais mo bang magpunta sa Arduino download page? + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=Oo + +#: UpdateCheck.java:108 Preferences.java:77 +No=Hindi + +#: UpdateCheck.java:111 +Update=I-update + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=Hanapin\: + +#: FindReplace.java:81 +Replace\ with\:=Palitan ng\: + +#: FindReplace.java:96 +Ignore\ Case=Ignore Case + +#: FindReplace.java:105 +Wrap\ Around=Wrap Around + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=Palitan Lahat + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=Palitan + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=Palitan at Hanapin + +#: FindReplace.java:123 FindReplace.java:128 +Previous=Nakaraan + +#: FindReplace.java:124 FindReplace.java:127 +Find=Hanapin + +#: SerialMonitor.java:93 +Send=Ipadala + +#: SerialMonitor.java:110 +Autoscroll=Autoscroll + +#: SerialMonitor.java:112 +No\ line\ ending=Walang pagtatapos sa linya + +#: SerialMonitor.java:112 +Newline=Bagong linya + +#: SerialMonitor.java:112 +Carriage\ return=Carriage return + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=Parehong NL at CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=baud + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Ang serial port ''{0}'' ay kasalukuyang ginagamit. Subukang ihinto ang ibang programa na maaring gumagamit nito. + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=May mali sa pagbukas ng serial port ''{0}''. + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Hindi makita ang serial port na ''{0}''. Tama ba ang iyong napili sa Mga Kasangkapan > Serial Port menu? + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() byte buffer ay masyadong maliit para sa {0} bytes hanggang sa char {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=May mali sa loob ng Serial.{0}() + +#: tools/AutoFormat.java:91 +Auto\ Format=Auto Format + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +!No\ changes\ necessary\ for\ Auto\ Format.= + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Nakansela ang Auto Format\: Napakaraming kanang panaklong. + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Nakansela ang Auto Format\: Napakaraming kaliwang panaklong. + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Nakansela ang Auto Format\: Napakaraming kanang panaklaw. + +#: tools/AutoFormat.java:931 +!Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.= + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=Tapos na ang pag Auto Format + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=Itama ang Encoding at I-reload + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=Alisin ang lahat ng nagawa at i-reload ang sketch? + +#: tools/FixEncoding.java:77 +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=May pagkakamali habang sinusubukang ayusin ang file encoding.\nHuwag subukang i-save ang sketch na ito dahil maaaring mapatungan\nang lumang bersion. Gamitin ang Buksan para buksan muli ang sketch.\n + +#: tools/Archiver.java:48 +Archive\ Sketch=Archive Sketch + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=Hindi mai-archive and sketch + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Nakansela ang pag archive ng sketch sapagkat\nhindi ito mai-save ng tama. + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=I-archive ang sketch bilang\: + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=Nakansela ang pag-archive ng sketch + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=May mali habang niloload ang code {0} + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=Ang "{0}" ay naglalaman ng hindi maintidihang titik. Kung ang code na ito ay ginawa mula sa lumang bersyon ng Processing, Kinakailangan mong gamitin ang Mga Kasangkapan -> Itama ang Encoding at I-reload para magamit ang UTF-8 encoding sa sketch. Kung hindi naman ay kinakailangan mong alisin ang mga hindi maintidihang titik para maalis ang babalang ito. + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=Ang sketch ay Read-Only + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Ang ilang files ay "read-only", kaya kinakailangan\nmong i-save ang sketch sa ibang lokasyon,\nat subukan muli. + +#: Sketch.java:286 +Name\ for\ new\ file\:=Pangalan para sa bagong file\: + +#: Sketch.java:298 +Sketch\ is\ Untitled=Walang pangalan ang Sketch + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=I-save muna ang sketch bago \npalitan ng pangalan? + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=May mali sa pag palit ng pangalan + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=Hindi maaaring magsimula ang pangalan sa tuldok. + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" ay hindi tamang extension. + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Hindi maaaring gumamit ng extension ang main file.\n(Sa tingin ko ay oras na para ikaw ay gumamit\nng totoong programming environment) + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=Hindi + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Mayroon ng file na nagngangalang "{0}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Hindi maaaring magkaroon ng .cpp file na kaparehong pangalan ng sketch. + +#: Sketch.java:425 +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:459 +Cannot\ Rename=Hindi maaaring palitan ang pangalan + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Paumanhin, mayroon ng sketch o folder na may pangalang "{0}". + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=Ayaw mapalitan ang pangalan ng sketch. (0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=Hindi mapalitan ang pangalan mula "{0}" para maging "{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=Hindi mapalitan ang pangalan ng sketch. (1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=Hindi mapalitan ang pangalan ng sketch. (2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile() ay nagbalik ng false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Nais mo bang burahin ang sketch na ito? + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Nais mo bang burahin ang "{0}"? + +#: Sketch.java:595 EditorHeader.java:314 +Delete=Alisin + +#: Sketch.java:620 +Couldn't\ do\ it=Hindi ko magawa yan + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=Hindi ko madelete "{0}". + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error...hindi makita ang code + +#: Sketch.java:724 +Sketch\ is\ read-only=Ang sketch ay read-only + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Ang ilang files ay "read-only", kaya kinakailangan\nmong i-resave ang sketch sa ibang lokasyon. + +#: Sketch.java:743 +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?=Sa Arduino 1.0, ang default na file extension ay naging\n.ino mula .pde. Ang mga bagong sketches (kasama ung mga nagawa \ngamit ang "I-save bilang" ay gagamit ng bagong extension. Ang extension\nng mga dati ng sketches ay mababago pag save, ngunit maaari mo itong\nmabago sa Mga Kagustuhan na dialog.\n\nI-save ang sketch at baguhin ang kanyang extension? + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=I-save ang sketch folder bilang... + +#: Sketch.java:865 +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. + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=Napaka Borges mo + +#: Sketch.java:887 +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. + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Pumili ng image o kahit anong data file na kokopyahin sa iyong sketch + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=Palitan ang version {0}? + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=May mali sa pagdagdag ng file + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Hindi mabura ang file na ''{0}''. + +#: Sketch.java:1078 +You\ can't\ fool\ me=Hindi mo ako maloloko + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ang file na ito ay nakopya na sa lokasyon kung saan mo sya gustong ikopya.\nWala na akong gagawin. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Hindi maidagdag ang ''{0}'' sa sketch + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=Nawawala ang build folder o hindi sya masulatan + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=Hindi makita ang main class + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Hindi nahuling exception type\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=May problema sa paglipat ng {0} sa build folder + +#: Sketch.java:1661 +Uploading...=Inaupload... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Sukat ng Binary sketch\: {0} bytes (of a {1} byte maximum) + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=Hindi malaman ang sukat ng programa\: {0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Masyadong malaki ang sketch; Tignan ang http\://www.arduino.cc/en/Guide/Troubleshooting\#size para sa mga patnubay para mapaliit ito. + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Nawawala ang */ sa dulo ng /* comment */ + +#: Sketch.java:1796 +Sketch\ Disappeared=Nawala ang sketch + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Nawala ng folder ng sketch.\n Susubukang ire-save sa parehong lokasyon,\nsubalit lahat maliban sa code ay mawawala. + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=Hindi mai-resave ang sketch + +#: Sketch.java:1811 +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.=Hindi mai-resave ng maayos ang sketch. Maaaring malaki na ang iyong problema sa oras na ito,\nkaya mas mabuti pang icopy-paste mo na ang code mo sa ibang text editor. + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=Kinakailangang palitan ang sketch name. Ang pangalan ng sketch ay maaari lamang magkaroon ng\nASCII characters at mga numero (ngunit hindi maaaring magsimula sa numero).\nHindi rin maaaring lumagpas ng 64 na titik ang pangalan. + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=May error sa compiler, Pakisubmit ang code na ito sa {0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=hindi makita ang napiling serial port {0} o kaya naman ay hindi kunektado ang iyong board + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Hindi tumutugon ang device, siguraduhing tama ang napiling serial port o kaya ay pindutin ang RESET bago mag export + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=May problema sa pagupload sa board. Tignan ang http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sa mga karagdagang kaalaman. + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mali ang nakitang microcontroller. Napili mo ba ang tamang board mula sa Mga Kasangkapan > Board menu? + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasangkapan > Board menu. + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0} ay nagbalik ng {1} + +#: debug/Compiler.java:426 +Error\ compiling.=May mali sa pagcompile + +#: debug/Compiler.java:465 +!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= + +#: debug/Compiler.java:466 +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nMula sa Arduino 0019, ang Ethernet library ay nakasalalay sa SPI library.\nMaaaring ginagamit mo ito o kaya ibang library na nakasalalay sa SPI library.\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Ang 'BYTE' keyword ay hindi na sinusuportahan. + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nMula sa Arduino 1.0, ang 'BYTE' keyword ay hindi na susuportahan.\nMaaari lamang na gumamit na lang ng Serial.write().\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Ang Server class ay pinalitan ng pangalan at naging EthernetServer. + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nMula sa Arduino 1.0, ang Server class mula sa Ethernet library ay papalitan na para maging EthernetServer.\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Ang Client class ay pinangalanan ng EthernetClient. + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nMula sa Arduino 1.0, ang Client class mula sa Ethernet library ay pinangalanan ng EthernetClient.\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Ang Udp class ay pinangalanang EthernetUdp. + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nMula sa Arduino 1.0, ang Udp class mula sa Ethernet library hay pinangalanan ng EthernetClient.\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() ay pinangalanan ng Wire.write(). + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nMula sa Arduino 1.0, ang Wire.send() function ay pinangalanan ng Wire.write() para sa pagkakakapareho sa ibang libraries.\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ay pinangalanang Wire.read(). + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nMula sa Arduino 1.0, ang Wire.receive() function ay pinangalanan ng Wire.read() para sa pagkakapareho sa ibang libraries.\n\n + +#: EditorConsole.java:152 +Console\ Error=May error sa console + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=May nangyaring problema habang inoopen ang files\nna gagamitin para mastore ang console output. + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Non-fatal error habang nagseset ng Look & Feel + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Narito ang error message, subalit ang Arduino ay gagana pa rin ng maayos + +#: Base.java:220 +Problem\ Setting\ the\ Platform=May problema sa pagset ng Platform + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=May hindi alam na error ang nangyari habang niloload ang \nplatform-specific code para sa iyong machine. + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=Maaari lamang na maginstall ng JDK 1.5 pataas + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Ang Arduino ay nangangailangan ng full JDK (hindi lamang JRE)\npara gumana. Maaari lamang na maginstall ng JDK 1.5 pataas.\nMaaaring makakuha ng karagdagang kaalaman sa sanggunian. + +#: Base.java:257 +Sketchbook\ folder\ disappeared=Nawala ang folder ng sketchbook + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Ang sketchbook folder ay hindi ko na makita.\nGagamitin ko na ang default lokasyon ng sketchbook \nat gagawa ng bagong sketchbook folder kung\nkinakailangan. At hindi ko na kakausapin\nang sarili ko. + +#: Base.java:532 +Time\ for\ a\ Break=Oras na para magpahinga + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Naabot mo na ang limit para sa pagauto-name ng bagong sketches\npara sa araw na ito. Bakit hindi ka maglakad lakad sa paligid-ligid? + +#: Base.java:537 +Sunshine=Sinag ng araw + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hindi nga walang biro, oras na para makalanghap ka ng sariwang hangin. + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=Magbukas ng Arduino sketch... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= Sigurado ka ba na gusto mo mag Quit?

Ang pagsara ng huling nakabukas na sketch ay magki-quit ng Arduino. + +#: Base.java:970 +Contributed=Nakapagbahagi + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=Hindi makita ang sketch + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Ang napiling sketch nay hindi na makita.\nkinakailangan mong i-restart ang Arduino para maupdate\nang sketchbook menu. + +#: Base.java:1125 +#, 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}=Ang sketch "{0}" ay hindi maaaring gamitin.\nAng pangalan ng sketch ay maaarin lamang magkaroon ng titik at numero\n(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero).\nPara maaalis ang message na ito, alisin ang sketch mula sa \n{1} + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=Hindi papansin ang sketch na may maling pangalan + +#: Base.java:1202 +#, 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)=Ang library "{0}" ay maaaring gamitin.\nAng pangalan ng library ay maaari lamang magkaron ng titik at numero.\n(ASCII lamang at walang spaces, at hindi ito maaaring magsimula sa numero) + +#: Base.java:1207 +Ignoring\ bad\ library\ name=Hindi papansinin ang library na may maling pangalan + +#: Base.java:1432 +Problem\ getting\ data\ folder=May problema sa pagkuha ng data folder + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=May problema sa pagkuha ng Arduino data folder + +#: Base.java:1440 +Settings\ issues=May problema sa Settings + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Ayaw gumana ng Arduino sapagkat hindi ito\nmakagawa ng folder kung saan ilalagay ang iyong settings. + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=Nakalimutan mo ang iyong sketchbook + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Ayaw gumana ng Arduino sapagkat hindi ito\nmakagawa ng folder kung saan ilalagay ang iyong sketchbook. + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=Pumili (o gumawa ng bago) ng folder para sa sketches... + +#: Base.java:1647 +Problem\ Opening\ URL=May problema sa pagbukas ng URL + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=Hindi mabuksan ang URL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=May problema sa pagbukas ng Folder + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=Hindi mabuksan ang folder\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=environment + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=Mensahe + +#: Base.java:1842 +Warning=Warning + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=Hindi maaalis ang lumang bersyon na {0} + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=Hindi mapalitan ang {0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=Hindi maalis ang {0} + +#: EditorHeader.java:292 +New\ Tab=Bagong Tab + +#: EditorHeader.java:300 +Rename=Palitan ng Pangalan + +#: EditorHeader.java:326 +Previous\ Tab=Nakaraang Tab + +#: EditorHeader.java:340 +Next\ Tab=Susunod na Tab + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=Beripikahin + +#: EditorToolbar.java:41 +Open=Buksan + +#: EditorToolbar.java:46 +New\ Editor\ Window=Bagong Editor Window + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=Buksan sa ibang Window + +#: Platform.java:167 +No\ launcher\ available=Walang launcher na maaaring magamit + +#: 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=Hindi malamang platform, walang launcher na maaaring magamit.\nPara mabuksan ang URLs o folders, magdagdag ng\n"launcher\=/path/to/app" sa preferences.txt + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Hindi mabasa ang color theme settings.\nKinakailangan mong i-reinstall ang Processing. + +#: Preferences.java:80 +Browse=Browse + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +Catalan=Catalan + +#: Preferences.java:87 +Chinese\ Simplified=Chinese Simplified + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +Danish=Danish + +#: Preferences.java:90 +Dutch=Dutch + +#: Preferences.java:91 +English=Ingles + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +French=French + +#: Preferences.java:94 +Filipino=Filipino + +#: Preferences.java:95 +Galician=Galician + +#: Preferences.java:96 +German=German + +#: Preferences.java:97 +Greek=Greek + +#: Preferences.java:98 +Hungarian=Hungarian + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +Italian=Italian + +#: Preferences.java:101 +Japanese=Japanese + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +Latvian=Latvian + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +Persian=Persian + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +Romanian=Romanian + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +Spanish=Spanish + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Hindi mabasa ang default settings.\nKinakailangan mong i-reinstall ang Arduino. + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=Hindi mabasa ang mga kagustuhan mula sa {0} + +#: Preferences.java:261 +Error\ reading\ preferences=May problema sa pagread ng preferences + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=May problema sa pagbasa ng preferences file. Maaari lamang na i-delete (o ilipat) ang \n{0} at irestart ang Arduino. + +#: Preferences.java:299 +Sketchbook\ location\:=Lokasyon ng Sketchbook\: + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=Pumili ng bagong lokasyon ng sketchbook + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ (kinakailangang i-restart ang Arduino) + +#: Preferences.java:354 +Editor\ font\ size\:\ =Sukat ng font para sa Editor\: + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =Ipakita ang verbose na output\: + +#: Preferences.java:373 +compilation\ =compilation + +#: Preferences.java:375 +upload=upload + +#: Preferences.java:384 +Verify\ code\ after\ upload=I-verify ang code pagkatapos mai-upload + +#: Preferences.java:393 +Use\ external\ editor=Gumamit ng ibang editor + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=Suriin ang updates tuwing magsisimula + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Baguhin ang sketch files na gumamit ng bagong extension kapag nagsave (.pde -> .ino) + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=Kusang iassociate ang .ino files sa Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Madami pang preferences ang maaaring baguhin mula sa file + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=(baguhin lamang kung hindi tumatakbo ang Arduino) + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=hindi papansinin ang maling sukat ng font {0} diff --git a/app/src/processing/app/Resources_zh_cn.po b/app/src/processing/app/Resources_zh_cn.po new file mode 100644 index 000000000..52657aa66 --- /dev/null +++ b/app/src/processing/app/Resources_zh_cn.po @@ -0,0 +1,1658 @@ +# Chinese Simplified translations for Arduino IDE. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# ledong <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: ledong <>\n" +"Language-Team: Chinese\n" +"Language: zh_cn\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "没有文件加入到程序中" + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "一个文件加入到程序中" + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0}个文件加入到程序中" + +#: Editor.java:484 +msgid "File" +msgstr "文件" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "新建" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "打开..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "程序库" + +#: Editor.java:509 +msgid "Examples" +msgstr "示例" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "关闭" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "保存" + +#: Editor.java:530 +msgid "Save As..." +msgstr "另存为..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "下载" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "使用编程器下载" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "页面设置" + +#: Editor.java:564 +msgid "Print" +msgstr "打印" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "参数设置" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "退出" + +#: Editor.java:600 +msgid "Sketch" +msgstr "程序" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "校验/编译" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "导入库..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "显示程序文件夹" + +#: Editor.java:643 +msgid "Add File..." +msgstr "加入文件..." + +#: Editor.java:656 +msgid "Tools" +msgstr "工具" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "串口监视器" + +#: Editor.java:682 +msgid "Board" +msgstr "板卡" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "串口" + +#: Editor.java:695 +msgid "Programmer" +msgstr "编程器" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "烧写Bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "串口菜单是空的" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "名称为空" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "取得串口列表时发生错误" + +#: Editor.java:1002 +msgid "Help" +msgstr "帮助" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "快速入门" + +#: Editor.java:1049 +msgid "Environment" +msgstr "环境" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "问题排除" + +#: Editor.java:1065 +msgid "Reference" +msgstr "参考手册" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "在手册中查找" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "常见问题" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "访问Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "关于Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "编辑" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "恢复" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "重做" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "剪切" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "复制" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "复制到论坛" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "复制为HTML" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "粘贴" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "全选" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "注释/取消注释" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "增加缩进" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "减小缩进" + +#: Editor.java:1220 +msgid "Find..." +msgstr "查找.." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "查找下一个" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "查找上一个" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "查找选择内容" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "请先选择一个到参考手册中查找的词" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "手册中没有关于\"{0}\"的内容" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "编译程序中..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "编译完毕。" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "保存更改到\"{0}\"中? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" 你要 " +"在关闭这个程序之前保存
修改的内容么?

如果不保存, " +"更改的部分将会丢失。" + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "取消" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "不保存" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "选择了错误文件" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing只能打开他自己的程序,\n" +"和其他以.ino或者.pde为扩展名的文件。" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "确定" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"文件 \"{0}\" 需要在一个名称为\n" +" \"{1}\"的文件夹中。\n" +"创建这个文件夹,移动文件,然后继续?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "移动中" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "错误" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "名为\"{0}\"的文件夹已经存在。不能打开程序。" + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "不能创建程序文件夹。" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "无法复制到合适的位置。" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "不能创建程序。" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "保存中..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "保存完毕。" + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "保存取消了。" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"未找到串口{0}。\n" +"重试下载到另外的串口中么?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "下载到I/O板卡中..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "下载完毕。" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "下载被取消了。" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "导出前保存更改?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "导出取消了,修改必须先被保存。" + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "烧写bootloader至I/O板中(这将花费一会时间)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "烧写bootloader完毕。" + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "烧写bootloader时出错。" + +#: Editor.java:2500 +msgid "Printing..." +msgstr "打印中..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "打印完成。" + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "打印时出现错误。" + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "打印取消了。" + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "错误行:{0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "打开URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Arduino有新版本了,\n" +"需要访问Arduino的下载页面么?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "是" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "否" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "更新" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "查找:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "替换为:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "忽略大小写" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "高亮" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "全部替换" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "替换" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "查找与替换" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "上一个" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "查找" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "发送" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "自动滚动" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "没有行结束符" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "换行(NL)" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "回车(CR)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "换行和回车" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr "波特率" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"串口''{0}''在使用中。尝试退出任何可能在" +"使用它的其他程序。" + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "打开串口''{0}''时出现错误。" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"未找到串口''{0}''。你在菜单 工具->串口 中选择了" +"正确的串口号了么?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil() 字节缓存对{0}字节来说太小了, " +"包含字符 {1}" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "Serial.{0}()中出现错误" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "自动格式化" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "没有需要自动格式化的修改。" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "自动格式化取消:过多的右括号。" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "自动格式化取消:过多的左括号。" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "自动格式化取消:过多的右大括号。" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "自动格式化取消:过多的左大括号。" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "自动格式化完成。" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "修复编码并重载" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "打包程序" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "不能打包程序" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"打包程序被取消了,\n" +"因为程序不能被正确的保存。" + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "打包程序为:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "打包程序取消了。" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "载入代码{0}时出现错误" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\"包含无法识别的字符。如果这份代码是由早期版本的Processing" +"建立的话,你需要使用 工具->修正编码并重新载入 菜单将程序" +"更新为UTF-8编码,如果不这样做,你需要" +"删除错误的字符来去除这个警告。" + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "程序是只读的" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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" +"在其他位置重新保存程序,\n" +"然后重试。" + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "新文件名:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "程序没有标题" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"在重命名程序前\n" +"先保存它么?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "重命名发生问题" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "名称不能以点号开始。" + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\"不是合法的扩展名。" + +#: Sketch.java:378 +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 "" +"主文件不能使用扩展名。\n" +"(也许是你升级到\n" +"\"真正\"的编程环境的时候了)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "不要" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "名为\"{0}\"的文件已经存在于\"{1}\"" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr ".cpp文件不能和程序的文件名相同。" + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"你可以重命名程序为\"{0}\"\n" +"因为已经有名为.cpp的文件在程序中。" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "不能重命名" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "对不起,名为\"{0}\"的程序(或文件夹)已存在。" + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "不能重命名程序。(0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "不能重命名\"{0}\"为\"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "不能重命名程序。(1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "不能重命名程序。(2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile()返回了错误" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "你确定删除这个程序?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "你确定删除\"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "删除" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "不能执行。" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "不能删除\"{0}\"。" + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "移除代码: 内部错误.. 找不到代码" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "程序是只读的" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"一些文件被标记为\"只读\"属性,必须\n" +"重新保存程序到其他位置。" + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"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" +"保存程序并更新它的扩展名么?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "程序文件夹另存为" + +#: Sketch.java:865 +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文件了。" + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "你太有想象力了" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"你不能保存程序在他自己的文件夹中,\n" +"这样它会无尽进行保存。" + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "选择一个镜像或者其他数据文件复制到你的程序中" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "替换已存在的的版本{0}么?" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "加入文件时出现错误" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "不能删除存在的''{0}''文件。" + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "你瞒不了我" + +#: Sketch.java:1079 +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 "" +"这个文件已经被复制到\n" +"你正在试图加入的位置中。\n" +"我神马都不会做地" + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "不能加入''{0}''到程序中" + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "构建目录消失了或者不能被写入" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "找不到main类" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "未捕获的意外类型:{0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "移动{0}至构建文件夹时出现错误" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "下载中..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "二进制程序大小:{0}字节(最大{1}字节)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "不能判断程序大小:{0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"程序太大了;查看 http://www.arduino.cc/en/Guide/Troubleshooting#size 中 " +"的窍门来减小它。" + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr " /* comment */ 中丢失了结束的 */" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "程序丢失" + +#: Sketch.java:1797 +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 "" +"程序目录丢失了。\n" +"将会尝试重新保存在同样的位置,\n" +"但除代码外其他内容都将丢失。" + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "不能重新保存程序" + +#: Sketch.java:1811 +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" +"是时候将你的代码复制粘贴到另外一个字符编辑器中了。" + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"程序名称改变了。程序名只能由\n" +"ASCII码组成(但不能艺术字开头)。\n" +"而且它必须短于64个字符。" + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "编译错误,请将代码提交给{0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"你选择的串口{0}不存在,或是板卡没有连接。" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"设备无响应,检查选择了正确的串口号或者" +"在输出前重置板卡" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"下载程序到板卡时出现问题," +"请在http://www.arduino.cc/en/Guide/Troubleshooting#upload寻找解决办法" + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "" +"找到错误的单片机。你在 工具->板卡 菜单里选择正确的板卡了么?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "没有选择板卡;请从 工具->板卡 菜单中选择板卡" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0}返回了{1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "编译出错。" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "请从 程序>导入库 菜单导入SPI库。" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"\n" +"从Arduino0019开始,Ethernet库决定于SPI库。\n" +"你正在使用Ehternet库或者另外一个决定于SPI库。\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "关键字'字节'不再受到支持。" + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"从Arduino 1.0开始,关键字'BYTE'不再受到支持。\n" +"请改用Serial.write()代替它。\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "Server类被重命名为EthernetServer。" + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"从Arduino 1.0开始,Ethernet库中的Server类已经" +"重命名为EthernetServer。\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "Client类被重命名为EthernetClient。" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"在Arduino 1.0中,Ethernet库中的Client类已经" +"重命名为EthernetClient。\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "Udp类被重命名为EthernetUdp。" + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" +"\n" +"在Arduino 1.0中,Ethernet库中的Udp类已经" +"重命名为EthernetUdp。\n" +"\n" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send()被重命名为Wire.write()。" + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"在Arduino 1.0中,Wire.send()功能已经" +"重命名为Wire.write()以和其他库保持一致。\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive()被重命名为Wire.read()。" + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"在Arduino 1.0中,Wire.receive()功能已经" +"重命名为Wire.read()以和其他库保持一致。\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "命令行错误" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"尝试保存命令行输出的文件时\n" +"出现了一个问题。" + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "设定外观时发生非致命的错误" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "下面有错误信息,但Arduino可以良好运行" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "设置时发生了问题" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "在尝试为你的机器载入平台代码\n" +"时发生未知错误" + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "请安装JDK1.5或更新的版本" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"Arudino 需要完整的JDK(不只是JRE)才能运行,\n" +"请安装JDK1.5 或者更新版本。\n" +"更多的信息可以在参考文件中找到。" + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "不存在程序目录" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"程序库目录不存在。\n" +"Arduino将切换到默认的程序库目录,\n" +"如果必要的话将创建新目录。\n" +"之后Arduino将不在用第三人称讨论它自己。" + +#: Base.java:532 +msgid "Time for a Break" +msgstr "休息的时间到了噢" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"你已经到了一天中自动命名新程序的上限了,\n" +"外出散散步,休息一下怎么样?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "晴天" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "事实上不是这样,该是呼吸一些新鲜空气的时间了。" + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "打开一个Arduino程序..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" 确定 " +"退出么?

关闭最后一个打开的程序将退出Arduino。" + +#: Base.java:970 +msgid "Contributed" +msgstr "捐献" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "程序不存在" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"选择的程序不存在。\n" +"需要重新启动Arduion" +"来更新程序库菜单" + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"程序 \"{0}\" 不能使用。\n" +"程序名称必须只包含基本的字母和数字\n" +"(只有不包含空格的ASCII码, 并且不能以数字开头)。\n" +"去掉这条消息,请从{1}中移除此程序\n" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "忽略名称错误的程序" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"程序库\"{0}\"无法使用。\n" +"程序库名称只能包含记不得字母和数字。\n" +"(只能使用不包含空格的ASCII码,并且不能以数字开头。)\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "忽略错误的库名称" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "获取数据目录时出现问题" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "获得Arduino数据文件夹时发生错误" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "设定问题" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino不能运行,因为他无法创建保存\n" +"你的设置的文件夹。" + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "你忘记你的程序库了" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino不能运行,因为他无法创建保存\n" +"你的程序库的文件夹。" + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "选择(或创建新的)程序文件夹..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "打开URL时出现问题" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"无法打开这个URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "打开文件夹时出现问题" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"不能打开文件夹\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "Guide_MacOSX.html" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "环境" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "信息" + +#: Base.java:1842 +msgid "Warning" +msgstr "警告" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "无法卸载{0}的早期版本" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "不能覆盖{0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "不能删除{0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "新建标签" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "重命名" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "上一标签" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "下一标签" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "校验" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "打开" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "新编辑窗口" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "在其他的窗口中打开" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "没有可用的加载程序" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" +"不确定的平台,没有可用的加载程序\n" +"若要打开URL或者文件夹,增加这一行:\n" +"\"launcher=/path/to/app\" 至preferences.txt文件中。" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"无法读取颜色主题设置。\n" +"你需要重新安装Processing。" + +#: Preferences.java:80 +msgid "Browse" +msgstr "浏览" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"不能读取默认设置。\n" +"你需要重新安装Arduino" + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "不能读取{0}的参数设定" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "读取参数设定错误" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"读取参数设置文件错误,请删除(或移动)" +"{0}并重启Arduino。" + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "程序库位置:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "选择新的程序库位置:" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (需要重启Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "编辑器字体大小:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "输出时显示详细信息:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "编译" + +#: Preferences.java:375 +msgid "upload" +msgstr "下载" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "使用外部编辑器" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "启动时检查更新" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "保存时更新程序文件的扩展名(.pde ->.ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "自动关联.ino文件至Arduino" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "更多的参数设置可以直接在文件中编辑" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(只在Arduino不能运行时编辑)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "忽略无效的字符大小{0}" diff --git a/app/src/processing/app/Resources_zh_cn.properties b/app/src/processing/app/Resources_zh_cn.properties new file mode 100644 index 000000000..9aec097ac --- /dev/null +++ b/app/src/processing/app/Resources_zh_cn.properties @@ -0,0 +1,1034 @@ +# Chinese Simplified translations for Arduino IDE. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# ledong <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: ledong <>\nLanguage-Team\: Chinese\nLanguage\: zh_cn\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u6ca1\u6709\u6587\u4ef6\u52a0\u5165\u5230\u7a0b\u5e8f\u4e2d + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u4e00\u4e2a\u6587\u4ef6\u52a0\u5165\u5230\u7a0b\u5e8f\u4e2d + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0}\u4e2a\u6587\u4ef6\u52a0\u5165\u5230\u7a0b\u5e8f\u4e2d + +#: Editor.java:484 +File=\u6587\u4ef6 + +#: Editor.java:486 EditorToolbar.java:41 +New=\u65b0\u5efa + +#: Editor.java:494 Base.java:903 +Open...=\u6253\u5f00... + +#: Editor.java:503 +Sketchbook=\u7a0b\u5e8f\u5e93 + +#: Editor.java:509 +Examples=\u793a\u4f8b + +#: Editor.java:514 Editor.java:1977 +Close=\u5173\u95ed + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u4fdd\u5b58 + +#: Editor.java:530 +Save\ As...=\u53e6\u5b58\u4e3a... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u4e0b\u8f7d + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u4f7f\u7528\u7f16\u7a0b\u5668\u4e0b\u8f7d + +#: Editor.java:556 +Page\ Setup=\u9875\u9762\u8bbe\u7f6e + +#: Editor.java:564 +Print=\u6253\u5370 + +#: Editor.java:576 Preferences.java:279 +Preferences=\u53c2\u6570\u8bbe\u7f6e + +#: Editor.java:586 Base.java:782 +Quit=\u9000\u51fa + +#: Editor.java:600 +Sketch=\u7a0b\u5e8f + +#: Editor.java:602 +Verify\ /\ Compile=\u6821\u9a8c/\u7f16\u8bd1 + +#: Editor.java:629 +Import\ Library...=\u5bfc\u5165\u5e93... + +#: Editor.java:634 +Show\ Sketch\ Folder=\u663e\u793a\u7a0b\u5e8f\u6587\u4ef6\u5939 + +#: Editor.java:643 +Add\ File...=\u52a0\u5165\u6587\u4ef6... + +#: Editor.java:656 +Tools=\u5de5\u5177 + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u4e32\u53e3\u76d1\u89c6\u5668 + +#: Editor.java:682 +Board=\u677f\u5361 + +#: Editor.java:690 +Serial\ Port=\u4e32\u53e3 + +#: Editor.java:695 +Programmer=\u7f16\u7a0b\u5668 + +#: Editor.java:699 +Burn\ Bootloader=\u70e7\u5199Bootloader + +#: Editor.java:923 +serialMenu\ is\ null=\u4e32\u53e3\u83dc\u5355\u662f\u7a7a\u7684 + +#: Editor.java:927 Editor.java:934 +name\ is\ null=\u540d\u79f0\u4e3a\u7a7a + +#: Editor.java:986 +error\ retrieving\ port\ list=\u53d6\u5f97\u4e32\u53e3\u5217\u8868\u65f6\u53d1\u751f\u9519\u8bef + +#: Editor.java:1002 +Help=\u5e2e\u52a9 + +#: Editor.java:1041 +Getting\ Started=\u5feb\u901f\u5165\u95e8 + +#: Editor.java:1049 +Environment=\u73af\u5883 + +#: Editor.java:1057 +Troubleshooting=\u95ee\u9898\u6392\u9664 + +#: Editor.java:1065 +Reference=\u53c2\u8003\u624b\u518c + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u5728\u624b\u518c\u4e2d\u67e5\u627e + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u5e38\u89c1\u95ee\u9898 + +#: Editor.java:1091 +Visit\ Arduino.cc=\u8bbf\u95eeArduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u5173\u4e8eArduino + +#: Editor.java:1116 +Edit=\u7f16\u8f91 + +#: Editor.java:1119 Editor.java:1341 +Undo=\u6062\u590d + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u91cd\u505a + +#: Editor.java:1135 Editor.java:2652 +Cut=\u526a\u5207 + +#: Editor.java:1143 Editor.java:2660 +Copy=\u590d\u5236 + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u590d\u5236\u5230\u8bba\u575b + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=\u590d\u5236\u4e3aHTML + +#: Editor.java:1175 Editor.java:2684 +Paste=\u7c98\u8d34 + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u5168\u9009 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u6ce8\u91ca/\u53d6\u6d88\u6ce8\u91ca + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u589e\u52a0\u7f29\u8fdb + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u51cf\u5c0f\u7f29\u8fdb + +#: Editor.java:1220 +Find...=\u67e5\u627e.. + +#: Editor.java:1235 +Find\ Next=\u67e5\u627e\u4e0b\u4e00\u4e2a + +#: Editor.java:1245 +Find\ Previous=\u67e5\u627e\u4e0a\u4e00\u4e2a + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u67e5\u627e\u9009\u62e9\u5185\u5bb9 + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u8bf7\u5148\u9009\u62e9\u4e00\u4e2a\u5230\u53c2\u8003\u624b\u518c\u4e2d\u67e5\u627e\u7684\u8bcd + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=\u624b\u518c\u4e2d\u6ca1\u6709\u5173\u4e8e"{0}"\u7684\u5185\u5bb9 + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u7f16\u8bd1\u7a0b\u5e8f\u4e2d... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u7f16\u8bd1\u5b8c\u6bd5\u3002 + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u4fdd\u5b58\u66f4\u6539\u5230"{0}"\u4e2d\uff1f + +#: Editor.java:2006 +\ \ 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.= \u4f60\u8981 \u5728\u5173\u95ed\u8fd9\u4e2a\u7a0b\u5e8f\u4e4b\u524d\u4fdd\u5b58
\u4fee\u6539\u7684\u5185\u5bb9\u4e48?

\u5982\u679c\u4e0d\u4fdd\u5b58\uff0c \u66f4\u6539\u7684\u90e8\u5206\u5c06\u4f1a\u4e22\u5931\u3002 + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u53d6\u6d88 + +#: Editor.java:2017 +Don't\ Save=\u4e0d\u4fdd\u5b58 + +#: Editor.java:2089 +Bad\ file\ selected=\u9009\u62e9\u4e86\u9519\u8bef\u6587\u4ef6 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing\u53ea\u80fd\u6253\u5f00\u4ed6\u81ea\u5df1\u7684\u7a0b\u5e8f,\n\u548c\u5176\u4ed6\u4ee5.ino\u6216\u8005.pde\u4e3a\u6269\u5c55\u540d\u7684\u6587\u4ef6\u3002 + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=\u786e\u5b9a + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u6587\u4ef6 "{0}" \u9700\u8981\u5728\u4e00\u4e2a\u540d\u79f0\u4e3a\n "{1}"\u7684\u6587\u4ef6\u5939\u4e2d\u3002\n\u521b\u5efa\u8fd9\u4e2a\u6587\u4ef6\u5939\uff0c\u79fb\u52a8\u6587\u4ef6\uff0c\u7136\u540e\u7ee7\u7eed? + +#: Editor.java:2109 +Moving=\u79fb\u52a8\u4e2d + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u9519\u8bef + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u540d\u4e3a"{0}"\u7684\u6587\u4ef6\u5939\u5df2\u7ecf\u5b58\u5728\u3002\u4e0d\u80fd\u6253\u5f00\u7a0b\u5e8f\u3002 + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\u4e0d\u80fd\u521b\u5efa\u7a0b\u5e8f\u6587\u4ef6\u5939\u3002 + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u65e0\u6cd5\u590d\u5236\u5230\u5408\u9002\u7684\u4f4d\u7f6e\u3002 + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\u4e0d\u80fd\u521b\u5efa\u7a0b\u5e8f\u3002 + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\u4fdd\u5b58\u4e2d... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\u4fdd\u5b58\u5b8c\u6bd5\u3002 + +#: Editor.java:2270 +Save\ Canceled.=\u4fdd\u5b58\u53d6\u6d88\u4e86\u3002 + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u672a\u627e\u5230\u4e32\u53e3{0}\u3002\n\u91cd\u8bd5\u4e0b\u8f7d\u5230\u53e6\u5916\u7684\u4e32\u53e3\u4e2d\u4e48\uff1f + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u4e0b\u8f7d\u5230I/O\u677f\u5361\u4e2d... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u4e0b\u8f7d\u5b8c\u6bd5\u3002 + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u4e0b\u8f7d\u88ab\u53d6\u6d88\u4e86\u3002 + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u5bfc\u51fa\u524d\u4fdd\u5b58\u66f4\u6539\uff1f + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u5bfc\u51fa\u53d6\u6d88\u4e86\uff0c\u4fee\u6539\u5fc5\u987b\u5148\u88ab\u4fdd\u5b58\u3002 + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u70e7\u5199bootloader\u81f3I/O\u677f\u4e2d\uff08\u8fd9\u5c06\u82b1\u8d39\u4e00\u4f1a\u65f6\u95f4\uff09... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u70e7\u5199bootloader\u5b8c\u6bd5\u3002 + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u70e7\u5199bootloader\u65f6\u51fa\u9519\u3002 + +#: Editor.java:2500 +Printing...=\u6253\u5370\u4e2d... + +#: Editor.java:2517 +Done\ printing.=\u6253\u5370\u5b8c\u6210\u3002 + +#: Editor.java:2520 +Error\ while\ printing.=\u6253\u5370\u65f6\u51fa\u73b0\u9519\u8bef\u3002 + +#: Editor.java:2524 +Printing\ canceled.=\u6253\u5370\u53d6\u6d88\u4e86\u3002 + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\u9519\u8bef\u884c\uff1a{0} + +#: Editor.java:2641 +Open\ URL=\u6253\u5f00URL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Arduino\u6709\u65b0\u7248\u672c\u4e86\uff0c\n\u9700\u8981\u8bbf\u95eeArduino\u7684\u4e0b\u8f7d\u9875\u9762\u4e48\uff1f + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u662f + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u5426 + +#: UpdateCheck.java:111 +Update=\u66f4\u65b0 + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\u67e5\u627e\uff1a + +#: FindReplace.java:81 +Replace\ with\:=\u66ff\u6362\u4e3a\uff1a + +#: FindReplace.java:96 +Ignore\ Case=\u5ffd\u7565\u5927\u5c0f\u5199 + +#: FindReplace.java:105 +Wrap\ Around=\u9ad8\u4eae + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u5168\u90e8\u66ff\u6362 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u66ff\u6362 + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u67e5\u627e\u4e0e\u66ff\u6362 + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u4e0a\u4e00\u4e2a + +#: FindReplace.java:124 FindReplace.java:127 +Find=\u67e5\u627e + +#: SerialMonitor.java:93 +Send=\u53d1\u9001 + +#: SerialMonitor.java:110 +Autoscroll=\u81ea\u52a8\u6eda\u52a8 + +#: SerialMonitor.java:112 +No\ line\ ending=\u6ca1\u6709\u884c\u7ed3\u675f\u7b26 + +#: SerialMonitor.java:112 +Newline=\u6362\u884c\uff08NL\uff09 + +#: SerialMonitor.java:112 +Carriage\ return=\u56de\u8f66\uff08CR\uff09 + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=\u6362\u884c\u548c\u56de\u8f66 + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\u6ce2\u7279\u7387 + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u4e32\u53e3''{0}''\u5728\u4f7f\u7528\u4e2d\u3002\u5c1d\u8bd5\u9000\u51fa\u4efb\u4f55\u53ef\u80fd\u5728\u4f7f\u7528\u5b83\u7684\u5176\u4ed6\u7a0b\u5e8f\u3002 + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=\u6253\u5f00\u4e32\u53e3''{0}''\u65f6\u51fa\u73b0\u9519\u8bef\u3002 + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u672a\u627e\u5230\u4e32\u53e3''{0}''\u3002\u4f60\u5728\u83dc\u5355 \u5de5\u5177->\u4e32\u53e3 \u4e2d\u9009\u62e9\u4e86\u6b63\u786e\u7684\u4e32\u53e3\u53f7\u4e86\u4e48\uff1f + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil() \u5b57\u8282\u7f13\u5b58\u5bf9{0}\u5b57\u8282\u6765\u8bf4\u592a\u5c0f\u4e86\uff0c \u5305\u542b\u5b57\u7b26 {1} + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=Serial.{0}()\u4e2d\u51fa\u73b0\u9519\u8bef + +#: tools/AutoFormat.java:91 +Auto\ Format=\u81ea\u52a8\u683c\u5f0f\u5316 + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u6ca1\u6709\u9700\u8981\u81ea\u52a8\u683c\u5f0f\u5316\u7684\u4fee\u6539\u3002 + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u81ea\u52a8\u683c\u5f0f\u5316\u53d6\u6d88\uff1a\u8fc7\u591a\u7684\u53f3\u62ec\u53f7\u3002 + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u81ea\u52a8\u683c\u5f0f\u5316\u53d6\u6d88\uff1a\u8fc7\u591a\u7684\u5de6\u62ec\u53f7\u3002 + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u81ea\u52a8\u683c\u5f0f\u5316\u53d6\u6d88\uff1a\u8fc7\u591a\u7684\u53f3\u5927\u62ec\u53f7\u3002 + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u81ea\u52a8\u683c\u5f0f\u5316\u53d6\u6d88\uff1a\u8fc7\u591a\u7684\u5de6\u5927\u62ec\u53f7\u3002 + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u81ea\u52a8\u683c\u5f0f\u5316\u5b8c\u6210\u3002 + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u4fee\u590d\u7f16\u7801\u5e76\u91cd\u8f7d + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u653e\u5f03\u6240\u6709\u4fee\u6539\u5e76\u91cd\u8f7d\u7a0b\u5e8f + +#: 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=\u5c1d\u8bd5\u4fee\u590d\u6587\u4ef6\u7f16\u7801\u65f6\u53d1\u751f\u4e86\u9519\u8bef\u3002\n\u8bf7\u4e0d\u8981\u5c1d\u8bd5\u5728\u53ef\u80fd\u8986\u76d6\u65e7\u7248\u672c\u7684\u60c5\u51b5\u4e0b\u4fdd\u5b58\u8fd9\u4e2a\u7a0b\u5e8f\u3002\n\u4f7f\u7528 \u6253\u5f00 \u83dc\u5355\u91cd\u65b0\u6253\u5f00\u7a0b\u5e8f\u518d\u8bd5\u4e00\u6b21\u3002\n + +#: tools/Archiver.java:48 +Archive\ Sketch=\u6253\u5305\u7a0b\u5e8f + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u4e0d\u80fd\u6253\u5305\u7a0b\u5e8f + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u6253\u5305\u7a0b\u5e8f\u88ab\u53d6\u6d88\u4e86,\n\u56e0\u4e3a\u7a0b\u5e8f\u4e0d\u80fd\u88ab\u6b63\u786e\u7684\u4fdd\u5b58\u3002 + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\u6253\u5305\u7a0b\u5e8f\u4e3a\uff1a + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\u6253\u5305\u7a0b\u5e8f\u53d6\u6d88\u4e86\u3002 + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\u8f7d\u5165\u4ee3\u7801{0}\u65f6\u51fa\u73b0\u9519\u8bef + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,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}"\u5305\u542b\u65e0\u6cd5\u8bc6\u522b\u7684\u5b57\u7b26\u3002\u5982\u679c\u8fd9\u4efd\u4ee3\u7801\u662f\u7531\u65e9\u671f\u7248\u672c\u7684Processing\u5efa\u7acb\u7684\u8bdd\uff0c\u4f60\u9700\u8981\u4f7f\u7528 \u5de5\u5177->\u4fee\u6b63\u7f16\u7801\u5e76\u91cd\u65b0\u8f7d\u5165 \u83dc\u5355\u5c06\u7a0b\u5e8f\u66f4\u65b0\u4e3aUTF-8\u7f16\u7801\uff0c\u5982\u679c\u4e0d\u8fd9\u6837\u505a\uff0c\u4f60\u9700\u8981\u5220\u9664\u9519\u8bef\u7684\u5b57\u7b26\u6765\u53bb\u9664\u8fd9\u4e2a\u8b66\u544a\u3002 + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\u7a0b\u5e8f\u662f\u53ea\u8bfb\u7684 + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u4e00\u4e9b\u6587\u4ef6\u88ab\u6807\u8bb0\u4e3a"\u53ea\u8bfb"\u5c5e\u6027\uff0c\u4f60\u9700\u8981\n\u5728\u5176\u4ed6\u4f4d\u7f6e\u91cd\u65b0\u4fdd\u5b58\u7a0b\u5e8f\uff0c\n\u7136\u540e\u91cd\u8bd5\u3002 + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u65b0\u6587\u4ef6\u540d\uff1a + +#: Sketch.java:298 +Sketch\ is\ Untitled=\u7a0b\u5e8f\u6ca1\u6709\u6807\u9898 + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u5728\u91cd\u547d\u540d\u7a0b\u5e8f\u524d\n\u5148\u4fdd\u5b58\u5b83\u4e48\uff1f + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\u91cd\u547d\u540d\u53d1\u751f\u95ee\u9898 + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=\u540d\u79f0\u4e0d\u80fd\u4ee5\u70b9\u53f7\u5f00\u59cb\u3002 + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}"\u4e0d\u662f\u5408\u6cd5\u7684\u6269\u5c55\u540d\u3002 + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u4e3b\u6587\u4ef6\u4e0d\u80fd\u4f7f\u7528\u6269\u5c55\u540d\u3002\n(\u4e5f\u8bb8\u662f\u4f60\u5347\u7ea7\u5230\n"\u771f\u6b63"\u7684\u7f16\u7a0b\u73af\u5883\u7684\u65f6\u5019\u4e86\uff09 + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\u4e0d\u8981 + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u540d\u4e3a"{0}"\u7684\u6587\u4ef6\u5df2\u7ecf\u5b58\u5728\u4e8e"{1}" + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=.cpp\u6587\u4ef6\u4e0d\u80fd\u548c\u7a0b\u5e8f\u7684\u6587\u4ef6\u540d\u76f8\u540c\u3002 + +#: Sketch.java:425 +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u4f60\u53ef\u4ee5\u91cd\u547d\u540d\u7a0b\u5e8f\u4e3a"{0}"\n\u56e0\u4e3a\u5df2\u7ecf\u6709\u540d\u4e3a.cpp\u7684\u6587\u4ef6\u5728\u7a0b\u5e8f\u4e2d\u3002 + +#: Sketch.java:459 +Cannot\ Rename=\u4e0d\u80fd\u91cd\u547d\u540d + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u5bf9\u4e0d\u8d77\uff0c\u540d\u4e3a"{0}"\u7684\u7a0b\u5e8f\uff08\u6216\u6587\u4ef6\u5939\uff09\u5df2\u5b58\u5728\u3002 + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\u4e0d\u80fd\u91cd\u547d\u540d\u7a0b\u5e8f\u3002(0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u4e0d\u80fd\u91cd\u547d\u540d"{0}"\u4e3a"{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\u4e0d\u80fd\u91cd\u547d\u540d\u7a0b\u5e8f\u3002\uff081\uff09 + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\u4e0d\u80fd\u91cd\u547d\u540d\u7a0b\u5e8f\u3002(2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile()\u8fd4\u56de\u4e86\u9519\u8bef + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u4f60\u786e\u5b9a\u5220\u9664\u8fd9\u4e2a\u7a0b\u5e8f\uff1f + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u4f60\u786e\u5b9a\u5220\u9664"{0}"\uff1f + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u5220\u9664 + +#: Sketch.java:620 +Couldn't\ do\ it=\u4e0d\u80fd\u6267\u884c\u3002 + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=\u4e0d\u80fd\u5220\u9664"{0}"\u3002 + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=\u79fb\u9664\u4ee3\u7801\: \u5185\u90e8\u9519\u8bef.. \u627e\u4e0d\u5230\u4ee3\u7801 + +#: Sketch.java:724 +Sketch\ is\ read-only=\u7a0b\u5e8f\u662f\u53ea\u8bfb\u7684 + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u4e00\u4e9b\u6587\u4ef6\u88ab\u6807\u8bb0\u4e3a"\u53ea\u8bfb"\u5c5e\u6027\uff0c\u5fc5\u987b\n\u91cd\u65b0\u4fdd\u5b58\u7a0b\u5e8f\u5230\u5176\u4ed6\u4f4d\u7f6e\u3002 + +#: Sketch.java:743 +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?=\u5728Arduino 1.0\u4e2d\uff0c\u9ed8\u8ba4\u7684\u6587\u4ef6\u6269\u5c55\u540d\u5df2\u4ece\n.pde\u6539\u4e3a.ino\uff0c\u65b0\u7684\u7a0b\u5e8f\uff08\u5305\u62ec\u4ee5\u300c\u53e6\u5b58\u4e3a\u300d\u5efa\u7acb\u7684\uff09\uff0c\n\u90fd\u4f1a\u4f7f\u7528\u65b0\u7684\u6269\u5c55\u540d\u3002\u5df2\u7ecf\u5b58\u5728\u7684\u7a0b\u5e8f\u6269\u5c55\u540d\uff0c\n\u4f1a\u5728\u5b58\u50a8\u65f6\u88ab\u66f4\u65b0\uff0c\u4f46\u4f60\u53ef\u4ee5\u5728\u53c2\u6570\u8bbe\u5b9a\u7684\n\u5bf9\u8bdd\u6846\u91cc\u7981\u7528\u8fd9\u4e2a\u529f\u80fd\u3002\n\n\u4fdd\u5b58\u7a0b\u5e8f\u5e76\u66f4\u65b0\u5b83\u7684\u6269\u5c55\u540d\u4e48\uff1f + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=\u7a0b\u5e8f\u6587\u4ef6\u5939\u53e6\u5b58\u4e3a + +#: Sketch.java:865 +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u4f60\u4e0d\u80fd\u5c06\u7a0b\u5e8f\u53e6\u5b58\u4e3a"{0}"\n\uff0c\u56e0\u4e3a\u7a0b\u5e8f\u5df2\u7ecf\u6709\u76f8\u540c\u540d\u79f0\u7684.cpp\u6587\u4ef6\u4e86\u3002 + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=\u4f60\u592a\u6709\u60f3\u8c61\u529b\u4e86 + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u4f60\u4e0d\u80fd\u4fdd\u5b58\u7a0b\u5e8f\u5728\u4ed6\u81ea\u5df1\u7684\u6587\u4ef6\u5939\u4e2d\uff0c\n\u8fd9\u6837\u5b83\u4f1a\u65e0\u5c3d\u8fdb\u884c\u4fdd\u5b58\u3002 + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u9009\u62e9\u4e00\u4e2a\u955c\u50cf\u6216\u8005\u5176\u4ed6\u6570\u636e\u6587\u4ef6\u590d\u5236\u5230\u4f60\u7684\u7a0b\u5e8f\u4e2d + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=\u66ff\u6362\u5df2\u5b58\u5728\u7684\u7684\u7248\u672c{0}\u4e48\uff1f + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=\u52a0\u5165\u6587\u4ef6\u65f6\u51fa\u73b0\u9519\u8bef + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u4e0d\u80fd\u5220\u9664\u5b58\u5728\u7684''{0}''\u6587\u4ef6\u3002 + +#: Sketch.java:1078 +You\ can't\ fool\ me=\u4f60\u7792\u4e0d\u4e86\u6211 + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u8fd9\u4e2a\u6587\u4ef6\u5df2\u7ecf\u88ab\u590d\u5236\u5230\n\u4f60\u6b63\u5728\u8bd5\u56fe\u52a0\u5165\u7684\u4f4d\u7f6e\u4e2d\u3002\n\u6211\u795e\u9a6c\u90fd\u4e0d\u4f1a\u505a\u5730 + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u4e0d\u80fd\u52a0\u5165''{0}''\u5230\u7a0b\u5e8f\u4e2d + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u6784\u5efa\u76ee\u5f55\u6d88\u5931\u4e86\u6216\u8005\u4e0d\u80fd\u88ab\u5199\u5165 + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\u627e\u4e0d\u5230main\u7c7b + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=\u672a\u6355\u83b7\u7684\u610f\u5916\u7c7b\u578b\uff1a{0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=\u79fb\u52a8{0}\u81f3\u6784\u5efa\u6587\u4ef6\u5939\u65f6\u51fa\u73b0\u9519\u8bef + +#: Sketch.java:1661 +Uploading...=\u4e0b\u8f7d\u4e2d... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u4e8c\u8fdb\u5236\u7a0b\u5e8f\u5927\u5c0f\uff1a{0}\u5b57\u8282\uff08\u6700\u5927{1}\u5b57\u8282\uff09 + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\u4e0d\u80fd\u5224\u65ad\u7a0b\u5e8f\u5927\u5c0f\uff1a{0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u7a0b\u5e8f\u592a\u5927\u4e86;\u67e5\u770b http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u4e2d \u7684\u7a8d\u95e8\u6765\u51cf\u5c0f\u5b83\u3002 + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\ /* comment */ \u4e2d\u4e22\u5931\u4e86\u7ed3\u675f\u7684 */ + +#: Sketch.java:1796 +Sketch\ Disappeared=\u7a0b\u5e8f\u4e22\u5931 + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u7a0b\u5e8f\u76ee\u5f55\u4e22\u5931\u4e86\u3002\n\u5c06\u4f1a\u5c1d\u8bd5\u91cd\u65b0\u4fdd\u5b58\u5728\u540c\u6837\u7684\u4f4d\u7f6e\uff0c\n\u4f46\u9664\u4ee3\u7801\u5916\u5176\u4ed6\u5185\u5bb9\u90fd\u5c06\u4e22\u5931\u3002 + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\u4e0d\u80fd\u91cd\u65b0\u4fdd\u5b58\u7a0b\u5e8f + +#: Sketch.java:1811 +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.=\u65e0\u6cd5\u6b63\u786e\u91cd\u65b0\u4fdd\u5b58\u7a0b\u5e8f\u3002\u4f60\u5728\u8fd9\u70b9\u4e0a\u53ef\u80fd\u9047\u5230\u4e86\u95ee\u9898\uff0c\n\u662f\u65f6\u5019\u5c06\u4f60\u7684\u4ee3\u7801\u590d\u5236\u7c98\u8d34\u5230\u53e6\u5916\u4e00\u4e2a\u5b57\u7b26\u7f16\u8f91\u5668\u4e2d\u4e86\u3002 + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u7a0b\u5e8f\u540d\u79f0\u6539\u53d8\u4e86\u3002\u7a0b\u5e8f\u540d\u53ea\u80fd\u7531\nASCII\u7801\u7ec4\u6210\uff08\u4f46\u4e0d\u80fd\u827a\u672f\u5b57\u5f00\u5934\uff09\u3002\n\u800c\u4e14\u5b83\u5fc5\u987b\u77ed\u4e8e64\u4e2a\u5b57\u7b26\u3002 + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u7f16\u8bd1\u9519\u8bef\uff0c\u8bf7\u5c06\u4ee3\u7801\u63d0\u4ea4\u7ed9{0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u4f60\u9009\u62e9\u7684\u4e32\u53e3{0}\u4e0d\u5b58\u5728\uff0c\u6216\u662f\u677f\u5361\u6ca1\u6709\u8fde\u63a5\u3002 + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u8bbe\u5907\u65e0\u54cd\u5e94\uff0c\u68c0\u67e5\u9009\u62e9\u4e86\u6b63\u786e\u7684\u4e32\u53e3\u53f7\u6216\u8005\u5728\u8f93\u51fa\u524d\u91cd\u7f6e\u677f\u5361 + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u4e0b\u8f7d\u7a0b\u5e8f\u5230\u677f\u5361\u65f6\u51fa\u73b0\u95ee\u9898\uff0c\u8bf7\u5728http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\u5bfb\u627e\u89e3\u51b3\u529e\u6cd5 + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u627e\u5230\u9519\u8bef\u7684\u5355\u7247\u673a\u3002\u4f60\u5728 \u5de5\u5177->\u677f\u5361 \u83dc\u5355\u91cc\u9009\u62e9\u6b63\u786e\u7684\u677f\u5361\u4e86\u4e48\uff1f + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u6ca1\u6709\u9009\u62e9\u677f\u5361\uff1b\u8bf7\u4ece \u5de5\u5177->\u677f\u5361 \u83dc\u5355\u4e2d\u9009\u62e9\u677f\u5361 + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0}\u8fd4\u56de\u4e86{1} + +#: debug/Compiler.java:426 +Error\ compiling.=\u7f16\u8bd1\u51fa\u9519\u3002 + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u8bf7\u4ece \u7a0b\u5e8f>\u5bfc\u5165\u5e93 \u83dc\u5355\u5bfc\u5165SPI\u5e93\u3002 + +#: debug/Compiler.java:466 +\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\u4eceArduino0019\u5f00\u59cb\uff0cEthernet\u5e93\u51b3\u5b9a\u4e8eSPI\u5e93\u3002\n\u4f60\u6b63\u5728\u4f7f\u7528Ehternet\u5e93\u6216\u8005\u53e6\u5916\u4e00\u4e2a\u51b3\u5b9a\u4e8eSPI\u5e93\u3002\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u5173\u952e\u5b57'\u5b57\u8282'\u4e0d\u518d\u53d7\u5230\u652f\u6301\u3002 + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u4eceArduino 1.0\u5f00\u59cb\uff0c\u5173\u952e\u5b57'BYTE'\u4e0d\u518d\u53d7\u5230\u652f\u6301\u3002\n\u8bf7\u6539\u7528Serial.write()\u4ee3\u66ff\u5b83\u3002\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server\u7c7b\u88ab\u91cd\u547d\u540d\u4e3aEthernetServer\u3002 + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u4eceArduino 1.0\u5f00\u59cb\uff0cEthernet\u5e93\u4e2d\u7684Server\u7c7b\u5df2\u7ecf\u91cd\u547d\u540d\u4e3aEthernetServer\u3002\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client\u7c7b\u88ab\u91cd\u547d\u540d\u4e3aEthernetClient\u3002 + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u5728Arduino 1.0\u4e2d\uff0cEthernet\u5e93\u4e2d\u7684Client\u7c7b\u5df2\u7ecf\u91cd\u547d\u540d\u4e3aEthernetClient\u3002\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp\u7c7b\u88ab\u91cd\u547d\u540d\u4e3aEthernetUdp\u3002 + +#: debug/Compiler.java:490 +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u5728Arduino 1.0\u4e2d\uff0cEthernet\u5e93\u4e2d\u7684Udp\u7c7b\u5df2\u7ecf\u91cd\u547d\u540d\u4e3aEthernetUdp\u3002\n\n + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send()\u88ab\u91cd\u547d\u540d\u4e3aWire.write()\u3002 + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u5728Arduino 1.0\u4e2d\uff0cWire.send()\u529f\u80fd\u5df2\u7ecf\u91cd\u547d\u540d\u4e3aWire.write()\u4ee5\u548c\u5176\u4ed6\u5e93\u4fdd\u6301\u4e00\u81f4\u3002\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()\u88ab\u91cd\u547d\u540d\u4e3aWire.read()\u3002 + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u5728Arduino 1.0\u4e2d\uff0cWire.receive()\u529f\u80fd\u5df2\u7ecf\u91cd\u547d\u540d\u4e3aWire.read()\u4ee5\u548c\u5176\u4ed6\u5e93\u4fdd\u6301\u4e00\u81f4\u3002\n\n + +#: EditorConsole.java:152 +Console\ Error=\u547d\u4ee4\u884c\u9519\u8bef + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u5c1d\u8bd5\u4fdd\u5b58\u547d\u4ee4\u884c\u8f93\u51fa\u7684\u6587\u4ef6\u65f6\n\u51fa\u73b0\u4e86\u4e00\u4e2a\u95ee\u9898\u3002 + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u8bbe\u5b9a\u5916\u89c2\u65f6\u53d1\u751f\u975e\u81f4\u547d\u7684\u9519\u8bef + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u4e0b\u9762\u6709\u9519\u8bef\u4fe1\u606f\uff0c\u4f46Arduino\u53ef\u4ee5\u826f\u597d\u8fd0\u884c + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u8bbe\u7f6e\u65f6\u53d1\u751f\u4e86\u95ee\u9898 + +#: Base.java:221 +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u5728\u5c1d\u8bd5\u4e3a\u4f60\u7684\u673a\u5668\u8f7d\u5165\u5e73\u53f0\u4ee3\u7801\n\u65f6\u53d1\u751f\u672a\u77e5\u9519\u8bef + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=\u8bf7\u5b89\u88c5JDK1.5\u6216\u66f4\u65b0\u7684\u7248\u672c + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arudino \u9700\u8981\u5b8c\u6574\u7684JDK\uff08\u4e0d\u53ea\u662fJRE\uff09\u624d\u80fd\u8fd0\u884c,\n\u8bf7\u5b89\u88c5JDK1.5 \u6216\u8005\u66f4\u65b0\u7248\u672c\u3002\n\u66f4\u591a\u7684\u4fe1\u606f\u53ef\u4ee5\u5728\u53c2\u8003\u6587\u4ef6\u4e2d\u627e\u5230\u3002 + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u4e0d\u5b58\u5728\u7a0b\u5e8f\u76ee\u5f55 + +#: Base.java:258 +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.=\u7a0b\u5e8f\u5e93\u76ee\u5f55\u4e0d\u5b58\u5728\u3002\nArduino\u5c06\u5207\u6362\u5230\u9ed8\u8ba4\u7684\u7a0b\u5e8f\u5e93\u76ee\u5f55,\n\u5982\u679c\u5fc5\u8981\u7684\u8bdd\u5c06\u521b\u5efa\u65b0\u76ee\u5f55\u3002\n\u4e4b\u540eArduino\u5c06\u4e0d\u5728\u7528\u7b2c\u4e09\u4eba\u79f0\u8ba8\u8bba\u5b83\u81ea\u5df1\u3002 + +#: Base.java:532 +Time\ for\ a\ Break=\u4f11\u606f\u7684\u65f6\u95f4\u5230\u4e86\u5662 + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u4f60\u5df2\u7ecf\u5230\u4e86\u4e00\u5929\u4e2d\u81ea\u52a8\u547d\u540d\u65b0\u7a0b\u5e8f\u7684\u4e0a\u9650\u4e86\uff0c\n\u5916\u51fa\u6563\u6563\u6b65\uff0c\u4f11\u606f\u4e00\u4e0b\u600e\u4e48\u6837\uff1f + +#: Base.java:537 +Sunshine=\u6674\u5929 + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u4e8b\u5b9e\u4e0a\u4e0d\u662f\u8fd9\u6837\uff0c\u8be5\u662f\u547c\u5438\u4e00\u4e9b\u65b0\u9c9c\u7a7a\u6c14\u7684\u65f6\u95f4\u4e86\u3002 + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u6253\u5f00\u4e00\u4e2aArduino\u7a0b\u5e8f... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u786e\u5b9a \u9000\u51fa\u4e48?

\u5173\u95ed\u6700\u540e\u4e00\u4e2a\u6253\u5f00\u7684\u7a0b\u5e8f\u5c06\u9000\u51faArduino\u3002 + +#: Base.java:970 +Contributed=\u6350\u732e + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u7a0b\u5e8f\u4e0d\u5b58\u5728 + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u9009\u62e9\u7684\u7a0b\u5e8f\u4e0d\u5b58\u5728\u3002\n\u9700\u8981\u91cd\u65b0\u542f\u52a8Arduion\u6765\u66f4\u65b0\u7a0b\u5e8f\u5e93\u83dc\u5355 + +#: Base.java:1125 +#, 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}=\u7a0b\u5e8f "{0}" \u4e0d\u80fd\u4f7f\u7528\u3002\n\u7a0b\u5e8f\u540d\u79f0\u5fc5\u987b\u53ea\u5305\u542b\u57fa\u672c\u7684\u5b57\u6bcd\u548c\u6570\u5b57\n(\u53ea\u6709\u4e0d\u5305\u542b\u7a7a\u683c\u7684ASCII\u7801, \u5e76\u4e14\u4e0d\u80fd\u4ee5\u6570\u5b57\u5f00\u5934)\u3002\n\u53bb\u6389\u8fd9\u6761\u6d88\u606f\uff0c\u8bf7\u4ece{1}\u4e2d\u79fb\u9664\u6b64\u7a0b\u5e8f\n + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\u5ffd\u7565\u540d\u79f0\u9519\u8bef\u7684\u7a0b\u5e8f + +#: Base.java:1202 +#, 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)=\u7a0b\u5e8f\u5e93"{0}"\u65e0\u6cd5\u4f7f\u7528\u3002\n\u7a0b\u5e8f\u5e93\u540d\u79f0\u53ea\u80fd\u5305\u542b\u8bb0\u4e0d\u5f97\u5b57\u6bcd\u548c\u6570\u5b57\u3002\n\uff08\u53ea\u80fd\u4f7f\u7528\u4e0d\u5305\u542b\u7a7a\u683c\u7684ASCII\u7801\uff0c\u5e76\u4e14\u4e0d\u80fd\u4ee5\u6570\u5b57\u5f00\u5934\u3002\uff09\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u5ffd\u7565\u9519\u8bef\u7684\u5e93\u540d\u79f0 + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u83b7\u53d6\u6570\u636e\u76ee\u5f55\u65f6\u51fa\u73b0\u95ee\u9898 + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=\u83b7\u5f97Arduino\u6570\u636e\u6587\u4ef6\u5939\u65f6\u53d1\u751f\u9519\u8bef + +#: Base.java:1440 +Settings\ issues=\u8bbe\u5b9a\u95ee\u9898 + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino\u4e0d\u80fd\u8fd0\u884c\uff0c\u56e0\u4e3a\u4ed6\u65e0\u6cd5\u521b\u5efa\u4fdd\u5b58\n\u4f60\u7684\u8bbe\u7f6e\u7684\u6587\u4ef6\u5939\u3002 + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u4f60\u5fd8\u8bb0\u4f60\u7684\u7a0b\u5e8f\u5e93\u4e86 + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino\u4e0d\u80fd\u8fd0\u884c\uff0c\u56e0\u4e3a\u4ed6\u65e0\u6cd5\u521b\u5efa\u4fdd\u5b58\n\u4f60\u7684\u7a0b\u5e8f\u5e93\u7684\u6587\u4ef6\u5939\u3002 + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u9009\u62e9\uff08\u6216\u521b\u5efa\u65b0\u7684\uff09\u7a0b\u5e8f\u6587\u4ef6\u5939... + +#: Base.java:1647 +Problem\ Opening\ URL=\u6253\u5f00URL\u65f6\u51fa\u73b0\u95ee\u9898 + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=\u65e0\u6cd5\u6253\u5f00\u8fd9\u4e2aURL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=\u6253\u5f00\u6587\u4ef6\u5939\u65f6\u51fa\u73b0\u95ee\u9898 + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\u4e0d\u80fd\u6253\u5f00\u6587\u4ef6\u5939\n{0} + +#: Base.java:1785 +Guide_MacOSX.html=Guide_MacOSX.html + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u73af\u5883 + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u4fe1\u606f + +#: Base.java:1842 +Warning=\u8b66\u544a + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=\u65e0\u6cd5\u5378\u8f7d{0}\u7684\u65e9\u671f\u7248\u672c + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=\u4e0d\u80fd\u8986\u76d6{0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=\u4e0d\u80fd\u5220\u9664{0} + +#: EditorHeader.java:292 +New\ Tab=\u65b0\u5efa\u6807\u7b7e + +#: EditorHeader.java:300 +Rename=\u91cd\u547d\u540d + +#: EditorHeader.java:326 +Previous\ Tab=\u4e0a\u4e00\u6807\u7b7e + +#: EditorHeader.java:340 +Next\ Tab=\u4e0b\u4e00\u6807\u7b7e + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u6821\u9a8c + +#: EditorToolbar.java:41 +Open=\u6253\u5f00 + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u65b0\u7f16\u8f91\u7a97\u53e3 + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u5728\u5176\u4ed6\u7684\u7a97\u53e3\u4e2d\u6253\u5f00 + +#: Platform.java:167 +No\ launcher\ available=\u6ca1\u6709\u53ef\u7528\u7684\u52a0\u8f7d\u7a0b\u5e8f + +#: 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=\u4e0d\u786e\u5b9a\u7684\u5e73\u53f0\uff0c\u6ca1\u6709\u53ef\u7528\u7684\u52a0\u8f7d\u7a0b\u5e8f\n\u82e5\u8981\u6253\u5f00URL\u6216\u8005\u6587\u4ef6\u5939\uff0c\u589e\u52a0\u8fd9\u4e00\u884c\uff1a\n"launcher\=/path/to/app" \u81f3preferences.txt\u6587\u4ef6\u4e2d\u3002 + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u65e0\u6cd5\u8bfb\u53d6\u989c\u8272\u4e3b\u9898\u8bbe\u7f6e\u3002\n\u4f60\u9700\u8981\u91cd\u65b0\u5b89\u88c5Processing\u3002 + +#: Preferences.java:80 +Browse=\u6d4f\u89c8 + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u4e0d\u80fd\u8bfb\u53d6\u9ed8\u8ba4\u8bbe\u7f6e\u3002\n\u4f60\u9700\u8981\u91cd\u65b0\u5b89\u88c5Arduino + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=\u4e0d\u80fd\u8bfb\u53d6{0}\u7684\u53c2\u6570\u8bbe\u5b9a + +#: Preferences.java:261 +Error\ reading\ preferences=\u8bfb\u53d6\u53c2\u6570\u8bbe\u5b9a\u9519\u8bef + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u8bfb\u53d6\u53c2\u6570\u8bbe\u7f6e\u6587\u4ef6\u9519\u8bef\uff0c\u8bf7\u5220\u9664\uff08\u6216\u79fb\u52a8\uff09{0}\u5e76\u91cd\u542fArduino\u3002 + +#: Preferences.java:299 +Sketchbook\ location\:=\u7a0b\u5e8f\u5e93\u4f4d\u7f6e\uff1a + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u9009\u62e9\u65b0\u7684\u7a0b\u5e8f\u5e93\u4f4d\u7f6e\uff1a + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ \uff08\u9700\u8981\u91cd\u542fArduino\uff09 + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u7f16\u8f91\u5668\u5b57\u4f53\u5927\u5c0f\uff1a + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u8f93\u51fa\u65f6\u663e\u793a\u8be6\u7ec6\u4fe1\u606f\uff1a + +#: Preferences.java:373 +compilation\ =\u7f16\u8bd1 + +#: Preferences.java:375 +upload=\u4e0b\u8f7d + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +Use\ external\ editor=\u4f7f\u7528\u5916\u90e8\u7f16\u8f91\u5668 + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u542f\u52a8\u65f6\u68c0\u67e5\u66f4\u65b0 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u4fdd\u5b58\u65f6\u66f4\u65b0\u7a0b\u5e8f\u6587\u4ef6\u7684\u6269\u5c55\u540d\uff08.pde ->.ino\uff09 + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=\u81ea\u52a8\u5173\u8054.ino\u6587\u4ef6\u81f3Arduino + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u66f4\u591a\u7684\u53c2\u6570\u8bbe\u7f6e\u53ef\u4ee5\u76f4\u63a5\u5728\u6587\u4ef6\u4e2d\u7f16\u8f91 + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u5728Arduino\u4e0d\u80fd\u8fd0\u884c\u65f6\u7f16\u8f91\uff09 + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u5ffd\u7565\u65e0\u6548\u7684\u5b57\u7b26\u5927\u5c0f{0} diff --git a/app/src/processing/app/Resources_zh_tw.po b/app/src/processing/app/Resources_zh_tw.po new file mode 100644 index 000000000..3165fe49c --- /dev/null +++ b/app/src/processing/app/Resources_zh_tw.po @@ -0,0 +1,1654 @@ +# Chinese translations for Arduino IDE. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# yehnan <>, 2012. +# +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-03-29 10:24-0400\n" +"PO-Revision-Date: 2012-03-29 10:24-0400\n" +"Last-Translator: yehnan <>\n" +"Language-Team: Chinese\n" +"Language: zh\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: Editor.java:366 +msgid "No files were added to the sketch." +msgstr "並沒有檔案加入草稿碼" + +#: Editor.java:369 Sketch.java:996 +msgid "One file added to the sketch." +msgstr "一個檔案加入草稿碼" + +#: Editor.java:373 +#, java-format +msgid "{0} files added to the sketch." +msgstr "{0}個檔案加入草稿碼" + +#: Editor.java:484 +msgid "File" +msgstr "檔案" + +#: Editor.java:486 EditorToolbar.java:41 +msgid "New" +msgstr "新增" + +#: Editor.java:494 Base.java:903 +msgid "Open..." +msgstr "開啟..." + +#: Editor.java:503 +msgid "Sketchbook" +msgstr "草稿碼簿" + +#: Editor.java:509 +msgid "Examples" +msgstr "範例" + +#: Editor.java:514 Editor.java:1977 +msgid "Close" +msgstr "關閉" + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +msgid "Save" +msgstr "儲存" + +#: Editor.java:530 +msgid "Save As..." +msgstr "另存新檔..." + +#: Editor.java:538 EditorToolbar.java:41 +msgid "Upload" +msgstr "上傳" + +#: Editor.java:546 EditorToolbar.java:46 +msgid "Upload Using Programmer" +msgstr "以燒錄器上傳" + +#: Editor.java:556 +msgid "Page Setup" +msgstr "頁面設定" + +#: Editor.java:564 +msgid "Print" +msgstr "列印" + +#: Editor.java:576 Preferences.java:279 +msgid "Preferences" +msgstr "偏好設定" + +#: Editor.java:586 Base.java:782 +msgid "Quit" +msgstr "離開" + +#: Editor.java:600 +msgid "Sketch" +msgstr "草稿碼" + +#: Editor.java:602 +msgid "Verify / Compile" +msgstr "驗證∕編譯" + +#: Editor.java:629 +msgid "Import Library..." +msgstr "匯入程式庫..." + +#: Editor.java:634 +msgid "Show Sketch Folder" +msgstr "顯示草稿碼的所在目錄" + +#: Editor.java:643 +msgid "Add File..." +msgstr "加入檔案..." + +#: Editor.java:656 +msgid "Tools" +msgstr "工具" + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Serial Monitor" +msgstr "序列埠監控視窗" + +#: Editor.java:682 +msgid "Board" +msgstr "板子" + +#: Editor.java:690 +msgid "Serial Port" +msgstr "序列埠" + +#: Editor.java:695 +msgid "Programmer" +msgstr "燒錄器" + +#: Editor.java:699 +msgid "Burn Bootloader" +msgstr "燒錄bootloader" + +#: Editor.java:923 +msgid "serialMenu is null" +msgstr "序列埠的選單是空的" + +#: Editor.java:927 Editor.java:934 +msgid "name is null" +msgstr "名稱是空的" + +#: Editor.java:986 +msgid "error retrieving port list" +msgstr "取得序列埠列表時發生錯誤" + +#: Editor.java:1002 +msgid "Help" +msgstr "說明" + +#: Editor.java:1041 +msgid "Getting Started" +msgstr "入門手冊" + +#: Editor.java:1049 +msgid "Environment" +msgstr "開發環境" + +#: Editor.java:1057 +msgid "Troubleshooting" +msgstr "排除問題" + +#: Editor.java:1065 +msgid "Reference" +msgstr "參考文件" + +#: Editor.java:1073 Editor.java:2728 +msgid "Find in Reference" +msgstr "在參考文件裡尋找" + +#: Editor.java:1083 +msgid "Frequently Asked Questions" +msgstr "常見問答集" + +#: Editor.java:1091 +msgid "Visit Arduino.cc" +msgstr "拜訪Arduino.cc" + +#: Editor.java:1094 +msgid "http://arduino.cc/" +msgstr "http://arduino.cc/" + +#: Editor.java:1102 +msgid "About Arduino" +msgstr "關於Arduino" + +#: Editor.java:1116 +msgid "Edit" +msgstr "編輯" + +#: Editor.java:1119 Editor.java:1341 +msgid "Undo" +msgstr "復原" + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +msgid "Redo" +msgstr "重複" + +#: Editor.java:1135 Editor.java:2652 +msgid "Cut" +msgstr "剪下" + +#: Editor.java:1143 Editor.java:2660 +msgid "Copy" +msgstr "複製" + +#: Editor.java:1151 Editor.java:2668 +msgid "Copy for Forum" +msgstr "為了論壇進行複製" + +#: Editor.java:1163 Editor.java:2676 +msgid "Copy as HTML" +msgstr "當做HTML進行複製" + +#: Editor.java:1175 Editor.java:2684 +msgid "Paste" +msgstr "貼上" + +#: Editor.java:1184 Editor.java:2692 +msgid "Select All" +msgstr "全選" + +#: Editor.java:1194 Editor.java:2702 +msgid "Comment/Uncomment" +msgstr "註解∕移除註解" + +#: Editor.java:1202 Editor.java:2710 +msgid "Increase Indent" +msgstr "增加縮排深度" + +#: Editor.java:1210 Editor.java:2718 +msgid "Decrease Indent" +msgstr "減少縮排深度" + +#: Editor.java:1220 +msgid "Find..." +msgstr "尋找..." + +#: Editor.java:1235 +msgid "Find Next" +msgstr "找下一個" + +#: Editor.java:1245 +msgid "Find Previous" +msgstr "找上衣個" + +#: Editor.java:1255 +msgid "Use Selection For Find" +msgstr "以選取字串進行尋找" + +#: Editor.java:1816 +msgid "First select a word to find in the reference." +msgstr "請先選擇字串,再到參考文件裡尋找。" + +#: Editor.java:1823 +#, java-format +msgid "No reference available for \"{0}\"" +msgstr "關於\"{0}\"沒有參考文件" + +#: Editor.java:1826 +#, java-format +msgid "{0}.html" +msgstr "{0}.html" + +#: Editor.java:1843 Sketch.java:1647 +msgid "Compiling sketch..." +msgstr "編譯草稿碼..." + +#: Editor.java:1864 Editor.java:1881 +msgid "Done compiling." +msgstr "編譯完成" + +#: Editor.java:1973 +#, java-format +msgid "Save changes to \"{0}\"? " +msgstr "將更動處儲存到\"{0}\"? " + +#: Editor.java:2006 +msgid "" +" Do you " +"want to save changes to this sketch
before closing?

If you don't " +"save, your changes will be lost." +msgstr "" +" 你想在" +"關閉草稿碼前儲存變更的地方嗎?

若不儲存," +"將會遺失變更的地方。" + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +msgid "Cancel" +msgstr "取消" + +#: Editor.java:2017 +msgid "Don't Save" +msgstr "不儲存" + +#: Editor.java:2089 +msgid "Bad file selected" +msgstr "選擇了不對的檔案" + +#: Editor.java:2090 +msgid "" +"Processing can only open its own sketches\n" +"and other files ending in .ino or .pde" +msgstr "" +"Processing只能開啟它自己的草稿碼,\n" +"以及其他.ino或.pde的檔案。" + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +msgid "OK" +msgstr "好" + +#: Editor.java:2100 +#, java-format +msgid "" +"The file \"{0}\" needs to be inside\n" +"a sketch folder named \"{1}\".\n" +"Create this folder, move the file, and continue?" +msgstr "" +"檔案\"{0}\"必須放在名為\"{1}\"的\n" +"草稿碼目錄中。\n" +"建立這個目錄、移動檔案、然後繼續?" + +#: Editor.java:2109 +msgid "Moving" +msgstr "移動中" + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +msgid "Error" +msgstr "錯誤" + +#: Editor.java:2122 +#, java-format +msgid "A folder named \"{0}\" already exists. Can't open sketch." +msgstr "名為\"{0}\"的目錄已經存在,無法開啟草稿碼。" + +#: Editor.java:2132 +msgid "Could not create the sketch folder." +msgstr "無法建立草稿碼目錄" + +#: Editor.java:2141 +msgid "Could not copy to a proper location." +msgstr "無法複製到適當的位置" + +#: Editor.java:2159 +msgid "Could not create the sketch." +msgstr "無法建立草稿碼" + +#: Editor.java:2166 +#, java-format +msgid "{0} | Arduino {1}" +msgstr "{0} | Arduino {1}" + +#: Editor.java:2223 Editor.java:2261 +msgid "Saving..." +msgstr "儲存中..." + +#: Editor.java:2228 Editor.java:2264 +msgid "Done Saving." +msgstr "儲存完畢" + +#: Editor.java:2270 +msgid "Save Canceled." +msgstr "儲存動作被取消了" + +#: Editor.java:2296 +#, java-format +msgid "" +"Serial port {0} not found.\n" +"Retry the upload with another serial port?" +msgstr "" +"找不到序列埠{0},\n" +"以另一個序列埠重新嘗試上傳嗎?" + +#: Editor.java:2331 +msgid "Uploading to I/O Board..." +msgstr "上傳到I/O板子中..." + +#: Editor.java:2348 Editor.java:2384 +msgid "Done uploading." +msgstr "上傳完畢" + +#: Editor.java:2356 Editor.java:2392 +msgid "Upload canceled." +msgstr "上傳動作被取消了" + +#: Editor.java:2420 +msgid "Save changes before export?" +msgstr "匯出前儲存變更的地方?" + +#: Editor.java:2435 +msgid "Export canceled, changes must first be saved." +msgstr "匯出動作被取消了,變更的地方必須先儲存。" + +#: Editor.java:2457 +msgid "Burning bootloader to I/O Board (this may take a minute)..." +msgstr "將bootloader燒錄到I/O板子裡(可能需要一點時間)..." + +#: Editor.java:2463 +msgid "Done burning bootloader." +msgstr "燒錄bootloader完畢" + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +msgid "Error while burning bootloader." +msgstr "燒錄bootloader時發生錯誤" + +#: Editor.java:2500 +msgid "Printing..." +msgstr "列印..." + +#: Editor.java:2517 +msgid "Done printing." +msgstr "列印完畢" + +#: Editor.java:2520 +msgid "Error while printing." +msgstr "列印時發生錯誤" + +#: Editor.java:2524 +msgid "Printing canceled." +msgstr "列印動作被取消了" + +#: Editor.java:2572 +#, java-format +msgid "Bad error line: {0}" +msgstr "不對的行數:{0}" + +#: Editor.java:2641 +msgid "Open URL" +msgstr "開啟URL" + +#: UpdateCheck.java:53 +msgid "http://www.arduino.cc/latest.txt" +msgstr "http://www.arduino.cc/latest.txt" + +#: UpdateCheck.java:103 +msgid "" +"A new version of Arduino is available,\n" +"would you like to visit the Arduino download page?" +msgstr "" +"Arduino有新版本了,\n" +"你想要開啟Arduino的下載頁面嗎?" + +#: UpdateCheck.java:108 Preferences.java:76 +msgid "Yes" +msgstr "是" + +#: UpdateCheck.java:108 Preferences.java:77 +msgid "No" +msgstr "否" + +#: UpdateCheck.java:111 +msgid "Update" +msgstr "更新" + +#: UpdateCheck.java:118 +msgid "http://www.arduino.cc/en/Main/Software" +msgstr "http://www.arduino.cc/en/Main/Software" + +#: FindReplace.java:80 +msgid "Find:" +msgstr "尋找:" + +#: FindReplace.java:81 +msgid "Replace with:" +msgstr "取代為:" + +#: FindReplace.java:96 +msgid "Ignore Case" +msgstr "忽略大小寫" + +#: FindReplace.java:105 +msgid "Wrap Around" +msgstr "包裹起來" + +#: FindReplace.java:120 FindReplace.java:131 +msgid "Replace All" +msgstr "全部取代" + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +msgid "Replace" +msgstr "取代" + +#: FindReplace.java:122 FindReplace.java:129 +msgid "Replace & Find" +msgstr "取代&尋找" + +#: FindReplace.java:123 FindReplace.java:128 +msgid "Previous" +msgstr "前一個" + +#: FindReplace.java:124 FindReplace.java:127 +msgid "Find" +msgstr "尋找" + +#: SerialMonitor.java:93 +msgid "Send" +msgstr "傳送" + +#: SerialMonitor.java:110 +msgid "Autoscroll" +msgstr "自動捲動" + +#: SerialMonitor.java:112 +msgid "No line ending" +msgstr "沒有行結尾" + +#: SerialMonitor.java:112 +msgid "Newline" +msgstr "NL(newline)" + +#: SerialMonitor.java:112 +msgid "Carriage return" +msgstr "CR(carriage return)" + +#: SerialMonitor.java:112 +msgid "Both NL & CR" +msgstr "NL與CR" + +#: SerialMonitor.java:130 SerialMonitor.java:133 +msgid " baud" +msgstr " 傳輸鮑率" + +#: Serial.java:147 +#, java-format +msgid "" +"Serial port ''{0}'' already in use. Try quiting any programs that may be " +"using it." +msgstr "" +"序列埠''{0}''處於使用狀態中,請試著關閉" +"可能正在使用序列埠的軟體" + +#: Serial.java:154 +#, java-format +msgid "Error opening serial port ''{0}''." +msgstr "開啟序列埠''{0}''時發生錯誤" + +#: Serial.java:167 +#, java-format +msgid "" +"Serial port ''{0}'' not found. Did you select the right one from the Tools > " +"Serial Port menu?" +msgstr "" +"找不到序列埠''{0}'',在「工具 > 序列埠」選單裡," +"你選的序列埠正確嗎?" + +#: Serial.java:424 +#, java-format +msgid "" +"readBytesUntil() byte buffer is too small for the {0} bytes up to and " +"including char {1}" +msgstr "" +"readBytesUntil()的位元組緩衝區太小,不能容納{0} bytes," +"直到char {1}(包含)" + +#: Serial.java:567 +#, java-format +msgid "Error inside Serial.{0}()" +msgstr "在Serial.{0}()裡發生錯誤" + +#: tools/AutoFormat.java:91 +msgid "Auto Format" +msgstr "自動格式化" + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +msgid "No changes necessary for Auto Format." +msgstr "自動格式化沒有需要變更的地方" + +#: tools/AutoFormat.java:919 +msgid "Auto Format Canceled: Too many right parentheses." +msgstr "自動格式化被取消了:太多右括號" + +#: tools/AutoFormat.java:922 +msgid "Auto Format Canceled: Too many left parentheses." +msgstr "自動格式化被取消了:太多左括號" + +#: tools/AutoFormat.java:928 +msgid "Auto Format Canceled: Too many right curly braces." +msgstr "自動格式化被取消了:太多右大括號" + +#: tools/AutoFormat.java:931 +msgid "Auto Format Canceled: Too many left curly braces." +msgstr "自動格式化被取消了:太多左大括號" + +#: tools/AutoFormat.java:941 +msgid "Auto Format finished." +msgstr "自動格式化完畢" + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +msgid "Fix Encoding & Reload" +msgstr "修正編碼並重新載入" + +#: tools/FixEncoding.java:57 +msgid "Discard all changes and reload sketch?" +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" + +#: tools/Archiver.java:48 +msgid "Archive Sketch" +msgstr "封存草稿碼" + +#: tools/Archiver.java:59 +msgid "yyMMdd" +msgstr "yyMMdd" + +#: tools/Archiver.java:74 +msgid "Couldn't archive sketch" +msgstr "無法封存草稿碼" + +#: tools/Archiver.java:75 +msgid "" +"Archiving the sketch has been canceled because\n" +"the sketch couldn't save properly." +msgstr "" +"草稿碼封存動作被取消了\n" +",因為無法適當地儲存草稿碼。" + +#: tools/Archiver.java:109 +msgid "Archive sketch as:" +msgstr "將草稿碼封存為:" + +#: tools/Archiver.java:139 +msgid "Archive sketch canceled." +msgstr "草稿碼封存動作被取消了" + +#: SketchCode.java:83 +#, java-format +msgid "Error while loading code {0}" +msgstr "載入程式碼{0}時發生錯誤" + +#: SketchCode.java:258 +#, java-format +msgid "" +"\"{0}\" contains unrecognized characters.If this code was created with an " +"older version of Processing,you may need to use Tools -> Fix Encoding & " +"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need " +"todelete the bad characters to get rid of this warning." +msgstr "" +"\"{0}\"含有無法辨識的字元。若這份程式是以舊版Processing" +"建立的話,你需要以「工具 -> 修正編碼並重新載入」將草稿碼" +"更新為UTF-8編碼格式,若不想這麼做的話," +"請刪除不正確的字元,以免除此警告訊息。" + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +msgid "Sketch is Read-Only" +msgstr "草稿碼為唯讀狀態" + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +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 "" +"有些檔案為\"唯讀\",你必須將草稿碼" +"重新儲存到別的位置," +"然後重試。" + +#: Sketch.java:286 +msgid "Name for new file:" +msgstr "新檔案命名:" + +#: Sketch.java:298 +msgid "Sketch is Untitled" +msgstr "草稿碼沒有名稱" + +#: Sketch.java:299 +msgid "" +"How about saving the sketch first \n" +"before trying to rename it?" +msgstr "" +"改名草稿碼之前,\n" +"要不要先儲存?" + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +msgid "Problem with rename" +msgstr "改名時發生問題" + +#: Sketch.java:360 +msgid "The name cannot start with a period." +msgstr "名稱不能以句點「.」開頭" + +#: Sketch.java:368 +#, java-format +msgid "\".{0}\" is not a valid extension." +msgstr "\".{0}\"為無效的附檔名" + +#: Sketch.java:378 +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 "" +"主要檔案不能使用附檔名。\n" +"(對你來說,這似乎是個升級到\n" +"\"真實的\"程式開發環境的好時機)" + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +msgid "Nope" +msgstr "不要" + +#: Sketch.java:402 +#, java-format +msgid "A file named \"{0}\" already exists in \"{1}\"" +msgstr "在\"{1}\"裡已經存在名為\"{0}\"的檔案" + +#: Sketch.java:415 +msgid "You can't have a .cpp file with the same name as the sketch." +msgstr ".cpp檔案的檔名不能跟草稿碼名稱相同" + +#: Sketch.java:425 +msgid "" +"You can't rename the sketch to \"{0}\"\n" +"because the sketch already has a .cpp file with that name." +msgstr "" +"你不能將草稿碼改名為\"{0}\"\n" +",因為那個名字已經有個.cpp檔案了" + +#: Sketch.java:459 +msgid "Cannot Rename" +msgstr "無法重新命名" + +#: Sketch.java:461 +#, java-format +msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." +msgstr "抱歉,已經存在名為\"{0}\"的草稿碼(或目錄)" + +#: Sketch.java:479 +msgid "Could not rename the sketch. (0)" +msgstr "無法重新命名草稿碼。(0)" + +#: Sketch.java:487 Sketch.java:532 +#, java-format +msgid "Could not rename \"{0}\" to \"{1}\"" +msgstr "無法將\"{0}\"重新命名為\"{1}\"" + +#: Sketch.java:500 +msgid "Could not rename the sketch. (1)" +msgstr "無法重新命名草稿碼。(1)" + +#: Sketch.java:507 +msgid "Could not rename the sketch. (2)" +msgstr "無法重新命名草稿碼。(2)" + +#: Sketch.java:544 +msgid "createNewFile() returned false" +msgstr "createNewFile()回傳false" + +#: Sketch.java:591 +msgid "Are you sure you want to delete this sketch?" +msgstr "確定要刪除這個草稿碼?" + +#: Sketch.java:592 +#, java-format +msgid "Are you sure you want to delete \"{0}\"?" +msgstr "你確定想要刪除\"{0}\"?" + +#: Sketch.java:595 EditorHeader.java:314 +msgid "Delete" +msgstr "刪除" + +#: Sketch.java:620 +msgid "Couldn't do it" +msgstr "無法執行" + +#: Sketch.java:621 +#, java-format +msgid "Could not delete \"{0}\"." +msgstr "無法刪除\"{0}\"" + +#: Sketch.java:651 +msgid "removeCode: internal error.. could not find code" +msgstr "removeCode:內部錯誤..找不到程式碼" + +#: Sketch.java:724 +msgid "Sketch is read-only" +msgstr "草稿碼為唯讀狀態" + +#: Sketch.java:725 +msgid "" +"Some files are marked \"read-only\", so you'll\n" +"need to re-save this sketch to another location." +msgstr "" +"有些檔案為\"唯讀\",你必須將草稿碼" +"重新儲存到別的位置。" + +#: Sketch.java:743 +msgid "" +"In Arduino 1.0, the default file extension has changed\n" +"from .pde to .ino. New sketches (including those created\n" +"by \"Save-As\" will use the new extension. The extension\n" +"of existing sketches will be updated on save, but you can\n" +"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" +"儲存草稿碼並更新附檔名?" + +#: Sketch.java:750 +msgid ".pde -> .ino" +msgstr ".pde -> .ino" + +#: Sketch.java:829 +msgid "Save sketch folder as..." +msgstr "將草稿碼目錄儲存為..." + +#: Sketch.java:865 +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檔案了。" + +#: Sketch.java:886 +msgid "How very Borges of you" +msgstr "How very Borges of you" + +#: Sketch.java:887 +msgid "" +"You cannot save the sketch into a folder\n" +"inside itself. This would go on forever." +msgstr "" +"你不能將草稿碼儲存在它自己的目錄裡,\n" +"這會沒完沒了。" + +#: Sketch.java:979 +msgid "Select an image or other data file to copy to your sketch" +msgstr "選擇影像檔或其他資料檔案,複製到你的草稿碼裡" + +#: Sketch.java:1047 +#, java-format +msgid "Replace the existing version of {0}?" +msgstr "取代{0}的已存在版本" + +#: Sketch.java:1069 Sketch.java:1092 +msgid "Error adding file" +msgstr "加入檔案時發生錯誤" + +#: Sketch.java:1070 +#, java-format +msgid "Could not delete the existing ''{0}'' file." +msgstr "無法刪除現存的''{0}''檔案" + +#: Sketch.java:1078 +msgid "You can't fool me" +msgstr "你騙不了我的" + +#: Sketch.java:1079 +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 "" +"你正試著加入這支檔案,\n" +"但檔案已經被複製到該處了。\n" +"I ain't not doin nuthin'." + +#: Sketch.java:1093 +#, java-format +msgid "Could not add ''{0}'' to the sketch." +msgstr "無法將''{0}''加入到草稿碼裡" + +#: Sketch.java:1393 Sketch.java:1424 +msgid "Build folder disappeared or could not be written" +msgstr "建置目錄不見了,或是無法寫入" + +#: Sketch.java:1408 +msgid "Could not find main class" +msgstr "找不到主類別" + +#: Sketch.java:1433 +#, java-format +msgid "Uncaught exception type: {0}" +msgstr "Uncaught exception type: {0}" + +#: Sketch.java:1465 +#, java-format +msgid "Problem moving {0} to the build folder" +msgstr "將{0}移動到建置目錄裡時發生問題" + +#: Sketch.java:1661 +msgid "Uploading..." +msgstr "上傳中..." + +#: Sketch.java:1684 +#, java-format +msgid "Binary sketch size: {0} bytes (of a {1} byte maximum)" +msgstr "草稿碼二進位的大小:{0} bytes(上限為{1} bytes)" + +#: Sketch.java:1689 +msgid "Couldn't determine program size: {0}" +msgstr "無法判斷程式大小:{0}" + +#: Sketch.java:1694 +msgid "" +"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " +"tips on reducing it." +msgstr "" +"草稿碼太大了;縮減技巧" +"請見http://www.arduino.cc/en/Guide/Troubleshooting#size" + +#: Sketch.java:1754 +msgid "Missing the */ from the end of a /* comment */" +msgstr "有個/*註解*/,但沒有*/作為結尾" + +#: Sketch.java:1796 +msgid "Sketch Disappeared" +msgstr "草稿碼消失了" + +#: Sketch.java:1797 +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 "" +"草稿碼目錄消失了。\n" +"將試著在同樣的位置重新儲存,\n" +"但是,程式碼以外的東西將會遺失。" + +#: Sketch.java:1810 +msgid "Could not re-save sketch" +msgstr "無法重新儲存草稿碼" + +#: Sketch.java:1811 +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" +"請將你的程式複製貼上到別的文字編輯器裡。" + +#: Sketch.java:2060 +msgid "" +"The sketch name had to be modified. Sketch names can only consist\n" +"of ASCII characters and numbers (but cannot start with a number).\n" +"They should also be less less than 64 characters long." +msgstr "" +"草稿碼名稱被變更了。草稿碼名稱只能含有ASCII字元與數字\n" +"(但不能以數字開頭)。\n" +"名稱必須少於64個字元。" + +#: debug/Uploader.java:52 +msgid "https://developer.berlios.de/bugs/?group_id=3590" +msgstr "https://developer.berlios.de/bugs/?group_id=3590" + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +msgid "Compiler error, please submit this code to {0}" +msgstr "編譯錯誤,請將這個碼提交給{0}" + +#: debug/Uploader.java:199 +#, java-format +msgid "" +"the selected serial port {0} does not exist or your board is not connected" +msgstr "" +"你選擇的序列埠{0}不存在,或是你的板子尚未連接。" + +#: debug/Uploader.java:203 +msgid "" +"Device is not responding, check the right serial port is selected or RESET " +"the board right before exporting" +msgstr "" +"裝置沒有回應,請確認選擇的序列埠是否正確,或是在匯出之前立即" +"RESET重置板子" + +#: debug/Uploader.java:209 +msgid "" +"Problem uploading to board. See http://www.arduino.cc/en/Guide/" +"Troubleshooting#upload for suggestions." +msgstr "" +"上傳到板子裡時發生問題," +"請見http://www.arduino.cc/en/Guide/Troubleshooting#upload尋找解決方法" + +#: debug/Uploader.java:213 +msgid "" +"Wrong microcontroller found. Did you select the right board from the Tools " +"> Board menu?" +msgstr "找到不對的微處理器,你在「工具 > 板子」選單裡" +"選對板子了嗎?" + +#: debug/Compiler.java:41 +msgid "http://code.google.com/p/arduino/issues/list" +msgstr "http://code.google.com/p/arduino/issues/list" + +#: debug/Compiler.java:79 +msgid "No board selected; please choose a board from the Tools > Board menu." +msgstr "沒有選擇板子;請從「工具 > 板子」選擇板子" + +#: debug/Compiler.java:422 +#, java-format +msgid "{0} returned {1}" +msgstr "{0}回傳{1}" + +#: debug/Compiler.java:426 +msgid "Error compiling." +msgstr "編譯出錯" + +#: debug/Compiler.java:465 +msgid "Please import the SPI library from the Sketch > Import Library menu." +msgstr "請從「草稿碼 > 匯入程式庫」選單匯入SPI程式庫" + +#: debug/Compiler.java:466 +msgid "" +"\n" +"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 "" +"從Arduino 0019開始,Ethernet程式庫相依於SPI程式庫。\n" +"你似乎正在使用相依於SPI的Ethernet或其他程式庫。\n" +"\n" + +#: debug/Compiler.java:471 +msgid "The 'BYTE' keyword is no longer supported." +msgstr "不再支援關鍵字'BYTE'" + +#: debug/Compiler.java:472 +msgid "" +"\n" +"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" +"Please use Serial.write() instead.\n" +"\n" +msgstr "" +"\n" +"從Arduino 1.0開始,不再支援關鍵字'BYTE'。\n" +"請改用Serial.write()。\n" +"\n" + +#: debug/Compiler.java:477 +msgid "The Server class has been renamed EthernetServer." +msgstr "類別Server已經改名為EthernetServer" + +#: debug/Compiler.java:478 +msgid "" +"\n" +"As of Arduino 1.0, the Server class in the Ethernet library has been renamed " +"to EthernetServer.\n" +"\n" +msgstr "" +"\n" +"從Arduino 1.0開始,Ethernet程式庫的Server類別已經改名" +"為EthernetServer。\n" +"\n" + +#: debug/Compiler.java:483 +msgid "The Client class has been renamed EthernetClient." +msgstr "類別Client已經改名為EthernetClient。" + +#: debug/Compiler.java:484 +msgid "" +"\n" +"As of Arduino 1.0, the Client class in the Ethernet library has been renamed " +"to EthernetClient.\n" +"\n" +msgstr "" +"\n" +"從Arduino 1.0開始,Ethernet程式庫的Client類別已經改名" +"為EthernetClient。\n" +"\n" + +#: debug/Compiler.java:489 +msgid "The Udp class has been renamed EthernetUdp." +msgstr "類別Udp已經改名為EthernetUdp。" + +#: debug/Compiler.java:490 +msgid "" +"\n" +"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to " +"EthernetClient.\n" +"\n" +msgstr "" + +#: debug/Compiler.java:495 +msgid "Wire.send() has been renamed Wire.write()." +msgstr "Wire.send()已經改名為Wire.write()。" + +#: debug/Compiler.java:496 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for " +"consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"從Arduino 1.0開始,Wire.send()函式已經改名為Wire.wirte()," +"以便與其他程式庫保持一致。\n" +"\n" + +#: debug/Compiler.java:501 +msgid "Wire.receive() has been renamed Wire.read()." +msgstr "Wire.receive()已經改名為Wire.read()。" + +#: debug/Compiler.java:502 +msgid "" +"\n" +"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() " +"for consistency with other libraries.\n" +"\n" +msgstr "" +"\n" +"從Arduino 1.0開始,Wire.receive()函式已經改名為Wire.read()," +"以便與其他程式庫保持一致。\n" +"\n" + +#: EditorConsole.java:152 +msgid "Console Error" +msgstr "主控台錯誤" + +#: EditorConsole.java:153 +msgid "" +"A problem occurred while trying to open the\n" +"files used to store the console output." +msgstr "" +"試著開啟用來儲存主控台輸出的檔案時," +"發生問題。" + +#: Base.java:184 +msgid "Non-fatal error while setting the Look & Feel." +msgstr "設定外觀&感覺時發生非嚴重性的錯誤" + +#: Base.java:185 +msgid "The error message follows, however Arduino should run fine." +msgstr "底下會有錯誤訊息,但Arduino應該還是可以正常運作" + +#: Base.java:220 +msgid "Problem Setting the Platform" +msgstr "設定平台時發生問題" + +#: Base.java:221 +msgid "" +"An unknown error occurred while trying to load\n" +"platform-specific code for your machine." +msgstr "" +"試著為你的機器載入與平台相關的程式碼時時,\n" +"發生未知錯誤。" + +#: Base.java:232 +msgid "Please install JDK 1.5 or later" +msgstr "請安裝JDK 1.5(或更新的版本)" + +#: Base.java:233 +msgid "" +"Arduino requires a full JDK (not just a JRE)\n" +"to run. Please install JDK 1.5 or later.\n" +"More information can be found in the reference." +msgstr "" +"執行Arduino需要完整的JDK(不僅是JRE),\n" +"請安裝JDK 1.5(或更新的版本)。\n" +"更多資訊可在參考文件裡找到。" + +#: Base.java:257 +msgid "Sketchbook folder disappeared" +msgstr "草稿碼簿目錄不見了" + +#: Base.java:258 +msgid "" +"The sketchbook folder no longer exists.\n" +"Arduino will switch to the default sketchbook\n" +"location, and create a new sketchbook folder if\n" +"necessary. Arduino will then stop talking about\n" +"himself in the third person." +msgstr "" +"草稿碼簿目錄不存在。\n" +"Arduino將改成預設的草稿碼簿的路徑,\n" +"若有需要會建立新的。\n" +"Arduino接下來將停止以第三人稱\n" +"討論它自己。" + +#: Base.java:532 +msgid "Time for a Break" +msgstr "該是休息一下的時刻囉" + +#: Base.java:533 +msgid "" +"You've reached the limit for auto naming of new sketches\n" +"for the day. How about going for a walk instead?" +msgstr "" +"你今天已經達到自動命名草稿碼的數目上限了,\n" +"何不外出散散步呢?" + +#: Base.java:537 +msgid "Sunshine" +msgstr "陽光" + +#: Base.java:538 +msgid "No really, time for some fresh air for you." +msgstr "不,我說真的,該是時候呼吸呼吸新鮮空氣了。" + +#: Base.java:633 +msgid "Open an Arduino sketch..." +msgstr "開啟Arduino草稿碼..." + +#: Base.java:772 +msgid "" +" Are you " +"sure you want to Quit?

Closing the last open sketch will quit Arduino." +msgstr "" +" 你確定" +"要離開嗎?

關閉最後一份開啟中的草稿碼就回離開Arduino。" + +#: Base.java:970 +msgid "Contributed" +msgstr "貢獻" + +#: Base.java:1095 +msgid "Sketch Does Not Exist" +msgstr "草稿碼不存在" + +#: Base.java:1096 +msgid "" +"The selected sketch no longer exists.\n" +"You may need to restart Arduino to update\n" +"the sketchbook menu." +msgstr "" +"被選的草稿碼已經不存在了。\n" +"你可能需要重新啟動Arduino,\n" +"以更新草稿碼簿的目錄。" + +#: Base.java:1125 +#, java-format +msgid "" +"The sketch \"{0}\" cannot be used.\n" +"Sketch names must contain only basic letters and numbers\n" +"(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 "" +"這份草稿碼\"{0}\"無法使用。\n" +"草稿碼的名稱只能含有一般的字母與數字\n" +"(只能用ASCII,不能有空白,不能以數字開頭。)\n" +"若不想看到此訊息,請從{1}移除草稿碼。\n" + +#: Base.java:1132 +msgid "Ignoring sketch with bad name" +msgstr "忽略名稱錯誤的草稿碼" + +#: Base.java:1202 +#, java-format +msgid "" +"The library \"{0}\" cannot be used.\n" +"Library names must contain only basic letters and numbers.\n" +"(ASCII only and no spaces, and it cannot start with a number)" +msgstr "" +"這份程式庫\"{0}\"無法使用。\n" +"程式庫的名稱只能含有一般的字母與數字\n" +"(只能用ASCII,不能有空白,不能以數字開頭。)\n" + +#: Base.java:1207 +msgid "Ignoring bad library name" +msgstr "忽略名稱錯誤的程式庫" + +#: Base.java:1432 +msgid "Problem getting data folder" +msgstr "取得資料目錄時發生問題" + +#: Base.java:1433 +msgid "Error getting the Arduino data folder." +msgstr "取得Arduino資料目錄時發生錯誤" + +#: Base.java:1440 +msgid "Settings issues" +msgstr "設定問題" + +#: Base.java:1441 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your settings." +msgstr "" +"Arduino無法執行,因為它無法\n" +"建立儲存你的設定值的目錄。" + +#: Base.java:1602 +msgid "You forgot your sketchbook" +msgstr "你忘記你的草稿碼簿了" + +#: Base.java:1603 +msgid "" +"Arduino cannot run because it could not\n" +"create a folder to store your sketchbook." +msgstr "" +"Arduino無法執行,因為它無法\n" +"建立儲存你的草稿碼簿的目錄。" + +#: Base.java:1623 +msgid "Select (or create new) folder for sketches..." +msgstr "選擇(或建立)存放草稿碼的目錄..." + +#: Base.java:1647 +msgid "Problem Opening URL" +msgstr "開啟URL時發生問題" + +#: Base.java:1648 +#, java-format +msgid "" +"Could not open the URL\n" +"{0}" +msgstr "" +"無法開啟這個URL\n" +"{0}" + +#: Base.java:1671 +msgid "Problem Opening Folder" +msgstr "開啟目錄時發生問題" + +#: Base.java:1672 +#, java-format +msgid "" +"Could not open the folder\n" +"{0}" +msgstr "" +"無法開啟這個目錄\n" +"{0}" + +#: Base.java:1785 +msgid "Guide_MacOSX.html" +msgstr "" + +#: Base.java:1787 +msgid "Guide_Windows.html" +msgstr "Guide_Windows.html" + +#: Base.java:1789 +msgid "http://www.arduino.cc/playground/Learning/Linux" +msgstr "http://www.arduino.cc/playground/Learning/Linux" + +#: Base.java:1794 +msgid "index.html" +msgstr "index.html" + +#: Base.java:1799 +msgid "Guide_Environment.html" +msgstr "Guide_Environment.html" + +#: Base.java:1804 +msgid "environment" +msgstr "環境" + +#: Base.java:1804 +msgid "platforms.html" +msgstr "platforms.html" + +#: Base.java:1809 +msgid "Guide_Troubleshooting.html" +msgstr "Guide_Troubleshooting.html" + +#: Base.java:1814 +msgid "FAQ.html" +msgstr "FAQ.html" + +#: Base.java:1826 +msgid "Message" +msgstr "訊息" + +#: Base.java:1842 +msgid "Warning" +msgstr "警告" + +#: Base.java:2196 +#, java-format +msgid "Could not remove old version of {0}" +msgstr "無法移除{0}的舊版" + +#: Base.java:2206 +#, java-format +msgid "Could not replace {0}" +msgstr "無法取代{0}" + +#: Base.java:2247 Base.java:2270 +#, java-format +msgid "Could not delete {0}" +msgstr "無法刪除{0}" + +#: EditorHeader.java:292 +msgid "New Tab" +msgstr "新增標籤" + +#: EditorHeader.java:300 +msgid "Rename" +msgstr "重新命名" + +#: EditorHeader.java:326 +msgid "Previous Tab" +msgstr "上一個標籤" + +#: EditorHeader.java:340 +msgid "Next Tab" +msgstr "下一個標籤" + +#: EditorToolbar.java:41 EditorToolbar.java:46 +msgid "Verify" +msgstr "驗證" + +#: EditorToolbar.java:41 +msgid "Open" +msgstr "開啟" + +#: EditorToolbar.java:46 +msgid "New Editor Window" +msgstr "新編輯器視窗" + +#: EditorToolbar.java:46 +msgid "Open in Another Window" +msgstr "以另一個視窗開啟" + +#: Platform.java:167 +msgid "No launcher available" +msgstr "沒有啟動者" + +#: Platform.java:168 +msgid "" +"Unspecified platform, no launcher available.\n" +"To enable opening URLs or folders, add a \n" +"\"launcher=/path/to/app\" line to preferences.txt" +msgstr "" +"沒有指定平台,沒有啟動者。\n" +"若要開啟URL或目錄,請在preferences.txt加入這一行:\n" +"\"launcher=/path/to/app\"。" + +#: Theme.java:52 +msgid "" +"Could not read color theme settings.\n" +"You'll need to reinstall Processing." +msgstr "" +"無法讀取色彩佈景主題的設定。\n" +"你需要重新安裝Processing。" + +#: Preferences.java:80 +msgid "Browse" +msgstr "瀏覽" + +#: Preferences.java:83 +msgid "System Default" +msgstr "" + +#: Preferences.java:84 +msgid "Arabic" +msgstr "" + +#: Preferences.java:85 +msgid "Aragonese" +msgstr "" + +#: Preferences.java:86 +msgid "Catalan" +msgstr "" + +#: Preferences.java:87 +msgid "Chinese Simplified" +msgstr "" + +#: Preferences.java:88 +msgid "Chinese Traditional" +msgstr "" + +#: Preferences.java:89 +msgid "Danish" +msgstr "" + +#: Preferences.java:90 +msgid "Dutch" +msgstr "" + +#: Preferences.java:91 +msgid "English" +msgstr "" + +#: Preferences.java:92 +msgid "Estonian" +msgstr "" + +#: Preferences.java:93 +msgid "French" +msgstr "" + +#: Preferences.java:94 +msgid "Filipino" +msgstr "" + +#: Preferences.java:95 +msgid "Galician" +msgstr "" + +#: Preferences.java:96 +msgid "German" +msgstr "" + +#: Preferences.java:97 +msgid "Greek" +msgstr "" + +#: Preferences.java:98 +msgid "Hungarian" +msgstr "" + +#: Preferences.java:99 +msgid "Indonesian" +msgstr "" + +#: Preferences.java:100 +msgid "Italian" +msgstr "" + +#: Preferences.java:101 +msgid "Japanese" +msgstr "" + +#: Preferences.java:102 +msgid "Korean" +msgstr "" + +#: Preferences.java:103 +msgid "Latvian" +msgstr "" + +#: Preferences.java:104 +msgid "Lithuaninan" +msgstr "" + +#: Preferences.java:105 +msgid "Persian" +msgstr "" + +#: Preferences.java:106 +msgid "Polish" +msgstr "" + +#: Preferences.java:107 Preferences.java:108 +msgid "Portuguese" +msgstr "" + +#: Preferences.java:109 +msgid "Romanian" +msgstr "" + +#: Preferences.java:110 +msgid "Russian" +msgstr "" + +#: Preferences.java:111 +msgid "Spanish" +msgstr "" + +#: Preferences.java:210 +msgid "" +"Could not read default settings.\n" +"You'll need to reinstall Arduino." +msgstr "" +"無法讀取預設設定,\n" +"你需要重新安裝Arduino" + +#: Preferences.java:242 +#, java-format +msgid "Could not read preferences from {0}" +msgstr "無法從{0}讀取偏好設定" + +#: Preferences.java:261 +msgid "Error reading preferences" +msgstr "讀取偏好設定時發生錯誤" + +#: Preferences.java:263 +#, java-format +msgid "" +"Error reading the preferences file. Please delete (or move)\n" +"{0} and restart Arduino." +msgstr "" +"讀取偏好設定檔時發生錯誤,請刪除(或移動)\n" +"{0}並且重新啟動Arduino" + +#: Preferences.java:299 +msgid "Sketchbook location:" +msgstr "草稿碼簿的位置:" + +#: Preferences.java:314 +msgid "Select new sketchbook location" +msgstr "選擇新的草稿碼簿位置" + +#: Preferences.java:337 +msgid "Editor language: " +msgstr "" + +#: Preferences.java:342 Preferences.java:358 +msgid " (requires restart of Arduino)" +msgstr " (需要重新啟動Arduino)" + +#: Preferences.java:354 +msgid "Editor font size: " +msgstr "編輯器字型大小:" + +#: Preferences.java:371 +msgid "Show verbose output during: " +msgstr "顯示詳細輸出:" + +#: Preferences.java:373 +msgid "compilation " +msgstr "編譯" + +#: Preferences.java:375 +msgid "upload" +msgstr "上傳" + +#: Preferences.java:384 +msgid "Verify code after upload" +msgstr "" + +#: Preferences.java:393 +msgid "Use external editor" +msgstr "使用外部編輯器" + +#: Preferences.java:403 +msgid "Check for updates on startup" +msgstr "在啟動時檢查更新" + +#: Preferences.java:412 +msgid "Update sketch files to new extension on save (.pde -> .ino)" +msgstr "儲存時更新草稿碼檔案的附檔名(.pde -> .ino)" + +#: Preferences.java:423 +msgid "Automatically associate .ino files with Arduino" +msgstr "自動將.ino檔案與Arduino關聯起來" + +#: Preferences.java:433 +msgid "More preferences can be edited directly in the file" +msgstr "在偏好設定檔案裡還有更多的設定值,可以直接編輯" + +#: Preferences.java:462 +msgid "(edit only when Arduino is not running)" +msgstr "(只能在不執行Arduino時進行編輯)" + +#: Preferences.java:609 +#, java-format +msgid "ignoring invalid font size {0}" +msgstr "忽略無效的字型大小{0}" diff --git a/app/src/processing/app/Resources_zh_tw.properties b/app/src/processing/app/Resources_zh_tw.properties new file mode 100644 index 000000000..6ebcbca45 --- /dev/null +++ b/app/src/processing/app/Resources_zh_tw.properties @@ -0,0 +1,1034 @@ +# Chinese translations for Arduino IDE. +# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Arduino IDE package. +# yehnan <>, 2012. +# +!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: yehnan <>\nLanguage-Team\: Chinese\nLanguage\: zh\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\n + +#: Editor.java:366 +No\ files\ were\ added\ to\ the\ sketch.=\u4e26\u6c92\u6709\u6a94\u6848\u52a0\u5165\u8349\u7a3f\u78bc + +#: Editor.java:369 Sketch.java:996 +One\ file\ added\ to\ the\ sketch.=\u4e00\u500b\u6a94\u6848\u52a0\u5165\u8349\u7a3f\u78bc + +#: Editor.java:373 +#, java-format +{0}\ files\ added\ to\ the\ sketch.={0}\u500b\u6a94\u6848\u52a0\u5165\u8349\u7a3f\u78bc + +#: Editor.java:484 +File=\u6a94\u6848 + +#: Editor.java:486 EditorToolbar.java:41 +New=\u65b0\u589e + +#: Editor.java:494 Base.java:903 +Open...=\u958b\u555f... + +#: Editor.java:503 +Sketchbook=\u8349\u7a3f\u78bc\u7c3f + +#: Editor.java:509 +Examples=\u7bc4\u4f8b + +#: Editor.java:514 Editor.java:1977 +Close=\u95dc\u9589 + +#: Editor.java:522 Editor.java:2017 Editor.java:2421 EditorToolbar.java:41 +#: EditorToolbar.java:46 +Save=\u5132\u5b58 + +#: Editor.java:530 +Save\ As...=\u53e6\u5b58\u65b0\u6a94... + +#: Editor.java:538 EditorToolbar.java:41 +Upload=\u4e0a\u50b3 + +#: Editor.java:546 EditorToolbar.java:46 +Upload\ Using\ Programmer=\u4ee5\u71d2\u9304\u5668\u4e0a\u50b3 + +#: Editor.java:556 +Page\ Setup=\u9801\u9762\u8a2d\u5b9a + +#: Editor.java:564 +Print=\u5217\u5370 + +#: Editor.java:576 Preferences.java:279 +Preferences=\u504f\u597d\u8a2d\u5b9a + +#: Editor.java:586 Base.java:782 +Quit=\u96e2\u958b + +#: Editor.java:600 +Sketch=\u8349\u7a3f\u78bc + +#: Editor.java:602 +Verify\ /\ Compile=\u9a57\u8b49\u2215\u7de8\u8b6f + +#: Editor.java:629 +Import\ Library...=\u532f\u5165\u7a0b\u5f0f\u5eab... + +#: Editor.java:634 +Show\ Sketch\ Folder=\u986f\u793a\u8349\u7a3f\u78bc\u7684\u6240\u5728\u76ee\u9304 + +#: Editor.java:643 +Add\ File...=\u52a0\u5165\u6a94\u6848... + +#: Editor.java:656 +Tools=\u5de5\u5177 + +#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46 +Serial\ Monitor=\u5e8f\u5217\u57e0\u76e3\u63a7\u8996\u7a97 + +#: Editor.java:682 +Board=\u677f\u5b50 + +#: Editor.java:690 +Serial\ Port=\u5e8f\u5217\u57e0 + +#: Editor.java:695 +Programmer=\u71d2\u9304\u5668 + +#: Editor.java:699 +Burn\ Bootloader=\u71d2\u9304bootloader + +#: Editor.java:923 +serialMenu\ is\ null=\u5e8f\u5217\u57e0\u7684\u9078\u55ae\u662f\u7a7a\u7684 + +#: Editor.java:927 Editor.java:934 +name\ is\ null=\u540d\u7a31\u662f\u7a7a\u7684 + +#: Editor.java:986 +error\ retrieving\ port\ list=\u53d6\u5f97\u5e8f\u5217\u57e0\u5217\u8868\u6642\u767c\u751f\u932f\u8aa4 + +#: Editor.java:1002 +Help=\u8aaa\u660e + +#: Editor.java:1041 +Getting\ Started=\u5165\u9580\u624b\u518a + +#: Editor.java:1049 +Environment=\u958b\u767c\u74b0\u5883 + +#: Editor.java:1057 +Troubleshooting=\u6392\u9664\u554f\u984c + +#: Editor.java:1065 +Reference=\u53c3\u8003\u6587\u4ef6 + +#: Editor.java:1073 Editor.java:2728 +Find\ in\ Reference=\u5728\u53c3\u8003\u6587\u4ef6\u88e1\u5c0b\u627e + +#: Editor.java:1083 +Frequently\ Asked\ Questions=\u5e38\u898b\u554f\u7b54\u96c6 + +#: Editor.java:1091 +Visit\ Arduino.cc=\u62dc\u8a2aArduino.cc + +#: Editor.java:1094 +http\://arduino.cc/=http\://arduino.cc/ + +#: Editor.java:1102 +About\ Arduino=\u95dc\u65bcArduino + +#: Editor.java:1116 +Edit=\u7de8\u8f2f + +#: Editor.java:1119 Editor.java:1341 +Undo=\u5fa9\u539f + +#: Editor.java:1124 Editor.java:1126 Editor.java:1376 +Redo=\u91cd\u8907 + +#: Editor.java:1135 Editor.java:2652 +Cut=\u526a\u4e0b + +#: Editor.java:1143 Editor.java:2660 +Copy=\u8907\u88fd + +#: Editor.java:1151 Editor.java:2668 +Copy\ for\ Forum=\u70ba\u4e86\u8ad6\u58c7\u9032\u884c\u8907\u88fd + +#: Editor.java:1163 Editor.java:2676 +Copy\ as\ HTML=\u7576\u505aHTML\u9032\u884c\u8907\u88fd + +#: Editor.java:1175 Editor.java:2684 +Paste=\u8cbc\u4e0a + +#: Editor.java:1184 Editor.java:2692 +Select\ All=\u5168\u9078 + +#: Editor.java:1194 Editor.java:2702 +Comment/Uncomment=\u8a3b\u89e3\u2215\u79fb\u9664\u8a3b\u89e3 + +#: Editor.java:1202 Editor.java:2710 +Increase\ Indent=\u589e\u52a0\u7e2e\u6392\u6df1\u5ea6 + +#: Editor.java:1210 Editor.java:2718 +Decrease\ Indent=\u6e1b\u5c11\u7e2e\u6392\u6df1\u5ea6 + +#: Editor.java:1220 +Find...=\u5c0b\u627e... + +#: Editor.java:1235 +Find\ Next=\u627e\u4e0b\u4e00\u500b + +#: Editor.java:1245 +Find\ Previous=\u627e\u4e0a\u8863\u500b + +#: Editor.java:1255 +Use\ Selection\ For\ Find=\u4ee5\u9078\u53d6\u5b57\u4e32\u9032\u884c\u5c0b\u627e + +#: Editor.java:1816 +First\ select\ a\ word\ to\ find\ in\ the\ reference.=\u8acb\u5148\u9078\u64c7\u5b57\u4e32\uff0c\u518d\u5230\u53c3\u8003\u6587\u4ef6\u88e1\u5c0b\u627e\u3002 + +#: Editor.java:1823 +#, java-format +No\ reference\ available\ for\ "{0}"=\u95dc\u65bc"{0}"\u6c92\u6709\u53c3\u8003\u6587\u4ef6 + +#: Editor.java:1826 +#, java-format +{0}.html={0}.html + +#: Editor.java:1843 Sketch.java:1647 +Compiling\ sketch...=\u7de8\u8b6f\u8349\u7a3f\u78bc... + +#: Editor.java:1864 Editor.java:1881 +Done\ compiling.=\u7de8\u8b6f\u5b8c\u6210 + +#: Editor.java:1973 +#, java-format +Save\ changes\ to\ "{0}"?\ \ =\u5c07\u66f4\u52d5\u8655\u5132\u5b58\u5230"{0}"\uff1f + +#: Editor.java:2006 +\ \ 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.= \u4f60\u60f3\u5728\u95dc\u9589\u8349\u7a3f\u78bc\u524d\u5132\u5b58\u8b8a\u66f4\u7684\u5730\u65b9\u55ce\uff1f

\u82e5\u4e0d\u5132\u5b58\uff0c\u5c07\u6703\u907a\u5931\u8b8a\u66f4\u7684\u5730\u65b9\u3002 + +#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589 +#: Sketch.java:741 Sketch.java:1046 Preferences.java:78 +Cancel=\u53d6\u6d88 + +#: Editor.java:2017 +Don't\ Save=\u4e0d\u5132\u5b58 + +#: Editor.java:2089 +Bad\ file\ selected=\u9078\u64c7\u4e86\u4e0d\u5c0d\u7684\u6a94\u6848 + +#: Editor.java:2090 +Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Processing\u53ea\u80fd\u958b\u555f\u5b83\u81ea\u5df1\u7684\u8349\u7a3f\u78bc\uff0c\n\u4ee5\u53ca\u5176\u4ed6.ino\u6216.pde\u7684\u6a94\u6848\u3002 + +#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741 +#: Sketch.java:1046 Preferences.java:79 +OK=\u597d + +#: Editor.java:2100 +#, java-format +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u6a94\u6848"{0}"\u5fc5\u9808\u653e\u5728\u540d\u70ba"{1}"\u7684\n\u8349\u7a3f\u78bc\u76ee\u9304\u4e2d\u3002\n\u5efa\u7acb\u9019\u500b\u76ee\u9304\u3001\u79fb\u52d5\u6a94\u6848\u3001\u7136\u5f8c\u7e7c\u7e8c\uff1f + +#: Editor.java:2109 +Moving=\u79fb\u52d5\u4e2d + +#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159 +#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507 +#: Sketch.java:530 Sketch.java:547 Base.java:1861 Preferences.java:240 +Error=\u932f\u8aa4 + +#: Editor.java:2122 +#, java-format +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=\u540d\u70ba"{0}"\u7684\u76ee\u9304\u5df2\u7d93\u5b58\u5728\uff0c\u7121\u6cd5\u958b\u555f\u8349\u7a3f\u78bc\u3002 + +#: Editor.java:2132 +Could\ not\ create\ the\ sketch\ folder.=\u7121\u6cd5\u5efa\u7acb\u8349\u7a3f\u78bc\u76ee\u9304 + +#: Editor.java:2141 +Could\ not\ copy\ to\ a\ proper\ location.=\u7121\u6cd5\u8907\u88fd\u5230\u9069\u7576\u7684\u4f4d\u7f6e + +#: Editor.java:2159 +Could\ not\ create\ the\ sketch.=\u7121\u6cd5\u5efa\u7acb\u8349\u7a3f\u78bc + +#: Editor.java:2166 +#, java-format +{0}\ |\ Arduino\ {1}={0} | Arduino {1} + +#: Editor.java:2223 Editor.java:2261 +Saving...=\u5132\u5b58\u4e2d... + +#: Editor.java:2228 Editor.java:2264 +Done\ Saving.=\u5132\u5b58\u5b8c\u7562 + +#: Editor.java:2270 +Save\ Canceled.=\u5132\u5b58\u52d5\u4f5c\u88ab\u53d6\u6d88\u4e86 + +#: Editor.java:2296 +#, java-format +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u627e\u4e0d\u5230\u5e8f\u5217\u57e0{0}\uff0c\n\u4ee5\u53e6\u4e00\u500b\u5e8f\u5217\u57e0\u91cd\u65b0\u5617\u8a66\u4e0a\u50b3\u55ce\uff1f + +#: Editor.java:2331 +Uploading\ to\ I/O\ Board...=\u4e0a\u50b3\u5230I/O\u677f\u5b50\u4e2d... + +#: Editor.java:2348 Editor.java:2384 +Done\ uploading.=\u4e0a\u50b3\u5b8c\u7562 + +#: Editor.java:2356 Editor.java:2392 +Upload\ canceled.=\u4e0a\u50b3\u52d5\u4f5c\u88ab\u53d6\u6d88\u4e86 + +#: Editor.java:2420 +Save\ changes\ before\ export?=\u532f\u51fa\u524d\u5132\u5b58\u8b8a\u66f4\u7684\u5730\u65b9\uff1f + +#: Editor.java:2435 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u532f\u51fa\u52d5\u4f5c\u88ab\u53d6\u6d88\u4e86\uff0c\u8b8a\u66f4\u7684\u5730\u65b9\u5fc5\u9808\u5148\u5132\u5b58\u3002 + +#: Editor.java:2457 +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u5c07bootloader\u71d2\u9304\u5230I/O\u677f\u5b50\u88e1\uff08\u53ef\u80fd\u9700\u8981\u4e00\u9ede\u6642\u9593\uff09... + +#: Editor.java:2463 +Done\ burning\ bootloader.=\u71d2\u9304bootloader\u5b8c\u7562 + +#: Editor.java:2465 Editor.java:2469 Editor.java:2473 +Error\ while\ burning\ bootloader.=\u71d2\u9304bootloader\u6642\u767c\u751f\u932f\u8aa4 + +#: Editor.java:2500 +Printing...=\u5217\u5370... + +#: Editor.java:2517 +Done\ printing.=\u5217\u5370\u5b8c\u7562 + +#: Editor.java:2520 +Error\ while\ printing.=\u5217\u5370\u6642\u767c\u751f\u932f\u8aa4 + +#: Editor.java:2524 +Printing\ canceled.=\u5217\u5370\u52d5\u4f5c\u88ab\u53d6\u6d88\u4e86 + +#: Editor.java:2572 +#, java-format +Bad\ error\ line\:\ {0}=\u4e0d\u5c0d\u7684\u884c\u6578\uff1a{0} + +#: Editor.java:2641 +Open\ URL=\u958b\u555fURL + +#: UpdateCheck.java:53 +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt + +#: UpdateCheck.java:103 +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Arduino\u6709\u65b0\u7248\u672c\u4e86\uff0c\n\u4f60\u60f3\u8981\u958b\u555fArduino\u7684\u4e0b\u8f09\u9801\u9762\u55ce\uff1f + +#: UpdateCheck.java:108 Preferences.java:76 +Yes=\u662f + +#: UpdateCheck.java:108 Preferences.java:77 +No=\u5426 + +#: UpdateCheck.java:111 +Update=\u66f4\u65b0 + +#: UpdateCheck.java:118 +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software + +#: FindReplace.java:80 +Find\:=\u5c0b\u627e\uff1a + +#: FindReplace.java:81 +Replace\ with\:=\u53d6\u4ee3\u70ba\uff1a + +#: FindReplace.java:96 +Ignore\ Case=\u5ffd\u7565\u5927\u5c0f\u5beb + +#: FindReplace.java:105 +Wrap\ Around=\u5305\u88f9\u8d77\u4f86 + +#: FindReplace.java:120 FindReplace.java:131 +Replace\ All=\u5168\u90e8\u53d6\u4ee3 + +#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1050 +Replace=\u53d6\u4ee3 + +#: FindReplace.java:122 FindReplace.java:129 +Replace\ &\ Find=\u53d6\u4ee3&\u5c0b\u627e + +#: FindReplace.java:123 FindReplace.java:128 +Previous=\u524d\u4e00\u500b + +#: FindReplace.java:124 FindReplace.java:127 +Find=\u5c0b\u627e + +#: SerialMonitor.java:93 +Send=\u50b3\u9001 + +#: SerialMonitor.java:110 +Autoscroll=\u81ea\u52d5\u6372\u52d5 + +#: SerialMonitor.java:112 +No\ line\ ending=\u6c92\u6709\u884c\u7d50\u5c3e + +#: SerialMonitor.java:112 +Newline=NL(newline) + +#: SerialMonitor.java:112 +Carriage\ return=CR(carriage return) + +#: SerialMonitor.java:112 +Both\ NL\ &\ CR=NL\u8207CR + +#: SerialMonitor.java:130 SerialMonitor.java:133 +\ baud=\ \u50b3\u8f38\u9b91\u7387 + +#: Serial.java:147 +#, java-format +Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=\u5e8f\u5217\u57e0''{0}''\u8655\u65bc\u4f7f\u7528\u72c0\u614b\u4e2d\uff0c\u8acb\u8a66\u8457\u95dc\u9589\u53ef\u80fd\u6b63\u5728\u4f7f\u7528\u5e8f\u5217\u57e0\u7684\u8edf\u9ad4 + +#: Serial.java:154 +#, java-format +Error\ opening\ serial\ port\ ''{0}''.=\u958b\u555f\u5e8f\u5217\u57e0''{0}''\u6642\u767c\u751f\u932f\u8aa4 + +#: Serial.java:167 +#, java-format +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u627e\u4e0d\u5230\u5e8f\u5217\u57e0''{0}''\uff0c\u5728\u300c\u5de5\u5177 > \u5e8f\u5217\u57e0\u300d\u9078\u55ae\u88e1\uff0c\u4f60\u9078\u7684\u5e8f\u5217\u57e0\u6b63\u78ba\u55ce\uff1f + +#: Serial.java:424 +#, java-format +readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=readBytesUntil()\u7684\u4f4d\u5143\u7d44\u7de9\u885d\u5340\u592a\u5c0f\uff0c\u4e0d\u80fd\u5bb9\u7d0d{0} bytes\uff0c\u76f4\u5230char {1}\uff08\u5305\u542b\uff09 + +#: Serial.java:567 +#, java-format +Error\ inside\ Serial.{0}()=\u5728Serial.{0}()\u88e1\u767c\u751f\u932f\u8aa4 + +#: tools/AutoFormat.java:91 +Auto\ Format=\u81ea\u52d5\u683c\u5f0f\u5316 + +#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54 +No\ changes\ necessary\ for\ Auto\ Format.=\u81ea\u52d5\u683c\u5f0f\u5316\u6c92\u6709\u9700\u8981\u8b8a\u66f4\u7684\u5730\u65b9 + +#: tools/AutoFormat.java:919 +Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u81ea\u52d5\u683c\u5f0f\u5316\u88ab\u53d6\u6d88\u4e86\uff1a\u592a\u591a\u53f3\u62ec\u865f + +#: tools/AutoFormat.java:922 +Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u81ea\u52d5\u683c\u5f0f\u5316\u88ab\u53d6\u6d88\u4e86\uff1a\u592a\u591a\u5de6\u62ec\u865f + +#: tools/AutoFormat.java:928 +Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u81ea\u52d5\u683c\u5f0f\u5316\u88ab\u53d6\u6d88\u4e86\uff1a\u592a\u591a\u53f3\u5927\u62ec\u865f + +#: tools/AutoFormat.java:931 +Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u81ea\u52d5\u683c\u5f0f\u5316\u88ab\u53d6\u6d88\u4e86\uff1a\u592a\u591a\u5de6\u5927\u62ec\u865f + +#: tools/AutoFormat.java:941 +Auto\ Format\ finished.=\u81ea\u52d5\u683c\u5f0f\u5316\u5b8c\u7562 + +#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 +#: tools/FixEncoding.java:79 +Fix\ Encoding\ &\ Reload=\u4fee\u6b63\u7de8\u78bc\u4e26\u91cd\u65b0\u8f09\u5165 + +#: tools/FixEncoding.java:57 +Discard\ all\ changes\ and\ reload\ sketch?=\u653e\u68c4\u6240\u6709\u8b8a\u66f4\u4e26\u91cd\u65b0\u8f09\u5165\u8349\u7a3f\u78bc\uff1f + +#: 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\u9019\u4efd\u8349\u7a3f\u78bc\uff0c\u53ef\u80fd\u6703\u8986\u84cb\u820a\u7248\u672c\u3002\n\u8acb\u7528\u300c\u958b\u555f\u300d\u91cd\u65b0\u958b\u555f\u8349\u7a3f\u78bc\u518d\u8a66\u4e00\u6b21\u3002\n + +#: tools/Archiver.java:48 +Archive\ Sketch=\u5c01\u5b58\u8349\u7a3f\u78bc + +#: tools/Archiver.java:59 +yyMMdd=yyMMdd + +#: tools/Archiver.java:74 +Couldn't\ archive\ sketch=\u7121\u6cd5\u5c01\u5b58\u8349\u7a3f\u78bc + +#: tools/Archiver.java:75 +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u8349\u7a3f\u78bc\u5c01\u5b58\u52d5\u4f5c\u88ab\u53d6\u6d88\u4e86\n\uff0c\u56e0\u70ba\u7121\u6cd5\u9069\u7576\u5730\u5132\u5b58\u8349\u7a3f\u78bc\u3002 + +#: tools/Archiver.java:109 +Archive\ sketch\ as\:=\u5c07\u8349\u7a3f\u78bc\u5c01\u5b58\u70ba\uff1a + +#: tools/Archiver.java:139 +Archive\ sketch\ canceled.=\u8349\u7a3f\u78bc\u5c01\u5b58\u52d5\u4f5c\u88ab\u53d6\u6d88\u4e86 + +#: SketchCode.java:83 +#, java-format +Error\ while\ loading\ code\ {0}=\u8f09\u5165\u7a0b\u5f0f\u78bc{0}\u6642\u767c\u751f\u932f\u8aa4 + +#: SketchCode.java:258 +#, java-format +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"\u542b\u6709\u7121\u6cd5\u8fa8\u8b58\u7684\u5b57\u5143\u3002\u82e5\u9019\u4efd\u7a0b\u5f0f\u662f\u4ee5\u820a\u7248Processing\u5efa\u7acb\u7684\u8a71\uff0c\u4f60\u9700\u8981\u4ee5\u300c\u5de5\u5177 -> \u4fee\u6b63\u7de8\u78bc\u4e26\u91cd\u65b0\u8f09\u5165\u300d\u5c07\u8349\u7a3f\u78bc\u66f4\u65b0\u70baUTF-8\u7de8\u78bc\u683c\u5f0f\uff0c\u82e5\u4e0d\u60f3\u9019\u9ebc\u505a\u7684\u8a71\uff0c\u8acb\u522a\u9664\u4e0d\u6b63\u78ba\u7684\u5b57\u5143\uff0c\u4ee5\u514d\u9664\u6b64\u8b66\u544a\u8a0a\u606f\u3002 + +#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970 +Sketch\ is\ Read-Only=\u8349\u7a3f\u78bc\u70ba\u552f\u8b80\u72c0\u614b + +#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u6709\u4e9b\u6a94\u6848\u70ba"\u552f\u8b80"\uff0c\u4f60\u5fc5\u9808\u5c07\u8349\u7a3f\u78bc\u91cd\u65b0\u5132\u5b58\u5230\u5225\u7684\u4f4d\u7f6e\uff0c\u7136\u5f8c\u91cd\u8a66\u3002 + +#: Sketch.java:286 +Name\ for\ new\ file\:=\u65b0\u6a94\u6848\u547d\u540d\uff1a + +#: Sketch.java:298 +Sketch\ is\ Untitled=\u8349\u7a3f\u78bc\u6c92\u6709\u540d\u7a31 + +#: Sketch.java:299 +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u6539\u540d\u8349\u7a3f\u78bc\u4e4b\u524d\uff0c\n\u8981\u4e0d\u8981\u5148\u5132\u5b58\uff1f + +#: Sketch.java:359 Sketch.java:366 Sketch.java:377 +Problem\ with\ rename=\u6539\u540d\u6642\u767c\u751f\u554f\u984c + +#: Sketch.java:360 +The\ name\ cannot\ start\ with\ a\ period.=\u540d\u7a31\u4e0d\u80fd\u4ee5\u53e5\u9ede\u300c.\u300d\u958b\u982d + +#: Sketch.java:368 +#, java-format +".{0}"\ is\ not\ a\ valid\ extension.=".{0}"\u70ba\u7121\u6548\u7684\u9644\u6a94\u540d + +#: Sketch.java:378 +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u4e3b\u8981\u6a94\u6848\u4e0d\u80fd\u4f7f\u7528\u9644\u6a94\u540d\u3002\n\uff08\u5c0d\u4f60\u4f86\u8aaa\uff0c\u9019\u4f3c\u4e4e\u662f\u500b\u5347\u7d1a\u5230\n"\u771f\u5be6\u7684"\u7a0b\u5f0f\u958b\u767c\u74b0\u5883\u7684\u597d\u6642\u6a5f\uff09 + +#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863 +Nope=\u4e0d\u8981 + +#: Sketch.java:402 +#, java-format +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=\u5728"{1}"\u88e1\u5df2\u7d93\u5b58\u5728\u540d\u70ba"{0}"\u7684\u6a94\u6848 + +#: Sketch.java:415 +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=.cpp\u6a94\u6848\u7684\u6a94\u540d\u4e0d\u80fd\u8ddf\u8349\u7a3f\u78bc\u540d\u7a31\u76f8\u540c + +#: Sketch.java:425 +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\u6539\u540d\u70ba"{0}"\n\uff0c\u56e0\u70ba\u90a3\u500b\u540d\u5b57\u5df2\u7d93\u6709\u500b.cpp\u6a94\u6848\u4e86 + +#: Sketch.java:459 +Cannot\ Rename=\u7121\u6cd5\u91cd\u65b0\u547d\u540d + +#: Sketch.java:461 +#, java-format +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u62b1\u6b49\uff0c\u5df2\u7d93\u5b58\u5728\u540d\u70ba"{0}"\u7684\u8349\u7a3f\u78bc\uff08\u6216\u76ee\u9304\uff09 + +#: Sketch.java:479 +Could\ not\ rename\ the\ sketch.\ (0)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349\u7a3f\u78bc\u3002(0) + +#: Sketch.java:487 Sketch.java:532 +#, java-format +Could\ not\ rename\ "{0}"\ to\ "{1}"=\u7121\u6cd5\u5c07"{0}"\u91cd\u65b0\u547d\u540d\u70ba"{1}" + +#: Sketch.java:500 +Could\ not\ rename\ the\ sketch.\ (1)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349\u7a3f\u78bc\u3002(1) + +#: Sketch.java:507 +Could\ not\ rename\ the\ sketch.\ (2)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349\u7a3f\u78bc\u3002(2) + +#: Sketch.java:544 +createNewFile()\ returned\ false=createNewFile()\u56de\u50b3false + +#: Sketch.java:591 +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u78ba\u5b9a\u8981\u522a\u9664\u9019\u500b\u8349\u7a3f\u78bc\uff1f + +#: Sketch.java:592 +#, java-format +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u4f60\u78ba\u5b9a\u60f3\u8981\u522a\u9664"{0}"\uff1f + +#: Sketch.java:595 EditorHeader.java:314 +Delete=\u522a\u9664 + +#: Sketch.java:620 +Couldn't\ do\ it=\u7121\u6cd5\u57f7\u884c + +#: Sketch.java:621 +#, java-format +Could\ not\ delete\ "{0}".=\u7121\u6cd5\u522a\u9664"{0}" + +#: Sketch.java:651 +removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\uff1a\u5167\u90e8\u932f\u8aa4..\u627e\u4e0d\u5230\u7a0b\u5f0f\u78bc + +#: Sketch.java:724 +Sketch\ is\ read-only=\u8349\u7a3f\u78bc\u70ba\u552f\u8b80\u72c0\u614b + +#: Sketch.java:725 +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u6709\u4e9b\u6a94\u6848\u70ba"\u552f\u8b80"\uff0c\u4f60\u5fc5\u9808\u5c07\u8349\u7a3f\u78bc\u91cd\u65b0\u5132\u5b58\u5230\u5225\u7684\u4f4d\u7f6e\u3002 + +#: Sketch.java:743 +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?=\u5728Arduino 1.0\u88e1\uff0c\u9810\u8a2d\u9644\u6a94\u540d\u5df2\u7d93\u5f9e\n.pde\u6539\u70ba.ino\uff0c\u65b0\u7684\u8349\u7a3f\u78bc\uff08\u5305\u62ec\u4ee5\u300c\u53e6\u5b58\u65b0\u6a94\u300d\u5efa\u7acb\u7684\uff09\uff0c\n\u90fd\u6703\u4f7f\u7528\u65b0\u7684\u9644\u6a94\u540d\u3002\u5df2\u7d93\u5b58\u5728\u7684\u8349\u7a3f\u78bc\u7684\u9644\u6a94\u540d\uff0c\n\u5c07\u6703\u5728\u5132\u5b58\u6642\u88ab\u66f4\u65b0\uff0c\u4f46\u4f60\u53ef\u4ee5\u5728\u504f\u597d\u8a2d\u5b9a\u88e1\n\u95dc\u9589\u9019\u500b\u52d5\u4f5c\u3002\n\n\u5132\u5b58\u8349\u7a3f\u78bc\u4e26\u66f4\u65b0\u9644\u6a94\u540d\uff1f + +#: Sketch.java:750 +.pde\ ->\ .ino=.pde -> .ino + +#: Sketch.java:829 +Save\ sketch\ folder\ as...=\u5c07\u8349\u7a3f\u78bc\u76ee\u9304\u5132\u5b58\u70ba... + +#: Sketch.java:865 +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\u5132\u5b58\u70ba"{0}"\n\uff0c\u56e0\u70ba\u5df2\u7d93\u6709\u500b\u64c1\u6709\u76f8\u540c\u540d\u7a31\u7684.cpp\u6a94\u6848\u4e86\u3002 + +#: Sketch.java:886 +How\ very\ Borges\ of\ you=How very Borges of you + +#: Sketch.java:887 +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u4f60\u4e0d\u80fd\u5c07\u8349\u7a3f\u78bc\u5132\u5b58\u5728\u5b83\u81ea\u5df1\u7684\u76ee\u9304\u88e1\uff0c\n\u9019\u6703\u6c92\u5b8c\u6c92\u4e86\u3002 + +#: Sketch.java:979 +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u9078\u64c7\u5f71\u50cf\u6a94\u6216\u5176\u4ed6\u8cc7\u6599\u6a94\u6848\uff0c\u8907\u88fd\u5230\u4f60\u7684\u8349\u7a3f\u78bc\u88e1 + +#: Sketch.java:1047 +#, java-format +Replace\ the\ existing\ version\ of\ {0}?=\u53d6\u4ee3{0}\u7684\u5df2\u5b58\u5728\u7248\u672c + +#: Sketch.java:1069 Sketch.java:1092 +Error\ adding\ file=\u52a0\u5165\u6a94\u6848\u6642\u767c\u751f\u932f\u8aa4 + +#: Sketch.java:1070 +#, java-format +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u7121\u6cd5\u522a\u9664\u73fe\u5b58\u7684''{0}''\u6a94\u6848 + +#: Sketch.java:1078 +You\ can't\ fool\ me=\u4f60\u9a19\u4e0d\u4e86\u6211\u7684 + +#: Sketch.java:1079 +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u4f60\u6b63\u8a66\u8457\u52a0\u5165\u9019\u652f\u6a94\u6848\uff0c\n\u4f46\u6a94\u6848\u5df2\u7d93\u88ab\u8907\u88fd\u5230\u8a72\u8655\u4e86\u3002\nI ain't not doin nuthin'. + +#: Sketch.java:1093 +#, java-format +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u7121\u6cd5\u5c07''{0}''\u52a0\u5165\u5230\u8349\u7a3f\u78bc\u88e1 + +#: Sketch.java:1393 Sketch.java:1424 +Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7f6e\u76ee\u9304\u4e0d\u898b\u4e86\uff0c\u6216\u662f\u7121\u6cd5\u5beb\u5165 + +#: Sketch.java:1408 +Could\ not\ find\ main\ class=\u627e\u4e0d\u5230\u4e3b\u985e\u5225 + +#: Sketch.java:1433 +#, java-format +Uncaught\ exception\ type\:\ {0}=Uncaught exception type\: {0} + +#: Sketch.java:1465 +#, java-format +Problem\ moving\ {0}\ to\ the\ build\ folder=\u5c07{0}\u79fb\u52d5\u5230\u5efa\u7f6e\u76ee\u9304\u88e1\u6642\u767c\u751f\u554f\u984c + +#: Sketch.java:1661 +Uploading...=\u4e0a\u50b3\u4e2d... + +#: Sketch.java:1684 +#, java-format +Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=\u8349\u7a3f\u78bc\u4e8c\u9032\u4f4d\u7684\u5927\u5c0f\uff1a{0} bytes\uff08\u4e0a\u9650\u70ba{1} bytes\uff09 + +#: Sketch.java:1689 +Couldn't\ determine\ program\ size\:\ {0}=\u7121\u6cd5\u5224\u65b7\u7a0b\u5f0f\u5927\u5c0f\uff1a{0} + +#: Sketch.java:1694 +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u8349\u7a3f\u78bc\u592a\u5927\u4e86\uff1b\u7e2e\u6e1b\u6280\u5de7\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size + +#: Sketch.java:1754 +Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u6709\u500b/*\u8a3b\u89e3*/\uff0c\u4f46\u6c92\u6709*/\u4f5c\u70ba\u7d50\u5c3e + +#: Sketch.java:1796 +Sketch\ Disappeared=\u8349\u7a3f\u78bc\u6d88\u5931\u4e86 + +#: Sketch.java:1797 +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u8349\u7a3f\u78bc\u76ee\u9304\u6d88\u5931\u4e86\u3002\n\u5c07\u8a66\u8457\u5728\u540c\u6a23\u7684\u4f4d\u7f6e\u91cd\u65b0\u5132\u5b58\uff0c\n\u4f46\u662f\uff0c\u7a0b\u5f0f\u78bc\u4ee5\u5916\u7684\u6771\u897f\u5c07\u6703\u907a\u5931\u3002 + +#: Sketch.java:1810 +Could\ not\ re-save\ sketch=\u7121\u6cd5\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78bc + +#: Sketch.java:1811 +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\uff0c\u6b64\u6642\u61c9\u8a72\u6703\u51fa\u554f\u984c\uff0c\n\u8acb\u5c07\u4f60\u7684\u7a0b\u5f0f\u8907\u88fd\u8cbc\u4e0a\u5230\u5225\u7684\u6587\u5b57\u7de8\u8f2f\u5668\u88e1\u3002 + +#: Sketch.java:2060 +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=\u8349\u7a3f\u78bc\u540d\u7a31\u88ab\u8b8a\u66f4\u4e86\u3002\u8349\u7a3f\u78bc\u540d\u7a31\u53ea\u80fd\u542b\u6709ASCII\u5b57\u5143\u8207\u6578\u5b57\n\uff08\u4f46\u4e0d\u80fd\u4ee5\u6578\u5b57\u958b\u982d\uff09\u3002\n\u540d\u7a31\u5fc5\u9808\u5c11\u65bc64\u500b\u5b57\u5143\u3002 + +#: debug/Uploader.java:52 +https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590 + +#: debug/Uploader.java:54 debug/Compiler.java:43 +#, java-format +Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=\u7de8\u8b6f\u932f\u8aa4\uff0c\u8acb\u5c07\u9019\u500b\u78bc\u63d0\u4ea4\u7d66{0} + +#: debug/Uploader.java:199 +#, java-format +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u4f60\u9078\u64c7\u7684\u5e8f\u5217\u57e0{0}\u4e0d\u5b58\u5728\uff0c\u6216\u662f\u4f60\u7684\u677f\u5b50\u5c1a\u672a\u9023\u63a5\u3002 + +#: debug/Uploader.java:203 +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u88dd\u7f6e\u6c92\u6709\u56de\u61c9\uff0c\u8acb\u78ba\u8a8d\u9078\u64c7\u7684\u5e8f\u5217\u57e0\u662f\u5426\u6b63\u78ba\uff0c\u6216\u662f\u5728\u532f\u51fa\u4e4b\u524d\u7acb\u5373RESET\u91cd\u7f6e\u677f\u5b50 + +#: debug/Uploader.java:209 +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u4e0a\u50b3\u5230\u677f\u5b50\u88e1\u6642\u767c\u751f\u554f\u984c\uff0c\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#upload\u5c0b\u627e\u89e3\u6c7a\u65b9\u6cd5 + +#: debug/Uploader.java:213 +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u627e\u5230\u4e0d\u5c0d\u7684\u5fae\u8655\u7406\u5668\uff0c\u4f60\u5728\u300c\u5de5\u5177 > \u677f\u5b50\u300d\u9078\u55ae\u88e1\u9078\u5c0d\u677f\u5b50\u4e86\u55ce\uff1f + +#: debug/Compiler.java:41 +http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list + +#: debug/Compiler.java:79 +No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u6c92\u6709\u9078\u64c7\u677f\u5b50\uff1b\u8acb\u5f9e\u300c\u5de5\u5177 > \u677f\u5b50\u300d\u9078\u64c7\u677f\u5b50 + +#: debug/Compiler.java:422 +#, java-format +{0}\ returned\ {1}={0}\u56de\u50b3{1} + +#: debug/Compiler.java:426 +Error\ compiling.=\u7de8\u8b6f\u51fa\u932f + +#: debug/Compiler.java:465 +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u8acb\u5f9e\u300c\u8349\u7a3f\u78bc > \u532f\u5165\u7a0b\u5f0f\u5eab\u300d\u9078\u55ae\u532f\u5165SPI\u7a0b\u5f0f\u5eab + +#: debug/Compiler.java:466 +\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=\u5f9eArduino 0019\u958b\u59cb\uff0cEthernet\u7a0b\u5f0f\u5eab\u76f8\u4f9d\u65bcSPI\u7a0b\u5f0f\u5eab\u3002\n\u4f60\u4f3c\u4e4e\u6b63\u5728\u4f7f\u7528\u76f8\u4f9d\u65bcSPI\u7684Ethernet\u6216\u5176\u4ed6\u7a0b\u5f0f\u5eab\u3002\n\n + +#: debug/Compiler.java:471 +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u4e0d\u518d\u652f\u63f4\u95dc\u9375\u5b57'BYTE' + +#: debug/Compiler.java:472 +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u5f9eArduino 1.0\u958b\u59cb\uff0c\u4e0d\u518d\u652f\u63f4\u95dc\u9375\u5b57'BYTE'\u3002\n\u8acb\u6539\u7528Serial.write()\u3002\n\n + +#: debug/Compiler.java:477 +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u985e\u5225Server\u5df2\u7d93\u6539\u540d\u70baEthernetServer + +#: debug/Compiler.java:478 +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u5f9eArduino 1.0\u958b\u59cb\uff0cEthernet\u7a0b\u5f0f\u5eab\u7684Server\u985e\u5225\u5df2\u7d93\u6539\u540d\u70baEthernetServer\u3002\n\n + +#: debug/Compiler.java:483 +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u985e\u5225Client\u5df2\u7d93\u6539\u540d\u70baEthernetClient\u3002 + +#: debug/Compiler.java:484 +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u5f9eArduino 1.0\u958b\u59cb\uff0cEthernet\u7a0b\u5f0f\u5eab\u7684Client\u985e\u5225\u5df2\u7d93\u6539\u540d\u70baEthernetClient\u3002\n\n + +#: debug/Compiler.java:489 +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u985e\u5225Udp\u5df2\u7d93\u6539\u540d\u70baEthernetUdp\u3002 + +#: debug/Compiler.java:490 +!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= + +#: debug/Compiler.java:495 +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send()\u5df2\u7d93\u6539\u540d\u70baWire.write()\u3002 + +#: debug/Compiler.java:496 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u5f9eArduino 1.0\u958b\u59cb\uff0cWire.send()\u51fd\u5f0f\u5df2\u7d93\u6539\u540d\u70baWire.wirte()\uff0c\u4ee5\u4fbf\u8207\u5176\u4ed6\u7a0b\u5f0f\u5eab\u4fdd\u6301\u4e00\u81f4\u3002\n\n + +#: debug/Compiler.java:501 +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()\u5df2\u7d93\u6539\u540d\u70baWire.read()\u3002 + +#: debug/Compiler.java:502 +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u5f9eArduino 1.0\u958b\u59cb\uff0cWire.receive()\u51fd\u5f0f\u5df2\u7d93\u6539\u540d\u70baWire.read()\uff0c\u4ee5\u4fbf\u8207\u5176\u4ed6\u7a0b\u5f0f\u5eab\u4fdd\u6301\u4e00\u81f4\u3002\n\n + +#: EditorConsole.java:152 +Console\ Error=\u4e3b\u63a7\u53f0\u932f\u8aa4 + +#: EditorConsole.java:153 +A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u8a66\u8457\u958b\u555f\u7528\u4f86\u5132\u5b58\u4e3b\u63a7\u53f0\u8f38\u51fa\u7684\u6a94\u6848\u6642\uff0c\u767c\u751f\u554f\u984c\u3002 + +#: Base.java:184 +Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u8a2d\u5b9a\u5916\u89c0&\u611f\u89ba\u6642\u767c\u751f\u975e\u56b4\u91cd\u6027\u7684\u932f\u8aa4 + +#: Base.java:185 +The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u5e95\u4e0b\u6703\u6709\u932f\u8aa4\u8a0a\u606f\uff0c\u4f46Arduino\u61c9\u8a72\u9084\u662f\u53ef\u4ee5\u6b63\u5e38\u904b\u4f5c + +#: Base.java:220 +Problem\ Setting\ the\ Platform=\u8a2d\u5b9a\u5e73\u53f0\u6642\u767c\u751f\u554f\u984c + +#: Base.java:221 +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\u6642\uff0c\n\u767c\u751f\u672a\u77e5\u932f\u8aa4\u3002 + +#: Base.java:232 +Please\ install\ JDK\ 1.5\ or\ later=\u8acb\u5b89\u88ddJDK 1.5\uff08\u6216\u66f4\u65b0\u7684\u7248\u672c\uff09 + +#: Base.java:233 +Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=\u57f7\u884cArduino\u9700\u8981\u5b8c\u6574\u7684JDK\uff08\u4e0d\u50c5\u662fJRE\uff09\uff0c\n\u8acb\u5b89\u88ddJDK 1.5\uff08\u6216\u66f4\u65b0\u7684\u7248\u672c\uff09\u3002\n\u66f4\u591a\u8cc7\u8a0a\u53ef\u5728\u53c3\u8003\u6587\u4ef6\u88e1\u627e\u5230\u3002 + +#: Base.java:257 +Sketchbook\ folder\ disappeared=\u8349\u7a3f\u78bc\u7c3f\u76ee\u9304\u4e0d\u898b\u4e86 + +#: Base.java:258 +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u8349\u7a3f\u78bc\u7c3f\u76ee\u9304\u4e0d\u5b58\u5728\u3002\nArduino\u5c07\u6539\u6210\u9810\u8a2d\u7684\u8349\u7a3f\u78bc\u7c3f\u7684\u8def\u5f91\uff0c\n\u82e5\u6709\u9700\u8981\u6703\u5efa\u7acb\u65b0\u7684\u3002\nArduino\u63a5\u4e0b\u4f86\u5c07\u505c\u6b62\u4ee5\u7b2c\u4e09\u4eba\u7a31\n\u8a0e\u8ad6\u5b83\u81ea\u5df1\u3002 + +#: Base.java:532 +Time\ for\ a\ Break=\u8a72\u662f\u4f11\u606f\u4e00\u4e0b\u7684\u6642\u523b\u56c9 + +#: Base.java:533 +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u4f60\u4eca\u5929\u5df2\u7d93\u9054\u5230\u81ea\u52d5\u547d\u540d\u8349\u7a3f\u78bc\u7684\u6578\u76ee\u4e0a\u9650\u4e86\uff0c\n\u4f55\u4e0d\u5916\u51fa\u6563\u6563\u6b65\u5462\uff1f + +#: Base.java:537 +Sunshine=\u967d\u5149 + +#: Base.java:538 +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u4e0d\uff0c\u6211\u8aaa\u771f\u7684\uff0c\u8a72\u662f\u6642\u5019\u547c\u5438\u547c\u5438\u65b0\u9bae\u7a7a\u6c23\u4e86\u3002 + +#: Base.java:633 +Open\ an\ Arduino\ sketch...=\u958b\u555fArduino\u8349\u7a3f\u78bc... + +#: Base.java:772 +\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Are\ you\ sure\ you\ want\ to\ Quit?

Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.= \u4f60\u78ba\u5b9a\u8981\u96e2\u958b\u55ce\uff1f

\u95dc\u9589\u6700\u5f8c\u4e00\u4efd\u958b\u555f\u4e2d\u7684\u8349\u7a3f\u78bc\u5c31\u56de\u96e2\u958bArduino\u3002 + +#: Base.java:970 +Contributed=\u8ca2\u737b + +#: Base.java:1095 +Sketch\ Does\ Not\ Exist=\u8349\u7a3f\u78bc\u4e0d\u5b58\u5728 + +#: Base.java:1096 +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u88ab\u9078\u7684\u8349\u7a3f\u78bc\u5df2\u7d93\u4e0d\u5b58\u5728\u4e86\u3002\n\u4f60\u53ef\u80fd\u9700\u8981\u91cd\u65b0\u555f\u52d5Arduino\uff0c\n\u4ee5\u66f4\u65b0\u8349\u7a3f\u78bc\u7c3f\u7684\u76ee\u9304\u3002 + +#: Base.java:1125 +#, 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}=\u9019\u4efd\u8349\u7a3f\u78bc"{0}"\u7121\u6cd5\u4f7f\u7528\u3002\n\u8349\u7a3f\u78bc\u7684\u540d\u7a31\u53ea\u80fd\u542b\u6709\u4e00\u822c\u7684\u5b57\u6bcd\u8207\u6578\u5b57\n\uff08\u53ea\u80fd\u7528ASCII\uff0c\u4e0d\u80fd\u6709\u7a7a\u767d\uff0c\u4e0d\u80fd\u4ee5\u6578\u5b57\u958b\u982d\u3002\uff09\n\u82e5\u4e0d\u60f3\u770b\u5230\u6b64\u8a0a\u606f\uff0c\u8acb\u5f9e{1}\u79fb\u9664\u8349\u7a3f\u78bc\u3002\n + +#: Base.java:1132 +Ignoring\ sketch\ with\ bad\ name=\u5ffd\u7565\u540d\u7a31\u932f\u8aa4\u7684\u8349\u7a3f\u78bc + +#: Base.java:1202 +#, 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)=\u9019\u4efd\u7a0b\u5f0f\u5eab"{0}"\u7121\u6cd5\u4f7f\u7528\u3002\n\u7a0b\u5f0f\u5eab\u7684\u540d\u7a31\u53ea\u80fd\u542b\u6709\u4e00\u822c\u7684\u5b57\u6bcd\u8207\u6578\u5b57\n\uff08\u53ea\u80fd\u7528ASCII\uff0c\u4e0d\u80fd\u6709\u7a7a\u767d\uff0c\u4e0d\u80fd\u4ee5\u6578\u5b57\u958b\u982d\u3002\uff09\n + +#: Base.java:1207 +Ignoring\ bad\ library\ name=\u5ffd\u7565\u540d\u7a31\u932f\u8aa4\u7684\u7a0b\u5f0f\u5eab + +#: Base.java:1432 +Problem\ getting\ data\ folder=\u53d6\u5f97\u8cc7\u6599\u76ee\u9304\u6642\u767c\u751f\u554f\u984c + +#: Base.java:1433 +Error\ getting\ the\ Arduino\ data\ folder.=\u53d6\u5f97Arduino\u8cc7\u6599\u76ee\u9304\u6642\u767c\u751f\u932f\u8aa4 + +#: Base.java:1440 +Settings\ issues=\u8a2d\u5b9a\u554f\u984c + +#: Base.java:1441 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino\u7121\u6cd5\u57f7\u884c\uff0c\u56e0\u70ba\u5b83\u7121\u6cd5\n\u5efa\u7acb\u5132\u5b58\u4f60\u7684\u8a2d\u5b9a\u503c\u7684\u76ee\u9304\u3002 + +#: Base.java:1602 +You\ forgot\ your\ sketchbook=\u4f60\u5fd8\u8a18\u4f60\u7684\u8349\u7a3f\u78bc\u7c3f\u4e86 + +#: Base.java:1603 +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino\u7121\u6cd5\u57f7\u884c\uff0c\u56e0\u70ba\u5b83\u7121\u6cd5\n\u5efa\u7acb\u5132\u5b58\u4f60\u7684\u8349\u7a3f\u78bc\u7c3f\u7684\u76ee\u9304\u3002 + +#: Base.java:1623 +Select\ (or\ create\ new)\ folder\ for\ sketches...=\u9078\u64c7\uff08\u6216\u5efa\u7acb\uff09\u5b58\u653e\u8349\u7a3f\u78bc\u7684\u76ee\u9304... + +#: Base.java:1647 +Problem\ Opening\ URL=\u958b\u555fURL\u6642\u767c\u751f\u554f\u984c + +#: Base.java:1648 +#, java-format +Could\ not\ open\ the\ URL\n{0}=\u7121\u6cd5\u958b\u555f\u9019\u500bURL\n{0} + +#: Base.java:1671 +Problem\ Opening\ Folder=\u958b\u555f\u76ee\u9304\u6642\u767c\u751f\u554f\u984c + +#: Base.java:1672 +#, java-format +Could\ not\ open\ the\ folder\n{0}=\u7121\u6cd5\u958b\u555f\u9019\u500b\u76ee\u9304\n{0} + +#: Base.java:1785 +!Guide_MacOSX.html= + +#: Base.java:1787 +Guide_Windows.html=Guide_Windows.html + +#: Base.java:1789 +http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux + +#: Base.java:1794 +index.html=index.html + +#: Base.java:1799 +Guide_Environment.html=Guide_Environment.html + +#: Base.java:1804 +environment=\u74b0\u5883 + +#: Base.java:1804 +platforms.html=platforms.html + +#: Base.java:1809 +Guide_Troubleshooting.html=Guide_Troubleshooting.html + +#: Base.java:1814 +FAQ.html=FAQ.html + +#: Base.java:1826 +Message=\u8a0a\u606f + +#: Base.java:1842 +Warning=\u8b66\u544a + +#: Base.java:2196 +#, java-format +Could\ not\ remove\ old\ version\ of\ {0}=\u7121\u6cd5\u79fb\u9664{0}\u7684\u820a\u7248 + +#: Base.java:2206 +#, java-format +Could\ not\ replace\ {0}=\u7121\u6cd5\u53d6\u4ee3{0} + +#: Base.java:2247 Base.java:2270 +#, java-format +Could\ not\ delete\ {0}=\u7121\u6cd5\u522a\u9664{0} + +#: EditorHeader.java:292 +New\ Tab=\u65b0\u589e\u6a19\u7c64 + +#: EditorHeader.java:300 +Rename=\u91cd\u65b0\u547d\u540d + +#: EditorHeader.java:326 +Previous\ Tab=\u4e0a\u4e00\u500b\u6a19\u7c64 + +#: EditorHeader.java:340 +Next\ Tab=\u4e0b\u4e00\u500b\u6a19\u7c64 + +#: EditorToolbar.java:41 EditorToolbar.java:46 +Verify=\u9a57\u8b49 + +#: EditorToolbar.java:41 +Open=\u958b\u555f + +#: EditorToolbar.java:46 +New\ Editor\ Window=\u65b0\u7de8\u8f2f\u5668\u8996\u7a97 + +#: EditorToolbar.java:46 +Open\ in\ Another\ Window=\u4ee5\u53e6\u4e00\u500b\u8996\u7a97\u958b\u555f + +#: Platform.java:167 +No\ launcher\ available=\u6c92\u6709\u555f\u52d5\u8005 + +#: 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=\u6c92\u6709\u6307\u5b9a\u5e73\u53f0\uff0c\u6c92\u6709\u555f\u52d5\u8005\u3002\n\u82e5\u8981\u958b\u555fURL\u6216\u76ee\u9304\uff0c\u8acb\u5728preferences.txt\u52a0\u5165\u9019\u4e00\u884c\uff1a\n"launcher\=/path/to/app"\u3002 + +#: Theme.java:52 +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=\u7121\u6cd5\u8b80\u53d6\u8272\u5f69\u4f48\u666f\u4e3b\u984c\u7684\u8a2d\u5b9a\u3002\n\u4f60\u9700\u8981\u91cd\u65b0\u5b89\u88ddProcessing\u3002 + +#: Preferences.java:80 +Browse=\u700f\u89bd + +#: Preferences.java:83 +!System\ Default= + +#: Preferences.java:84 +!Arabic= + +#: Preferences.java:85 +!Aragonese= + +#: Preferences.java:86 +!Catalan= + +#: Preferences.java:87 +!Chinese\ Simplified= + +#: Preferences.java:88 +!Chinese\ Traditional= + +#: Preferences.java:89 +!Danish= + +#: Preferences.java:90 +!Dutch= + +#: Preferences.java:91 +!English= + +#: Preferences.java:92 +!Estonian= + +#: Preferences.java:93 +!French= + +#: Preferences.java:94 +!Filipino= + +#: Preferences.java:95 +!Galician= + +#: Preferences.java:96 +!German= + +#: Preferences.java:97 +!Greek= + +#: Preferences.java:98 +!Hungarian= + +#: Preferences.java:99 +!Indonesian= + +#: Preferences.java:100 +!Italian= + +#: Preferences.java:101 +!Japanese= + +#: Preferences.java:102 +!Korean= + +#: Preferences.java:103 +!Latvian= + +#: Preferences.java:104 +!Lithuaninan= + +#: Preferences.java:105 +!Persian= + +#: Preferences.java:106 +!Polish= + +#: Preferences.java:107 Preferences.java:108 +!Portuguese= + +#: Preferences.java:109 +!Romanian= + +#: Preferences.java:110 +!Russian= + +#: Preferences.java:111 +!Spanish= + +#: Preferences.java:210 +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u7121\u6cd5\u8b80\u53d6\u9810\u8a2d\u8a2d\u5b9a\uff0c\n\u4f60\u9700\u8981\u91cd\u65b0\u5b89\u88ddArduino + +#: Preferences.java:242 +#, java-format +Could\ not\ read\ preferences\ from\ {0}=\u7121\u6cd5\u5f9e{0}\u8b80\u53d6\u504f\u597d\u8a2d\u5b9a + +#: Preferences.java:261 +Error\ reading\ preferences=\u8b80\u53d6\u504f\u597d\u8a2d\u5b9a\u6642\u767c\u751f\u932f\u8aa4 + +#: Preferences.java:263 +#, java-format +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u8b80\u53d6\u504f\u597d\u8a2d\u5b9a\u6a94\u6642\u767c\u751f\u932f\u8aa4\uff0c\u8acb\u522a\u9664\uff08\u6216\u79fb\u52d5\uff09\n{0}\u4e26\u4e14\u91cd\u65b0\u555f\u52d5Arduino + +#: Preferences.java:299 +Sketchbook\ location\:=\u8349\u7a3f\u78bc\u7c3f\u7684\u4f4d\u7f6e\uff1a + +#: Preferences.java:314 +Select\ new\ sketchbook\ location=\u9078\u64c7\u65b0\u7684\u8349\u7a3f\u78bc\u7c3f\u4f4d\u7f6e + +#: Preferences.java:337 +!Editor\ language\:\ = + +#: Preferences.java:342 Preferences.java:358 +\ \ (requires\ restart\ of\ Arduino)=\ \uff08\u9700\u8981\u91cd\u65b0\u555f\u52d5Arduino\uff09 + +#: Preferences.java:354 +Editor\ font\ size\:\ =\u7de8\u8f2f\u5668\u5b57\u578b\u5927\u5c0f\uff1a + +#: Preferences.java:371 +Show\ verbose\ output\ during\:\ =\u986f\u793a\u8a73\u7d30\u8f38\u51fa\uff1a + +#: Preferences.java:373 +compilation\ =\u7de8\u8b6f + +#: Preferences.java:375 +upload=\u4e0a\u50b3 + +#: Preferences.java:384 +!Verify\ code\ after\ upload= + +#: Preferences.java:393 +Use\ external\ editor=\u4f7f\u7528\u5916\u90e8\u7de8\u8f2f\u5668 + +#: Preferences.java:403 +Check\ for\ updates\ on\ startup=\u5728\u555f\u52d5\u6642\u6aa2\u67e5\u66f4\u65b0 + +#: Preferences.java:412 +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u5132\u5b58\u6642\u66f4\u65b0\u8349\u7a3f\u78bc\u6a94\u6848\u7684\u9644\u6a94\u540d\uff08.pde -> .ino\uff09 + +#: Preferences.java:423 +Automatically\ associate\ .ino\ files\ with\ Arduino=\u81ea\u52d5\u5c07.ino\u6a94\u6848\u8207Arduino\u95dc\u806f\u8d77\u4f86 + +#: Preferences.java:433 +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u5728\u504f\u597d\u8a2d\u5b9a\u6a94\u6848\u88e1\u9084\u6709\u66f4\u591a\u7684\u8a2d\u5b9a\u503c\uff0c\u53ef\u4ee5\u76f4\u63a5\u7de8\u8f2f + +#: Preferences.java:462 +(edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728\u4e0d\u57f7\u884cArduino\u6642\u9032\u884c\u7de8\u8f2f\uff09 + +#: Preferences.java:609 +#, java-format +ignoring\ invalid\ font\ size\ {0}=\u5ffd\u7565\u7121\u6548\u7684\u5b57\u578b\u5927\u5c0f{0} diff --git a/app/src/processing/app/Serial.java b/app/src/processing/app/Serial.java index 93bfdac9e..14c0933c0 100755 --- a/app/src/processing/app/Serial.java +++ b/app/src/processing/app/Serial.java @@ -101,6 +101,32 @@ public class Serial implements SerialPortEventListener { new Float(Preferences.get("serial.stopbits")).floatValue()); } + public static boolean touchPort(String iname, int irate) throws SerialException { + SerialPort port; + boolean result = false; + try { + Enumeration portList = CommPortIdentifier.getPortIdentifiers(); + while (portList.hasMoreElements()) { + CommPortIdentifier portId = (CommPortIdentifier) portList.nextElement(); + if ((CommPortIdentifier.PORT_SERIAL == portId.getPortType()) && (portId.getName().equals(iname))) { + port = (SerialPort) portId.open("tap", 2000); + port.setSerialPortParams(irate, 8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE); + port.close(); + result = true; + } + } + } catch (PortInUseException e) { + throw new SerialException( + I18n.format(_("Serial port ''{0}'' already in use. Try quitting any programs that may be using it."), iname) + ); + } catch (Exception e) { + throw new SerialException( + I18n.format(_("Error touching serial port ''{0}''."), iname), e + ); + } + return result; + } + public Serial(String iname, int irate, char iparity, int idatabits, float istopbits) throws SerialException { @@ -527,10 +553,11 @@ public class Serial implements SerialPortEventListener { * it may be because the DLL doesn't have its exec bit set. * Why the hell that'd be the case, who knows. */ - static public String[] list() { - Vector list = new Vector(); + static public List list() { + List list = new ArrayList(); try { //System.err.println("trying"); + @SuppressWarnings("unchecked") Enumeration portList = CommPortIdentifier.getPortIdentifiers(); //System.err.println("got port list"); while (portList.hasMoreElements()) { @@ -540,7 +567,7 @@ public class Serial implements SerialPortEventListener { if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) { String name = portId.getName(); - list.addElement(name); + list.add(name); } } @@ -553,9 +580,7 @@ public class Serial implements SerialPortEventListener { errorMessage("ports", e); } //System.err.println("move out"); - String outgoing[] = new String[list.size()]; - list.copyInto(outgoing); - return outgoing; + return list; } diff --git a/app/src/processing/app/SerialMonitor.java b/app/src/processing/app/SerialMonitor.java index 6eebf539e..1f34e8f7e 100644 --- a/app/src/processing/app/SerialMonitor.java +++ b/app/src/processing/app/SerialMonitor.java @@ -127,10 +127,10 @@ public class SerialMonitor extends JFrame implements MessageConsumer { serialRates = new JComboBox(); for (int i = 0; i < serialRateStrings.length; i++) - serialRates.addItem(serialRateStrings[i] + _(" baud")); + serialRates.addItem(serialRateStrings[i] + " " + _("baud")); serialRate = Preferences.getInteger("serial.debug_rate"); - serialRates.setSelectedItem(serialRate + _(" baud")); + serialRates.setSelectedItem(serialRate + " " + _("baud")); serialRates.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent event) { String wholeString = (String) serialRates.getSelectedItem(); diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 3f19cd3a3..0293b622f 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -1369,6 +1369,9 @@ public class Sketch { for (SketchCode sc : code) { if (sc.isExtension("ino") || sc.isExtension("pde")) { sc.setPreprocOffset(bigCount); + // These #line directives help the compiler report errors with + // correct the filename and line number (issue 281 & 907) + bigCode.append("#line 1 \"" + sc.getFileName() + "\"\n"); bigCode.append(sc.getProgram()); bigCode.append('\n'); bigCount += sc.getLineCount(); @@ -1541,54 +1544,16 @@ public class Sketch { public RunnerException placeException(String message, String dotJavaFilename, int dotJavaLine) { - int codeIndex = 0; //-1; - int codeLine = -1; - -// System.out.println("placing " + dotJavaFilename + " " + dotJavaLine); -// System.out.println("code count is " + getCodeCount()); - - // first check to see if it's a .java file - for (int i = 0; i < getCodeCount(); i++) { - SketchCode code = getCode(i); - if (!code.isExtension(getDefaultExtension())) { - if (dotJavaFilename.equals(code.getFileName())) { - codeIndex = i; - codeLine = dotJavaLine; - return new RunnerException(message, codeIndex, codeLine); - } - } - } - - // If not the preprocessed file at this point, then need to get out - if (!dotJavaFilename.equals(name + ".cpp")) { - return null; - } - - // if it's not a .java file, codeIndex will still be 0 - // this section searches through the list of .pde files - codeIndex = 0; - for (int i = 0; i < getCodeCount(); i++) { - SketchCode code = getCode(i); - - if (code.isExtension(getDefaultExtension())) { -// System.out.println("preproc offset is " + code.getPreprocOffset()); -// System.out.println("looking for line " + dotJavaLine); - if (code.getPreprocOffset() <= dotJavaLine) { - codeIndex = i; -// System.out.println("i'm thinkin file " + i); - codeLine = dotJavaLine - code.getPreprocOffset(); - } - } - } - // could not find a proper line number, so deal with this differently. - // but if it was in fact the .java file we're looking for, though, - // send the error message through. - // this is necessary because 'import' statements will be at a line - // that has a lower number than the preproc offset, for instance. -// if (codeLine == -1 && !dotJavaFilename.equals(name + ".java")) { -// return null; -// } - return new RunnerException(message, codeIndex, codeLine); + // Placing errors is simple, because we inserted #line directives + // into the preprocessed source. The compiler gives us correct + // the file name and line number. :-) + for (int codeIndex = 0; codeIndex < getCodeCount(); codeIndex++) { + SketchCode code = getCode(codeIndex); + if (dotJavaFilename.equals(code.getFileName())) { + return new RunnerException(message, codeIndex, dotJavaLine); + } + } + return null; } diff --git a/app/src/processing/app/debug/BasicUploader.java b/app/src/processing/app/debug/BasicUploader.java index 76a4aea19..202e17932 100644 --- a/app/src/processing/app/debug/BasicUploader.java +++ b/app/src/processing/app/debug/BasicUploader.java @@ -28,12 +28,18 @@ package processing.app.debug; +import java.util.ArrayList; +import java.util.List; + import processing.app.Base; import processing.app.Preferences; +import processing.app.Serial; import processing.app.SerialException; import processing.app.helpers.PreferencesMap; import processing.app.helpers.StringReplacer; +import static processing.app.I18n._; + public class BasicUploader extends Uploader { public boolean uploadUsingPreferences(String buildPath, String className, @@ -50,7 +56,93 @@ public class BasicUploader extends Uploader { if (usingProgrammer || prefs.get("upload.protocol") == null) { return uploadUsingProgrammer(buildPath, className); } + + // need to do a little dance for Leonardo and derivatives: + // open then close the port at the magic baudrate (usually 1200 bps) first + // to signal to the sketch that it should reset into bootloader. after doing + // this wait a moment for the bootloader to enumerate. On Windows, also must + // deal with the fact that the COM port number changes from bootloader to + // sketch. + String use1200bpsTouch = prefs.get("upload.use_1200bps_touch"); + boolean doTouch = use1200bpsTouch != null && use1200bpsTouch.equals("true"); + if (doTouch) { + String uploadPort = prefs.get("serial.port"); + String caterinaUploadPort = null; + try { + // Toggle 1200 bps on selected serial port to force board reset. + List before = Serial.list(); + if (before.contains(uploadPort)) { + if (verbose || Preferences.getBoolean("upload.verbose")) + System.out + .println(_("Forcing reset using 1200bps open/close on port ") + + uploadPort); + Serial.touchPort(uploadPort, 1200); + // Scanning for available ports seems to open the port or + // otherwise assert DTR, which would cancel the WDT reset if + // it happened within 250 ms. So we wait until the reset should + // have already occured before we start scanning. + if (!Base.isMacOS()) + Thread.sleep(300); + } + // Wait for a port to appear on the list + int elapsed = 0; + while (elapsed < 10000) { + List now = Serial.list(); + List diff = new ArrayList(now); + diff.removeAll(before); + if (verbose || Preferences.getBoolean("upload.verbose")) { + System.out.print("PORTS {"); + for (String p : before) + System.out.print(p + ", "); + System.out.print("} / {"); + for (String p : now) + System.out.print(p + ", "); + System.out.print("} => {"); + for (String p : diff) + System.out.print(p + ", "); + System.out.println("}"); + } + if (diff.size() > 0) { + caterinaUploadPort = diff.get(0); + if (verbose || Preferences.getBoolean("upload.verbose")) + System.out.println("Found Leonardo upload port: " + + caterinaUploadPort); + break; + } + + // Keep track of port that disappears + before = now; + Thread.sleep(250); + elapsed += 250; + + // On Windows, it can take a long time for the port to disappear and + // come back, so use a longer time out before assuming that the + // selected + // port is the bootloader (not the sketch). + if (((!Base.isWindows() && elapsed >= 500) || elapsed >= 5000) && + now.contains(uploadPort)) { + if (verbose || Preferences.getBoolean("upload.verbose")) + System.out + .println("Uploading using selected port: " + uploadPort); + caterinaUploadPort = uploadPort; + break; + } + } + if (caterinaUploadPort == null) + // Something happened while detecting port + throw new RunnerException( + _("Couldn’t find a Leonardo 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.")); + + uploadPort = caterinaUploadPort; + } catch (SerialException e) { + throw new RunnerException(e.getMessage()); + } catch (InterruptedException e) { + throw new RunnerException(e.getMessage()); + } + prefs.put("serial.port", uploadPort); + } + prefs.put("build.path", buildPath); prefs.put("build.project_name", className); if (verbose) @@ -58,6 +150,7 @@ public class BasicUploader extends Uploader { else prefs.put("upload.verbose", prefs.get("upload.params.quiet")); + boolean uploadResult; try { // if (prefs.get("upload.disable_flushing") == null // || prefs.get("upload.disable_flushing").toLowerCase().equals("false")) { @@ -66,10 +159,29 @@ public class BasicUploader extends Uploader { String pattern = prefs.get("upload.pattern"); String[] cmd = StringReplacer.formatAndSplit(pattern, prefs, true); - return executeUploadCommand(cmd); + uploadResult = executeUploadCommand(cmd); } catch (Exception e) { throw new RunnerException(e); } + + // For Leonardo wait until the bootloader serial port disconnects and the + // sketch serial port reconnects (or timeout after a few seconds if the + // sketch port never comes back). Doing this saves users from accidentally + // opening Serial Monitor on the soon-to-be-orphaned bootloader port. + try { + if (uploadResult && doTouch) { + Thread.sleep(500); + long timeout = System.currentTimeMillis() + 2000; + while (timeout > System.currentTimeMillis()) { + List portList = Serial.list(); + if (portList.contains(Preferences.get("serial.port"))) + break; + Thread.sleep(100); + } + } + } catch (InterruptedException ex) { + } + return uploadResult; } public boolean uploadUsingProgrammer(String buildPath, String className) @@ -124,11 +236,14 @@ public class BasicUploader extends Uploader { prefs.putAll(Base.getBoardPreferences()); prefs.putAll(targetPlatform.getProgrammer(programmer)); prefs.putAll(targetPlatform.getTool(prefs.get("bootloader.tool"))); - if (verbose) + if (verbose) { + prefs.put("erase.verbose", prefs.get("erase.params.verbose")); prefs.put("bootloader.verbose", prefs.get("bootloader.params.verbose")); - else + } else { + prefs.put("erase.verbose", prefs.get("erase.params.quiet")); prefs.put("bootloader.verbose", prefs.get("bootloader.params.quiet")); - + } + try { // if (prefs.get("program.disable_flushing") == null // || prefs.get("program.disable_flushing").toLowerCase().equals("false")) @@ -136,13 +251,11 @@ public class BasicUploader extends Uploader { // flushSerialBuffer(); // } - prefs.put("bootloader.params", prefs.get("bootloader.erase.params")); - String pattern = prefs.get("bootloader.pattern"); + String pattern = prefs.get("erase.pattern"); String[] cmd = StringReplacer.formatAndSplit(pattern, prefs, true); if (!executeUploadCommand(cmd)) return false; - prefs.put("bootloader.params", prefs.get("bootloader.write.params")); pattern = prefs.get("bootloader.pattern"); cmd = StringReplacer.formatAndSplit(pattern, prefs, true); return executeUploadCommand(cmd); diff --git a/app/src/processing/app/debug/Compiler.java b/app/src/processing/app/debug/Compiler.java index 1d6dfad87..c97a1c268 100644 --- a/app/src/processing/app/debug/Compiler.java +++ b/app/src/processing/app/debug/Compiler.java @@ -54,6 +54,7 @@ public class Compiler implements MessageConsumer { private PreferencesMap prefs; private boolean verbose; + private boolean sketchIsCompiled; private RunnerException exception; @@ -71,6 +72,7 @@ public class Compiler implements MessageConsumer { throws RunnerException { sketch = _sketch; verbose = _verbose; + sketchIsCompiled = false; objectFiles = new ArrayList(); prefs = createBuildPreferences(_buildPath, _primaryClassName); @@ -79,7 +81,7 @@ public class Compiler implements MessageConsumer { sketch.setCompilingProgress(20); List includePaths = new ArrayList(); includePaths.add(prefs.get("build.core.path")); - if (!prefs.get("build.variant.path").isEmpty()) + if (prefs.get("build.variant.path").length() != 0) includePaths.add(prefs.get("build.variant.path")); for (File file : sketch.getImportedLibraries()) includePaths.add(file.getPath()); @@ -87,6 +89,7 @@ public class Compiler implements MessageConsumer { // 1. compile the sketch (already in the buildPath) sketch.setCompilingProgress(30); compileSketch(includePaths); + sketchIsCompiled = true; // 2. compile the libraries, outputting .o files to: // // Doesn't really use configPreferences @@ -117,6 +120,14 @@ public class Compiler implements MessageConsumer { private PreferencesMap createBuildPreferences(String _buildPath, String _primaryClassName) throws RunnerException { + + if (Base.getBoardPreferences() == null) { + RunnerException re = new RunnerException( + _("No board selected; please choose a board from the Tools > Board menu.")); + re.hideStackTrace(); + throw re; + } + TargetPlatform targetPlatform = Base.getTargetPlatform(); // Merge all the global preference configuration in order of priority @@ -137,12 +148,6 @@ public class Compiler implements MessageConsumer { // Core folder String core = p.get("build.core"); - if (core == null) { - RunnerException re = new RunnerException( - _("No board selected; please choose a board from the Tools > Board menu.")); - re.hideStackTrace(); - throw re; - } TargetPlatform tp; if (!core.contains(":")) { tp = targetPlatform; @@ -302,7 +307,7 @@ public class Compiler implements MessageConsumer { List stringList = new ArrayList(); for (String string : command) { string = string.trim(); - if (!string.isEmpty()) + if (string.length() != 0) stringList.add(string); } command = stringList.toArray(new String[stringList.size()]); @@ -337,10 +342,8 @@ public class Compiler implements MessageConsumer { boolean compiling = true; while (compiling) { try { - if (in.thread != null) - in.thread.join(); - if (err.thread != null) - err.thread.join(); + in.join(); + err.join(); result = process.waitFor(); //System.out.println("result is " + result); compiling = false; @@ -428,7 +431,7 @@ public class Compiler implements MessageConsumer { if (pieces[3].trim().equals("'Udp' was not declared in this scope")) { error = _("The Udp class has been renamed EthernetUdp."); msg = _("\nAs of Arduino 1.0, the Udp class in the Ethernet library " + - "has been renamed to EthernetClient.\n\n"); + "has been renamed to EthernetUdp.\n\n"); } if (pieces[3].trim().equals("'class TwoWire' has no member named 'send'")) { @@ -443,14 +446,30 @@ public class Compiler implements MessageConsumer { "to Wire.read() for consistency with other libraries.\n\n"); } - RunnerException e = sketch.placeException(error, pieces[1], PApplet.parseInt(pieces[2]) - 1); + if (pieces[3].trim().equals("'Mouse' was not declared in this scope")) { + error = _("'Mouse' only supported on the Arduino Leonardo"); + //msg = _("\nThe 'Mouse' class is only supported on the Arduino Leonardo.\n\n"); + } + + if (pieces[3].trim().equals("'Keyboard' was not declared in this scope")) { + error = _("'Keyboard' only supported on the Arduino Leonardo"); + //msg = _("\nThe 'Keyboard' class is only supported on the Arduino Leonardo.\n\n"); + } + + RunnerException e = null; + if (!sketchIsCompiled) { + // Place errors when compiling the sketch, but never while compiling libraries + // or the core. The user's sketch might contain the same filename! + e = sketch.placeException(error, pieces[1], PApplet.parseInt(pieces[2]) - 1); + } // replace full file path with the name of the sketch tab (unless we're // in verbose mode, in which case don't modify the compiler output) if (e != null && !verbose) { SketchCode code = sketch.getCode(e.getCodeIndex()); - String fileName = code.isExtension(sketch.getDefaultExtension()) ? code.getPrettyName() : code.getFileName(); - s = fileName + ":" + e.getCodeLine() + ": error: " + pieces[3] + msg; + String fileName = (code.isExtension("ino") || code.isExtension("pde")) ? code.getPrettyName() : code.getFileName(); + int lineNum = e.getCodeLine() + 1; + s = fileName + ":" + lineNum + ": error: " + pieces[3] + msg; } if (exception == null && e != null) { @@ -590,12 +609,12 @@ public class Compiler implements MessageConsumer { List includePaths = new ArrayList(); includePaths.add(corePath); // include core path only - if (!variantPath.isEmpty()) + if (variantPath.length() != 0) includePaths.add(variantPath); List coreObjectFiles = compileFiles(buildPath, new File(corePath), true, includePaths); - if (!variantPath.isEmpty()) + if (variantPath.length() != 0) coreObjectFiles.addAll(compileFiles(buildPath, new File(variantPath), true, includePaths)); diff --git a/app/src/processing/app/debug/MessageSiphon.java b/app/src/processing/app/debug/MessageSiphon.java index 79a0920d5..12b1f993b 100644 --- a/app/src/processing/app/debug/MessageSiphon.java +++ b/app/src/processing/app/debug/MessageSiphon.java @@ -85,8 +85,15 @@ public class MessageSiphon implements Runnable { } } - + // Wait until the MessageSiphon thread is complete. + public void join() throws java.lang.InterruptedException { + // Grab a temp copy in case another thread nulls the "thread" + // member variable + Thread t = thread; + if (t != null) t.join(); + } + public Thread getThread() { return thread; -} + } } diff --git a/app/src/processing/app/debug/Sizer.java b/app/src/processing/app/debug/Sizer.java index 2de116cb2..89bfe5ee0 100644 --- a/app/src/processing/app/debug/Sizer.java +++ b/app/src/processing/app/debug/Sizer.java @@ -60,10 +60,8 @@ public class Sizer implements MessageConsumer { boolean running = true; while(running) { try { - if (in.thread != null) - in.thread.join(); - if (err.thread != null) - err.thread.join(); + in.join(); + err.join(); r = process.waitFor(); running = false; } catch (InterruptedException intExc) { } diff --git a/app/src/processing/app/debug/Uploader.java b/app/src/processing/app/debug/Uploader.java index fb98bc497..f6555d320 100644 --- a/app/src/processing/app/debug/Uploader.java +++ b/app/src/processing/app/debug/Uploader.java @@ -170,7 +170,17 @@ public abstract class Uploader implements MessageConsumer { boolean notFoundError; public void message(String s) { - //System.err.println("MSG: " + s); + // selectively suppress a bunch of avrdude output for AVR109/Caterina that should already be quelled but isn't + if (!Preferences.getBoolean("upload.verbose") && ( + s.indexOf("Connecting to programmer:") != -1 || + s.indexOf("Found programmer: Id = \"CATERIN\"; type = S") != -1 || + s.indexOf("Software Version = 1.0; No Hardware Version given.") != -1 || + s.indexOf("Programmer supports auto addr increment.") != -1 || + s.indexOf("Programmer supports buffered memory access with buffersize=128 bytes.") != -1 || + s.indexOf("Programmer supports the following devices:") != -1 || + s.indexOf("Device code: 0x44") != -1)) + s = ""; + System.err.print(s); // ignore cautions @@ -191,7 +201,11 @@ public abstract class Uploader implements MessageConsumer { } if (s.indexOf("Programmer is not responding") != -1 || s.indexOf("programmer is not responding") != -1 || - s.indexOf("protocol error") != -1) { + s.indexOf("protocol error") != -1 || + s.indexOf("avrdude: ser_open(): can't open device") != -1 || + s.indexOf("avrdude: ser_drain(): read error") != -1 || + s.indexOf("avrdude: ser_send(): write error") != -1 || + s.indexOf("avrdude: error: buffered memory access not supported.") != -1) { exception = new RunnerException(_("Problem uploading to board. See http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions.")); return; } diff --git a/app/src/processing/app/helpers/FileUtils.java b/app/src/processing/app/helpers/FileUtils.java new file mode 100644 index 000000000..5952fe685 --- /dev/null +++ b/app/src/processing/app/helpers/FileUtils.java @@ -0,0 +1,33 @@ +package processing.app.helpers; + +import java.io.File; +import java.io.IOException; + +public class FileUtils { + + /** + * Checks, whether the child directory is a subdirectory of the base + * directory. + * + * @param base + * the base directory. + * @param child + * the suspected child directory. + * @return true, if the child is a subdirectory of the base directory. + * @throws IOException + * if an IOError occured during the test. + */ + public static boolean isSubDirectory(File base, File child) throws IOException { + base = base.getCanonicalFile(); + child = child.getCanonicalFile(); + + File parentFile = child; + while (parentFile != null) { + if (base.equals(parentFile)) { + return true; + } + parentFile = parentFile.getParentFile(); + } + return false; + } +} diff --git a/app/src/processing/app/helpers/PreferencesMap.java b/app/src/processing/app/helpers/PreferencesMap.java index 301f5a701..22e3523f2 100644 --- a/app/src/processing/app/helpers/PreferencesMap.java +++ b/app/src/processing/app/helpers/PreferencesMap.java @@ -29,9 +29,12 @@ import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.util.HashMap; +import java.util.HashSet; import java.util.Hashtable; import java.util.Map; +import java.util.Set; +import processing.app.Base; import processing.core.PApplet; public class PreferencesMap extends HashMap { @@ -78,6 +81,25 @@ public class PreferencesMap extends HashMap { put(key.trim(), value.trim()); } } + + // This is needed to avoid ConcurrentAccessExceptions + Set keys = new HashSet(keySet()); + + // Override keys that have OS specific versions + for (String k : keys) { + boolean replace = false; + if (Base.isLinux() && k.endsWith(".linux")) + replace = true; + if (Base.isWindows() && k.endsWith(".windows")) + replace = true; + if (Base.isMacOS() && k.endsWith(".macos")) + replace = true; + if (replace) { + int dot = k.lastIndexOf('.'); + String overridenKey = k.substring(0, dot); + put(overridenKey, get(k)); + } + } } /** diff --git a/app/src/processing/app/helpers/StringReplacer.java b/app/src/processing/app/helpers/StringReplacer.java index 73a760b56..c6b02a23b 100644 --- a/app/src/processing/app/helpers/StringReplacer.java +++ b/app/src/processing/app/helpers/StringReplacer.java @@ -58,7 +58,7 @@ public class StringReplacer { for (String i : src.split(" ")) { if (!escaping) { if (!i.startsWith(quote)) { - if (!i.trim().isEmpty() || acceptEmptyArguments) + if (i.trim().length() != 0 || acceptEmptyArguments) res.add(i); continue; } @@ -74,7 +74,7 @@ public class StringReplacer { } escapedArg += i.substring(0, i.length() - 1); - if (!escapedArg.trim().isEmpty() || acceptEmptyArguments) + if (escapedArg.trim().length() != 0 || acceptEmptyArguments) res.add(escapedArg); escaping = false; } diff --git a/app/src/processing/app/preproc/PdePreprocessor.java b/app/src/processing/app/preproc/PdePreprocessor.java index 2b4f03e85..4f848c922 100644 --- a/app/src/processing/app/preproc/PdePreprocessor.java +++ b/app/src/processing/app/preproc/PdePreprocessor.java @@ -205,7 +205,7 @@ public class PdePreprocessor { for (int i = 0; i < prototypes.size(); i++) { out.print(prototypes.get(i) + "\n"); } - + out.println("#line 1"); out.print(program.substring(prototypeInsertionPoint)); } diff --git a/app/src/processing/app/syntax/JEditTextArea.java b/app/src/processing/app/syntax/JEditTextArea.java index 72fb7bafd..fae0698cc 100644 --- a/app/src/processing/app/syntax/JEditTextArea.java +++ b/app/src/processing/app/syntax/JEditTextArea.java @@ -834,6 +834,17 @@ public class JEditTextArea extends JComponent return lineElement.getEndOffset(); } + /** + * Returns the end offset of the specified line, but not past the end of the text + * @param line The line + * @return The end offset of the specified line, safe to use for a selection, or -1 if the line is + * invalid. + */ + public int getSafeLineStopOffset(int line) + { + return Math.min(getLineStopOffset(line),getDocumentLength()); + } + /** * Returns the length of the specified line. * @param line The line @@ -1144,7 +1155,7 @@ public class JEditTextArea extends JComponent { throw new IllegalArgumentException("Bounds out of" + " range: " + newStart + "," + - newEnd); + newEnd + " [" + getDocumentLength() + "]"); } // If the new position is the same as the old, we don't @@ -1201,6 +1212,86 @@ public class JEditTextArea extends JComponent // getLineOfOffset(end)); } } + + private boolean isWordCharacter( char ch, String noWordSep ) + { + return Character.isLetterOrDigit(ch) || ch=='_' || noWordSep.indexOf(ch) != -1; + } + + protected void setNewSelectionWord( int line, int offset ) + { + if (getLineLength(line) == 0) { + newSelectionStart = getLineStartOffset(line); + newSelectionEnd = newSelectionStart; + return; + } + + String noWordSep = (String)document.getProperty("noWordSep"); + if(noWordSep == null) + noWordSep = ""; + + String lineText = getLineText(line); + + int wordStart = 0; + int wordEnd = lineText.length(); + + char ch = lineText.charAt(Math.max(0,offset - 1)); + + // special case for whitespace (fry 0122, bug #348) + // this is really nasty.. turns out that double-clicking any non-letter + // or digit char gets lumped together.. sooo, this quickly gets messy, + // because really it needs to check whether the chars are of the same + // type.. so a double space or double - might be grouped together, + // but what about a +=1? do + and - get grouped but not the 1? blech, + // coming back to this later. it's not a difficult fix, just a + // time-consuming one to track down all the proper cases. + /* + if (ch == ' ') { + //System.out.println("yeehaa"); + + for(int i = offset - 1; i >= 0; i--) { + if (lineText.charAt(i) == ' ') { + wordStart = i; + } else { + break; + } + } + for(int i = offset; i < lineText.length(); i++) { + if (lineText.charAt(i) == ' ') { + wordEnd = i + 1; + } else { + break; + } + } + + } else { + */ + + // If the user clicked on a non-letter char, + // we select the surrounding non-letters + boolean selectNoLetter = !isWordCharacter(ch,noWordSep); + + for(int i = offset - 1; i >= 0; i--) { + ch = lineText.charAt(i); + if (selectNoLetter ^ !isWordCharacter(ch,noWordSep)) { + wordStart = i + 1; + break; + } + } + + for(int i = offset; i < lineText.length(); i++) { + ch = lineText.charAt(i); + if(selectNoLetter ^ !isWordCharacter(ch,noWordSep)) { + wordEnd = i; + break; + } + } + //} + int lineStart = getLineStartOffset(line); + + newSelectionStart = lineStart + wordStart; + newSelectionEnd = lineStart + wordEnd; + } /** @@ -1684,6 +1775,14 @@ public class JEditTextArea extends JComponent protected int selectionEnd; protected int selectionEndLine; protected boolean biasLeft; + + protected int newSelectionStart; // hack to get around lack of multiple returns in Java + protected int newSelectionEnd; + + protected boolean selectWord; + protected boolean selectLine; + protected int selectionAncorStart; + protected int selectionAncorEnd; protected int bracketPosition; protected int bracketLine; @@ -2021,9 +2120,26 @@ public class JEditTextArea extends JComponent { if (popup != null && popup.isVisible()) return; - setSelectionRectangular((evt.getModifiers() - & InputEvent.CTRL_MASK) != 0); - select(getMarkPosition(),xyToOffset(evt.getX(),evt.getY())); + if ( !selectWord && !selectLine ) { + setSelectionRectangular((evt.getModifiers() + & InputEvent.CTRL_MASK) != 0); + select(getMarkPosition(),xyToOffset(evt.getX(),evt.getY())); + } else { + int line = yToLine(evt.getY()); + if ( selectWord ) { + setNewSelectionWord( line, xToOffset(line,evt.getX()) ); + } else { + newSelectionStart = getLineStartOffset(line); + newSelectionEnd = getSafeLineStopOffset(line); + } + if ( newSelectionStart < selectionAncorStart ) { + select(newSelectionStart,selectionAncorEnd); + } else if ( newSelectionEnd > selectionAncorEnd ) { + select(selectionAncorStart,newSelectionEnd); + } else { + select(newSelectionStart,newSelectionEnd); + } + } } final Cursor normalCursor = new Cursor(Cursor.DEFAULT_CURSOR); @@ -2094,6 +2210,9 @@ public class JEditTextArea extends JComponent int offset = xToOffset(line,evt.getX()); int dot = getLineStartOffset(line) + offset; + selectLine = false; + selectWord = false; + switch(evt.getClickCount()) { case 1: @@ -2159,74 +2278,11 @@ public class JEditTextArea extends JComponent bl.printStackTrace(); } - String noWordSep = (String)document.getProperty("noWordSep"); - if(noWordSep == null) - noWordSep = ""; - - // Ok, it's not a bracket... select the word - String lineText = getLineText(line); - - int wordStart = 0; - int wordEnd = lineText.length(); - - char ch = lineText.charAt(Math.max(0,offset - 1)); - - // special case for whitespace (fry 0122, bug #348) - // this is really nasty.. turns out that double-clicking any non-letter - // or digit char gets lumped together.. sooo, this quickly gets messy, - // because really it needs to check whether the chars are of the same - // type.. so a double space or double - might be grouped together, - // but what about a +=1? do + and - get grouped but not the 1? blech, - // coming back to this later. it's not a difficult fix, just a - // time-consuming one to track down all the proper cases. - /* - if (ch == ' ') { - //System.out.println("yeehaa"); - - for(int i = offset - 1; i >= 0; i--) { - if (lineText.charAt(i) == ' ') { - wordStart = i; - } else { - break; - } - } - for(int i = offset; i < lineText.length(); i++) { - if (lineText.charAt(i) == ' ') { - wordEnd = i + 1; - } else { - break; - } - } - - } else { - */ - - // If the user clicked on a non-letter char, - // we select the surrounding non-letters - boolean selectNoLetter = (!Character.isLetterOrDigit(ch) - && noWordSep.indexOf(ch) == -1); - - for(int i = offset - 1; i >= 0; i--) { - ch = lineText.charAt(i); - if (selectNoLetter ^ (!Character.isLetterOrDigit(ch) && - noWordSep.indexOf(ch) == -1)) { - wordStart = i + 1; - break; - } - } - - for(int i = offset; i < lineText.length(); i++) { - ch = lineText.charAt(i); - if(selectNoLetter ^ (!Character.isLetterOrDigit(ch) && - noWordSep.indexOf(ch) == -1)) { - wordEnd = i; - break; - } - } - //} - - int lineStart = getLineStartOffset(line); - select(lineStart + wordStart,lineStart + wordEnd); + setNewSelectionWord( line, offset ); + select(newSelectionStart,newSelectionEnd); + selectWord = true; + selectionAncorStart = selectionStart; + selectionAncorEnd = selectionEnd; /* String lineText = getLineText(line); @@ -2242,7 +2298,10 @@ public class JEditTextArea extends JComponent private void doTripleClick(MouseEvent evt, int line, int offset, int dot) { - select(getLineStartOffset(line),getLineStopOffset(line)-1); + selectLine = true; + select(getLineStartOffset(line),getSafeLineStopOffset(line)); + selectionAncorStart = selectionStart; + selectionAncorEnd = selectionEnd; } } diff --git a/app/src/processing/app/syntax/TextAreaPainter.java b/app/src/processing/app/syntax/TextAreaPainter.java index cc93aeded..e99329526 100644 --- a/app/src/processing/app/syntax/TextAreaPainter.java +++ b/app/src/processing/app/syntax/TextAreaPainter.java @@ -515,7 +515,10 @@ implements TabExpander, Printable */ public Dimension getMinimumSize() { - return getPreferredSize(); + Dimension dim = new Dimension(); + dim.width = fm.charWidth('w') * 10; + dim.height = fm.getHeight() * 4; + return dim; } // package-private members diff --git a/app/src/processing/app/tools/Archiver.java b/app/src/processing/app/tools/Archiver.java index cb282ed69..67c848a17 100755 --- a/app/src/processing/app/tools/Archiver.java +++ b/app/src/processing/app/tools/Archiver.java @@ -56,7 +56,7 @@ public class Archiver implements Tool { numberFormat.setGroupingUsed(false); // no commas numberFormat.setMinimumIntegerDigits(digits); - dateFormat = new SimpleDateFormat(_("yyMMdd")); + dateFormat = new SimpleDateFormat("yyMMdd"); } diff --git a/build/build.xml b/build/build.xml index ef69a77c4..436325fb3 100644 --- a/build/build.xml +++ b/build/build.xml @@ -8,6 +8,7 @@ + + value="linux32"> @@ -281,9 +282,12 @@ - - + + + ======================================================= @@ -388,6 +392,9 @@ + + + @@ -404,12 +411,28 @@ + + + + + + + + + + + + + + + + - @@ -477,7 +500,7 @@ + +--> + + + + + + + + + + + ======================================================= @@ -499,6 +534,8 @@ + @@ -685,6 +722,7 @@ 0) { + + // look for the next valid integer in the incoming serial stream: + int red = Serial.parseInt(); + // do it again: + int green = Serial.parseInt(); + // do it again: + int blue = Serial.parseInt(); + + // look for the newline. That's the end of your + // sentence: + if (Serial.read() == '\n') { + // constrain the values to 0 - 255 and invert + // if you're using a common-cathode LED, just use "constrain(color, 0, 255);" + red = 255 - constrain(red, 0, 255); + green = 255 - constrain(green, 0, 255); + blue = 255 - constrain(blue, 0, 255); + + // fade the red, green, and blue legs of the LED: + analogWrite(redPin, red); + analogWrite(greenPin, green); + analogWrite(bluePin, blue); + + // print the three numbers in one string as hexadecimal: + Serial.print(red, HEX); + Serial.print(green, HEX); + Serial.println(blue, HEX); + } + } +} + + + + + + + + diff --git a/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino b/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino new file mode 100644 index 000000000..dc004c9b2 --- /dev/null +++ b/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino @@ -0,0 +1,245 @@ +/* + Serial Call and Response + Language: Wiring/Arduino + + This program sends an ASCII A (byte of value 65) on startup + and repeats that until it gets some data in. + Then it waits for a byte in the serial port, and + sends three sensor values whenever it gets a byte in. + + Thanks to Greg Shakar and Scott Fitzgerald for the improvements + + The circuit: + * potentiometers attached to analog inputs 0 and 1 + * pushbutton attached to digital I/O 2 + + Created 26 Sept. 2005 + by Tom Igoe + modified 24 April 2012 + by Tom Igoe and Scott Fitzgerald + + This example code is in the public domain. + + http://www.arduino.cc/en/Tutorial/SerialCallResponse + + */ + +int firstSensor = 0; // first analog sensor +int secondSensor = 0; // second analog sensor +int thirdSensor = 0; // digital sensor +int inByte = 0; // incoming serial byte + +void setup() +{ + // start serial port at 9600 bps: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + pinMode(2, INPUT); // digital sensor is on digital pin 2 + establishContact(); // send a byte to establish contact until receiver responds +} + +void loop() +{ + // if we get a valid byte, read analog ins: + if (Serial.available() > 0) { + // get incoming byte: + inByte = Serial.read(); + // read first analog input, divide by 4 to make the range 0-255: + firstSensor = analogRead(A0)/4; + // delay 10ms to let the ADC recover: + delay(10); + // read second analog input, divide by 4 to make the range 0-255: + secondSensor = analogRead(1)/4; + // read switch, map it to 0 or 255L + thirdSensor = map(digitalRead(2), 0, 1, 0, 255); + // send sensor values: + Serial.write(firstSensor); + Serial.write(secondSensor); + Serial.write(thirdSensor); + } +} + +void establishContact() { + while (Serial.available() <= 0) { + Serial.print('A'); // send a capital A + delay(300); + } +} + +/* +Processing sketch to run with this example: + +// This example code is in the public domain. + +import processing.serial.*; + +int bgcolor; // Background color +int fgcolor; // Fill color +Serial myPort; // The serial port +int[] serialInArray = new int[3]; // Where we'll put what we receive +int serialCount = 0; // A count of how many bytes we receive +int xpos, ypos; // Starting position of the ball +boolean firstContact = false; // Whether we've heard from the microcontroller + +void setup() { + size(256, 256); // Stage size + noStroke(); // No border on the next thing drawn + + // Set the starting position of the ball (middle of the stage) + xpos = width/2; + ypos = height/2; + + // Print a list of the serial ports, for debugging purposes: + println(Serial.list()); + + // I know that the first port in the serial list on my mac + // is always my FTDI adaptor, so I open Serial.list()[0]. + // On Windows machines, this generally opens COM1. + // Open whatever port is the one you're using. + String portName = Serial.list()[0]; + myPort = new Serial(this, portName, 9600); +} + +void draw() { + background(bgcolor); + fill(fgcolor); + // Draw the shape + ellipse(xpos, ypos, 20, 20); +} + +void serialEvent(Serial myPort) { + // read a byte from the serial port: + int inByte = myPort.read(); + // if this is the first byte received, and it's an A, + // clear the serial buffer and note that you've + // had first contact from the microcontroller. + // Otherwise, add the incoming byte to the array: + if (firstContact == false) { + if (inByte == 'A') { + myPort.clear(); // clear the serial port buffer + firstContact = true; // you've had first contact from the microcontroller + myPort.write('A'); // ask for more + } + } + else { + // Add the latest byte from the serial port to array: + serialInArray[serialCount] = inByte; + serialCount++; + + // If we have 3 bytes: + if (serialCount > 2 ) { + xpos = serialInArray[0]; + ypos = serialInArray[1]; + fgcolor = serialInArray[2]; + + // print the values (for debugging purposes only): + println(xpos + "\t" + ypos + "\t" + fgcolor); + + // Send a capital A to request new sensor readings: + myPort.write('A'); + // Reset serialCount: + serialCount = 0; + } + } +} +*/ + +/* +Max/MSP version 5 patch to run with this example: + +----------begin_max5_patcher---------- +3908.3oc6ckziiaiE9b0+J3XjCIXpp.WzZNMURv.jCInQ5fYNjNngrDssRKK +4nkp6JA4+973hrkrsjncKu0SRiXasQ83G+dKj7QV+4qtaxzrOxKlf9Zzuft6 +t+7U2cm7ThSbm936lrL3igIAExaaRJ+CYS+sI2qtTI+ikxSuBMKNojm+N3D4 +Aua5KkPwpuoUAkgKhSm+tbdXo5cQXVOhuGwrohuHD4WT7iXzupen3HY4BuqG +rH0kzrrzxzfkb4kdJONHo9JoUKiSS3kRgjt4jYUk0mkznPJh+CYgHewpSqty +xWVwUh3jIqkEYEfmqQEMr.ETbB+YddQbVZix+tIAqV03z203QDX4ukIKHm6W +ep3T0ovqOUN+435m2Rcx+5U0E+FTzVBh9xOsHXIh5YuADg1x4IYgumG0r3mj +shmFmtJmWvSKCJ0um0WNhOKnJo7c6GmZe8YAg7Ne381Rc2j44wQYoBgn0SJN +c8qCHH1RhQqJi7NRCVsmGt.pGUESCxE31zDdCV.PRyxRZeo0MU.WOHMdYPIu +LVIrT75BMd4p73zxVuHdZ.TFKJByyRRZUTpq77dtRDzZFx+PbT4BYY0DJgaO +dUcSvj0XTT7bdQY6yUFLun8YZo71jl0TIt042RYNLa4RfCTWfsznKWDWfJpl +tJHrbgV6t.AZInfzWP.4INpJHA8za91u+6QN1nk7hh.PpQwonxEbTAWzpilV +MimilkmsDtPbo3TPiUdY0pGa9ZShS4gYUJz1pwE1iwCpxbAgJI9DGGwWNzFT +ksLf3z7M0MybG6Hj1WngsD7VEXS8j5q7Wu5U0+39ir8QJJS5GMHdtRimL4m1 +0e1EVX0YsE2YssINriYRoFRyWVMoRRUGQvnkmms3pnXDYHbBKMPpIOL5i1s8 +3rMPwFcRCsGRyPH780.8HBnpWz.vlEQBWJ+0CSunehJSmJxiIZRtNGhhDYrU +jt3ZQyA2fHJhZDifXIQHUHH8oGYgOREI5nqHIzhFWUndPyBdB3VzHJGwUhkV +rgvRl2UCVNMHcd234lf1DN16HFEIdHt99A5hrp7v5WWMSBQZgMP.Tkwoqig8 +W1.Sn1f3h3nn1wLpBypPDzlJ7XinEGkLiMPloWOhrgR7dpZWJQV1faDy35Qj +MThMFkWFGsJChQPqrQp8iorV6Q28HBVF4nMVDJj7f1xyYACFScisg.ruLHOW +uMUS4Am4pI4PTnHi.6bi02HNzSYnDBe4cgAgKzRk1jc8PJLoH3Ydz6.Q.7K8 +tfxx73oUkJq1MGuCy5TpAi.POWZ3AenidLOOIaZPhdjZVW3sdk6LXEGzHb7p +Mfr7SEy3SXHyBSxJ3J2ncNNYVJsXG6Me10nj4cfCRFdTFjLo7q3SiCpjjEDM +.nvra.GN39.E2CDTHWXPo8.xzfqrHCHKnf5QUYUVdoZPUjCSC7LU8.XtTUXl +X8vr51GjwFGLC2AlMdLkU4RiaRrnmJuiudnDk0ZW+9p6TuKBe433JUCzp6fU +iOF0SUk2UQYUPNTEkiZubvKa1tsmgL5SCTXGHnnG0CceLpkpR9Rs28IUESWl +EwWNKfHlg.zj6Ee7S+nE8A+m9F7Cu40u9gMm+aRp3kYYkKd3GDOz5y+c7b96 +K9gfvuIK68uNO6g2vUUL80WxihCVFD9vlB30e2SOrmxUb527RZ3nZNrljGrR +70vs1J9suWuZ3zaHVdG3RIJLgGj2Gfn6TcGcstEfvtH.hpFLlnBndjOLGQAI +z98BXc6yQxghmOn6gZqj0ShPOXhynLOjzCESt+XwE8TxrCvrdXo16rqnLgvb +HaFmbh29QD+K0DyNdjDwvzQL.NXpoMvoOBxkger0HwMRQbpbCh91fjjG9Idw +prTH9SzaSea5a.GQEPnnh43WNefMlsOgx18n.vgUNO.tKl7tDyI3iHzafJHZ +VVNedVEbGgYIY42i93prB0i7B7KT1LnnCiyAiinpBnsPV7OG.tYKfBsrJOkG +UG5aq26iJw6GyJ4eM5mEgEKaNQPMEBUp.t8.krplOVTlZdJAW27bjvGK7p2p +HQPgLOSJDYv4E9gQBYBjMUselRxDy+4WplIzm9JQAWOEmfb.E364B43CAwp5 +uRRDEv8hWXprjADMUOYpOg9.bVQpEfhKgGCnAnk.rghBJCdTVICA3sDvAhE5 +oU4hf67ea5zWPuILqrD8uiK+i477fjHIt9y.V88yy3uMsZUj7wnxGKNAdPx5 +fAZMErDZOcJU4M01WFQokix.pKa+JE1WacmnKFeYd7b.0PeIzB8Kk+5WIZpB +Ejt34KJeHgOCh4HK8Y3QiAkAfs8TRhhOkG7AAGQf0qxyfmQxa+PLb8Ex.2PS +4BdO5GB9Hvg+cfJCMofAIMu9Qz+UPCjckqVJlEmyA8Bf.rC6.3hAEuG8TdTU +bZljQ0nr1ayIqmTwQYfyRGafZhur5vfuyMSqYNWmtAPwWHalDSuUgT0Bosh. +JpAR89Y6Ez5QEfPTQO4J0DHLInIliz8BZV2JfV3Bd36qsQwAVVXbr1BGXp6s +Sd5sSDruo74wofx.HxUgxQwTnMLqTXvRmiGh2PUZr5pBynKChjl6feNUjSRn +hEUfRPT1GfG9Ik4TQBm.hEZZ.bc38HjAMKGzDRijEm1ifx1dbgzQyKh6FZc3 +wOCkRJH+KUh0daWs6wzltWx1puXxlWW6NZWY2JiTBzzILRIANku02NourySM +VI1VJTvQZff32AJr+dS9e34QAoA6EGXlGFH9yk7yyQAlVd3SR94g+TxOu1sU +Flgd6ICI96LzazyPu1cgqsZ8r74SgF.65+efbMf4pGHT7lgHh30Sha3N5Ia. +oqjMf7nsuMwycf7iYDybiAAVr3eC.oTMjpzEr8GDRc9bFRGHYXDrzg.Tlx+q +NW8TY1IkzCfZ2IftkQstbB08HUezoDS+oFyI.cWIhWBaDiUo7qIrDO7f.L6n +AXqCmyNT9act.z+Iv.GR0uES0ZXfjdz.IczAxQOUR+zvRsUTigRxmyPYeNlj +yXv8Peef2ZFzuLzWPPeAE8ELzWXYlhe8WzAcUg+b1UkIoCLzIH60zwASGXau +a1Dq2nUY.sox4vng+m0nACePngC9lEMLZMBPodOxf+yx5d4uMCTHm3kJvIIG +jcLMedEQldkjpoBkQyjY1Hk.hmSY95Iwos8NDb9VSlIWOIntqgxryUjL6bCJ +y1lli5tWWxrQ7YmqGYlc6shK1iY2dr0wtNjYxgHyzaq0OznY235awCr8zSz6 +EGd1QNUKf.74dADTBbTbeotjpW95IolY0WpKYONY8M83Rx2MChx3fL+iG5Mm +tXpdmvXj8uTvaAL1WjbbarQD4Z6kXBpnm6a69oKV2PY9WY174IbC3CaRQ9iK +Q4sYGQpwdtZ5wFrc7n569.M83OOR5ydSB1ZcAWCxdbKuavz9LILxfD.wWO.W +Nq+Zu4Es+AP6s5p9jDWH8ET+c85+XbW0.N1nDCTD7U4DGc6ohnU019fS7kQ0 +o43luuOGjv5agHp0DT.CysOfgLR3xXlXTUKm16RivRsn3z0O6cl3YScAvtrb +hwekGB7BZuqESUzBJWmCvK7t9HF8Ts6cUAPoFWso3aP8ApWyJ3wqOPo2pJDC +BQ0NI0Pj8QCQ2r1L5vKaU5lDRYX7yRur1UYYZmJQ9iDHwN9dndB5n5ejflmm +UsBwLHnDkKXWRuAkb3NeuzqRstiQGP.fCQFdHNzaE.8u58Nz9svFE9SGIE1X +kv9Iwfl1BdNWjA7xcThsWCS847loyFD8pZq2E2F04lYULzBTDYhrFSDDJdjo +fisN2NUN26e4xRu51zD5ZseJ4HC63WyIX6jRqsp0jangBnK.Qlo58PCpWevt +ahzqK7fbKsdX6R64aao8LmWhBPh9jKVAPMzb5a2cV6opdWHneMmqMEmAGsPh +ieigIjV+4gF1GgbMNXg+NH44YaRYyd..S1ThHzKhFwwGRaWVITqyj9FvPqMT +d0pDuSqDrOGF.Uogf.juCFi9WAUkYR+rFPanDcPG8SbrtjyG03ZQ8m3AqC5H +NcUUoXSwVrqXKVcZu.5ZnkwIfIVdXVZTwAuTTUiYuxwjZDK6ZgnRtYV8tJmP +hEcuXgz2Goxyaiw35UkaWbpqtfzD02oUkkYqi.YQbZqIIWrIljFolsdmMKFR +wCJ2+DTn.9QlkOld+d9Qy9IJdpLfy05Ik2b8GsG9h8rdm1ZFx1FrmmlA2snw +qI9Mcdi2nr6q3Gc87nLawurbw1dda+tMyGJ9HaQmlkGwy6davisMgrkM65oz +eulfYCzG46am8tSDK144xV4cEvVMTRXq9CIX8+ALNWb6sttKNkiZetnbz+lx +cQnb1Nds2C0tvLNe14hwQtxYbxhqc17qHfamUcZZ3NYSWqjJuiDoizZ+ud2j +naRK4k3346IIVdR1kKiQjM39adMamvc6n+Xp36Yf3SIGh3uKbquqs1JksTII +kuJ7RrZSFb2Cn9j5a6DT8cMo0iczU+lsYaU8YNVh5k5uzJLU26ZcfuJE6XLY +0mcRp9NTCp+L+Ap+in7Xf3b9jFQBLtIY06PbrGhcrU6N00Qlaf9N0+QPo9nS +P6qsI7aYNLSNOHpsAxis0ggnZLjYqyyFkdSqinVsPaqSDZaYBZ6c93uLCjGm +iCroJVLzU45iNE.pIUfs3TWb.0FejHp9uANr0GcJPTroFDNOHpkIweLnI1QT +dHl3P7LhOF3Ahd9rnvLwAMy5JSdNezGlsIsW9mW44r26js+alhxjlkdhN0YE +YqiH5MTeWo6D4Qm.ieLS7OynmuVGSbmbFUlnWWhiQlhOeN+Yl35bq.tGo9JR +cj8AVqdz7nSgVB9zNj.FTOU68o5d9KO5TUOGxVMw+jTO8T6wqD0hEiHsOJO5 +TTOMoS.zlqN0SpZjz6GcH05ylVM0jwuidlkmAif374ih5M5QPfccr8Hqifff +otN8pt3hUcaWu8nosBhwmD0Epw5KmoF.poxy4YHbnjqfPJqcM3Y2vun7nS.i +f3eETiqcRX2LR.4QmhZrkoCSGwzZrqKHrVR8caari+55d2caPqmq5n.ywe8Q +WrZL9fpwVXeaogMByE6y1SMdjk+gbavbN7fYvVtt1C2XwHJSzpk+tidUO25H +UB9onw9mlFQ10fhpZBaDatcMTTEGcJpwzqg92qqiVtM6Cu0IRQ0ndEdfCAqV +l0qYAUmPrctbxO4XCuPMa1asYzKDks1D52ZCne6Mednz9qW8+.vfqkDA +-----------end_max5_patcher----------- + + + +*/ diff --git a/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino b/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino new file mode 100644 index 000000000..3c6f94ed2 --- /dev/null +++ b/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino @@ -0,0 +1,234 @@ +/* + Serial Call and Response in ASCII + Language: Wiring/Arduino + + This program sends an ASCII A (byte of value 65) on startup + and repeats that until it gets some data in. + Then it waits for a byte in the serial port, and + sends three ASCII-encoded, comma-separated sensor values, + truncated by a linefeed and carriage return, + whenever it gets a byte in. + + Thanks to Greg Shakar and Scott Fitzgerald for the improvements + + The circuit: + * potentiometers attached to analog inputs 0 and 1 + * pushbutton attached to digital I/O 2 + + + + Created 26 Sept. 2005 + by Tom Igoe + modified 24 Apr 2012 + by Tom Igoe and Scott Fitzgerald + + This example code is in the public domain. + + http://www.arduino.cc/en/Tutorial/SerialCallResponseASCII + + */ + +int firstSensor = 0; // first analog sensor +int secondSensor = 0; // second analog sensor +int thirdSensor = 0; // digital sensor +int inByte = 0; // incoming serial byte + +void setup() +{ + // start serial port at 9600 bps and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + pinMode(2, INPUT); // digital sensor is on digital pin 2 + establishContact(); // send a byte to establish contact until receiver responds +} + +void loop() +{ + // if we get a valid byte, read analog ins: + if (Serial.available() > 0) { + // get incoming byte: + inByte = Serial.read(); + // read first analog input: + firstSensor = analogRead(A0); + // read second analog input: + secondSensor = analogRead(A1); + // read switch, map it to 0 or 255L + thirdSensor = map(digitalRead(2), 0, 1, 0, 255); + // send sensor values: + Serial.print(firstSensor); + Serial.print(","); + Serial.print(secondSensor); + Serial.print(","); + Serial.println(thirdSensor); + } +} + +void establishContact() { + while (Serial.available() <= 0) { + Serial.println("0,0,0"); // send an initial string + delay(300); + } +} + + +/* +Processing code to run with this example: + +// This example code is in the public domain. + +import processing.serial.*; // import the Processing serial library +Serial myPort; // The serial port + +float bgcolor; // Background color +float fgcolor; // Fill color +float xpos, ypos; // Starting position of the ball + +void setup() { + size(640,480); + + // List all the available serial ports + println(Serial.list()); + + // I know that the first port in the serial list on my mac + // is always my Arduino module, so I open Serial.list()[0]. + // Change the 0 to the appropriate number of the serial port + // that your microcontroller is attached to. + myPort = new Serial(this, Serial.list()[0], 9600); + + // read bytes into a buffer until you get a linefeed (ASCII 10): + myPort.bufferUntil('\n'); + + // draw with smooth edges: + smooth(); +} + +void draw() { + background(bgcolor); + fill(fgcolor); + // Draw the shape + ellipse(xpos, ypos, 20, 20); +} + +// serialEvent method is run automatically by the Processing applet +// whenever the buffer reaches the byte value set in the bufferUntil() +// method in the setup(): + +void serialEvent(Serial myPort) { + // read the serial buffer: + String myString = myPort.readStringUntil('\n'); + // if you got any bytes other than the linefeed: + myString = trim(myString); + + // split the string at the commas + // and convert the sections into integers: + int sensors[] = int(split(myString, ',')); + + // print out the values you got: + for (int sensorNum = 0; sensorNum < sensors.length; sensorNum++) { + print("Sensor " + sensorNum + ": " + sensors[sensorNum] + "\t"); + } + // add a linefeed after all the sensor values are printed: + println(); + if (sensors.length > 1) { + xpos = map(sensors[0], 0,1023,0,width); + ypos = map(sensors[1], 0,1023,0,height); + fgcolor = sensors[2]; + } + // send a byte to ask for more data: + myPort.write("A"); + } + +*/ + +/* + +Max/MSP version 5 patch to run with this example: +----------begin_max5_patcher---------- +3640.3oc6cs0jZajE94Y9UzKkeHoVloTeSHkm1II0VkeHIthSs6C1obIjZ.E +KjHRhY7jT4+9d5KBj.jTCAXfoV6x.sj5VmyWet127ed6MCFm8EQw.z2f9.5l +a9yau4F0kjW3FS4aFLO3KgIAEpGaPX174hzxAC02qT7kR80mkkUHPAnBQdbP +BZQVdIZRd1bT4r3BDTmkU0YQPY3r3zoeJWDVpe2ttr6cFhvXt7KhyH8W26f9 +USkhiTulrw+1czQUszjrzxzf4B0sdP9dqtS5x4woIhREQiWewrkkUW0oViTD ++GpFASt2Qd0+51akeLzRPIU7DPXagIFnH.4653f9WAKKyxVHRQNcfDXlih2w +puvbdWHAlcTPBRKHg4x5mr74EBMINHV1+iFL.8qG.VMWTTDLUrs.TBH+zAvP +nTEhvvxun9pBd6FWH38DWH6DWv6ItbX.RKBOJ7XbP5ztvDesvhBLb6VTwcOg +DmiBjnXfiIrjjED0CpP490PEmtPExwQA5EGUVjK.CKQJqtcYl0nCMRAJi76D +Z7dQflCCVV1i+ENiTy3AwYaghEA4.KVJx+jHMXbhntJPceO3iBpPOPKtZqtU +jUoXtw28fkEimmEIlOI.3Q4iMT9wO+iLxc9O7sN28928t6Ve8uMYo.7EUN6t +ePVoUW+6E4hOW7CAgeaV1meWd1cuWnYLy8mKhhClGDd25F3ce+C2si1Ud42+ +bZ3IQJOXg7q96t80e50YvDjqHw7VvkRTXhHHuKEerRwmqfBFsS.g9h.HZN3X +hJf5Qd+xHZHgzc.mrqeYjbn4E84evfIDUjDtjNwD2iRHV6anmGdbmsfKxTTJ +dd93rjtBJ2U42foCwZDqKfYzKkrh4VgYIY4FxVRmN2646f8ck+xw7KrjzOlZ +ZYAVfdZgKlaWn29FzA8nfdR2quj.3ejflBJnKr.Dwpf13cZBm85P0rPj.rOB +6fvztPFGkVI0SAPi5NKHmih7E8Ph2e35uOtYN6x6JEQtJVWpV7gRtm2dZy9W ++YMCxLHrEvAknQktDVdY7v82SFosgmSGHO56BRRt6mEEKxRKDnGd+2812h9X +5GSeODOcAJ.M9YHHAfjPkyD0GIugn.Ht6bQ.7TTS8DoPtCQCQxWobX+jYPUJ +hPn3zgnx7kogphieFZ2j3TwDgH5dzaUscJ77kEnIY4hoYKglVYzcH5KKxJzu +qmgegxl.0MLNGBNDsr.5IUz0iAPZFE.0TtLOEdClQYrAAeORwW+XVo3aP+hb +DHUBCH.mfbEKfGOPyjQhGiCAdNUUBRcQjij4X.u5MZRDzHSyTDQFbcYdHHIM +AzlF1lnoLjKG8UZH5guV1vEkA4kKWbOPGPC9YgjNdJHVy+ZJQ1.Cq.FUWQpA +ke.8DbUwi.YEWBUCDhPyAXCEETFbuhICg9EIRiYnGVjKyt0+io.r+9vrxRz+ +Nt7OlJxCRhT35u.X0amlI9X5xEQppQwneJrLarPVU7JkGYWVHz2njevz1UoX +XkoEWOkxDWO9kXYocoTwuzF611zXJyimB3F5qf9nOT9qesryJTJ1EOcV4cIh +IPVWYoOBUMFTl.4sGRRzRT4AOIkRjn8h7LnNJI2mhg6OSk5JZrPJ4i9gfu.R +w+NHLCcpfAMij88n+qTPPMt4UTwj3bAnY.h.aIe.RiAEeF8Pdzx3zLkLUs1Z +mcmczah0FH4ZmpLcp.rVbX3d0zalKhSiKAxBZ9BU2zTP3uPobgL1Q.U0.kl+ +jcBZj1AMOpzsJYjdz0n53QXsfYrqELKblH7yUFoDfPVXbrwDGXqCjwjviT7a +rXZbpxOvxzXvpOnPH0GlTJMZog8l2UZJcdPjxjG7ywIYgeFULaInFDk8jpxZ +apvMA4cv9X.7.vaRRGFAcPYHMR0dF2BZC7wEJ2TOKeZnCRD+HzJo.OLWSW6r +qk2wfI6pGf.pdjC4rpfL2YeK8JYloVf93.ocJEvocv9wAcEiMQgBtl.lb0y9 +heKnvtGRs+iHOJHM3uaZbN1jDrhED4FfwfLPCEmH8jV.BB0Z+aF.Vkqc4apU +EIb9a5zAcGt5Rf3WdsNJ3R4PXDU0mouHzIca0MWO.KpQjT8oq1SIyqV3mP24 +ToxfHpdyOPNqgwoK.W.fxfRNtwsiDSBVlT9ociSMu+jfPQqUtk9paFLMONJK +URFMpq7xUuvOXF1HBuN6ndhzfE6nxPXQkKKFGjKQNyHtSptYYVVRyaspyBD3 +CRiA0YQYrlbgHdptY77E4wZk5UWSOf9yJByyRRZzT5673NtiNrvmhiJmoZq5 +fI73wKp5DFrBihhmBNxadsxfoEMuRiIbutfVcM4FWuyr.2bvrlNF5.3U+q9C +sKaa5jkMt70iSd8bC2ZbEFUuAa0DWqYF0tJ91p43649br2nZ2usLGuoxrnQq +6TArNx+1CjRLPpVWf62Kj59ZFRa38Y6D0kRo8AnT8b0g0e4p8+f6.P4sBnaX +TqMmPsOdOcjG+dMtOmdzcgLdIGqjX0J+FAVrmSu.L8fAX19Ky1C.e1.z+IB2 +qpeCIUV+.I4fARxQGH0i.9ECVZrhZMTheMCkc4XRMsoCgbef2ZFjaF5MXzaH +n2PQugYmhe0WjdcU47Z1Ukhb6CwFISy2HNtcvtaNRWdshHNVgHcNMUlopRm4 +tJByyLXfI0UN6GM7eUiFTm8BMbctZQC8atOegDu6oveXrgpeaGnfaETvsBJN +6AKuNsT4n+zRVXJtQd+ciEEYKyCq.8ptRTSdBRQrLNcUd5eXcjoa7fyhihZl +UrNQxBYZo5g.vpdt8klkJi1QyPvdH7UFMStbvYu8Amu1nY7ECMKGXBqnY2KH +Z18Jjl4aYNnEYiQWVzrUxytWNzL0VZ14xglI6isN5kAMi2GZlbYPyNma6FqC +aJRs9qEogO+ovfvYFxxjGV07cLnH3QQzm.R.BG7SAkk4wiWVpC2p9jwX23ka +0zSz4M6e1QZY.8mljMNHwLURqZ9FuzslMk8ZJXtcMPeblVut1XYDhdMCpmjZ +8BAqsU9DezKxJAa8Hmbbfi+wccuVv7c0qELrEHB+UAhHWzCfCbKPEyBki24Z +clythVwfkYSmlHrPdX8tC5v1iPb5ArPuOWc8NVrRZspq24UxhE0wBcAsMyt2 +2LLuqvkKZRXjEq5CM6S3tq9Zm6HD+8Prm0F+jDWn1paUe+2ZuF259kxkiR5W +Qf6vzKBtMm+gFrMeuWsKW.6B61VyWOFjz0Zsmwza+.ikxQcAL3iDtbLWMTKm +OtyMEFcjWM9iu0rMa81D8kUl3v2ewcHWP5B2HX6kK7t7DL5fs6JVIrO0Z1l3 +bEpOP3zih9.gbspPzKDYbRVAQ7CFhtZsYzhW1ko0WEJcG3oAC0aRIyxKsUEI ++iDPwOLfp0uNA68MmtSUSmRuNb8d1ttWya7sVWf5Iwf.1LQtZUnqNvT1bS6z +E5o2vfqNSH5bufQbuZV09M.E04Mj8XBUiBqNGl5FSt3NGlZaGRpV6wc4kiWi +q0twaaORhul1jjsIi7cMjQlJJUaQuhR495nlfRQWRJXkrgmMGXWjKM4jdGJH +yovkl4HUetutzWuY5tjFHneGn77rtG3iJ92whCVJxKhBwgGtRaFIzabfNrRn +WThd9q24vsZjf9JvHwOKBhprFDmtXYIZ7xISjaO1GE4OK2V9yiS.qFhvrznh +8cKyMZs7EVepT01FlCe0rIC0lUk6NX4N9syCyAE660+ovE9hyGqjaGurrLak +G0YwoMlFO4YMSZjd9DcWucsjUr1Yqgy8TluCY3N9Q8.+k0JCD3ZTS0CW8Qyb +s19nOxrgjw7VFU+3ooYviK66pCfimt8AAxHOOBkK+EajC2yayWtciMzgdvpM +NKORj29YyGcS4wFVlql0wcZTg1yw5wvMNiTpuUzpu.Y0miRlgO0w7wpZI2Em +SUBGayVM5eqU4C+rV4ZSPkvXqLJbAHlR3mKwT5ISL8+Kv0k.GWEKwpP3ewk3 +7omKIN7EtDmp4ZtHk0BfatXgLhgasHgZrVYaY8AIO7fq8Pas1fFzjd4ibwpd +XO4GXOeOG+lcyasNh1R+wVx2yBxeTOT+wiZFYA0P48PNyiiVjAhJlNT4Qvpb +uj3aN2qYqJcBfSWhMbf+YCPcsfbNeTC2l9WNc+5eIlkST0RJgupzIn+kysgC +X6GGXnYpdYfP0GP6MKQXM3N1Ih6XVvcLuym7B0B5w8v.ahqBI49qJcJ.TaX. +N+xBP4NGHhhqYfkRNM9q1f3ZweqyYCQYdGCSZGQ5wBx47o.Ssw+CkcgQOmud +KZic4QKzCw+7ROm8nY2LfMsEDtdfeMKSn5Ev95IQhorcqJcBrzPsQUhRNe8M +1X6lhOezC4Bidv1nKcFs8YimJ9n8RWZXiO7aSCxDRLdjd91qU5TnmXCeRvmR +9jnm7b15RmJ9rO4Kr+IgO04BfczyOpqx9npzofOsIlaR8Mo0IUMR48i0mYly +lVMwlw6gbloGRezy4yKEw6BHBBWik.eRi3DNM5KDahS.SOE1EjmXl7Uyqo9T +AtQAO8fG3oLX3cZFxKh0FLNSRfDaoG74gdvW.ZDU9FMGSdFMBt+IQh.6eIvw +FujTkJREGKKcJ3X2WtXf7Ub1HywEqxh2tJnE.FcZhMByrcXQw1x+bOWJYjpy +lv8oq55aEHLcwD8hJjxbVU5EigcNtL7Ql76KVVp69Huhcb87vpoCkRYT+96v +Hd5Ay1rofMqm+FkLYvv0+GL3FkL6bLp21kL6QFNV8BNM48foWBV4zt1wXm5V +4jkNEbL45dtNw13Iltmi9sAyY0S0l8BR+3yWjVXax7eOmKrp4m0QKIal6VYo +SAf5XQxSrCa5l0qk45k5kAzqEgMNgzkz9FmL5abpnu4IhNzZ+0s+OKCSg0. +-----------end_max5_patcher----------- + +*/ diff --git a/build/shared/examples/4.Communication/SerialEvent/SerialEvent.ino b/build/shared/examples/04.Communication/SerialEvent/SerialEvent.ino similarity index 100% rename from build/shared/examples/4.Communication/SerialEvent/SerialEvent.ino rename to build/shared/examples/04.Communication/SerialEvent/SerialEvent.ino diff --git a/build/shared/examples/4.Communication/VirtualColorMixer/VirtualColorMixer.ino b/build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.ino similarity index 100% rename from build/shared/examples/4.Communication/VirtualColorMixer/VirtualColorMixer.ino rename to build/shared/examples/04.Communication/VirtualColorMixer/VirtualColorMixer.ino diff --git a/build/shared/examples/5.Control/Arrays/Arrays.ino b/build/shared/examples/05.Control/Arrays/Arrays.ino similarity index 100% rename from build/shared/examples/5.Control/Arrays/Arrays.ino rename to build/shared/examples/05.Control/Arrays/Arrays.ino diff --git a/build/shared/examples/5.Control/ForLoopIteration/ForLoopIteration.ino b/build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.ino similarity index 100% rename from build/shared/examples/5.Control/ForLoopIteration/ForLoopIteration.ino rename to build/shared/examples/05.Control/ForLoopIteration/ForLoopIteration.ino diff --git a/build/shared/examples/5.Control/IfStatementConditional/IfStatementConditional.ino b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino similarity index 95% rename from build/shared/examples/5.Control/IfStatementConditional/IfStatementConditional.ino rename to build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino index 8346f2cbb..e6c18017a 100644 --- a/build/shared/examples/5.Control/IfStatementConditional/IfStatementConditional.ino +++ b/build/shared/examples/05.Control/IfStatementConditional/IfStatementConditional.ino @@ -16,7 +16,7 @@ connected to pin 13, so you don't need any extra components for this example. created 17 Jan 2009 - modified 30 Aug 2011 + modified 9 Apr 2012 by Tom Igoe This example code is in the public domain. @@ -51,6 +51,6 @@ void loop() { // print the analog value: Serial.println(analogValue); - + delay(1); // delay in between reads for stability } diff --git a/build/shared/examples/5.Control/WhileStatementConditional/WhileStatementConditional.ino b/build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino similarity index 100% rename from build/shared/examples/5.Control/WhileStatementConditional/WhileStatementConditional.ino rename to build/shared/examples/05.Control/WhileStatementConditional/WhileStatementConditional.ino diff --git a/build/shared/examples/5.Control/switchCase/switchCase.ino b/build/shared/examples/05.Control/switchCase/switchCase.ino similarity index 89% rename from build/shared/examples/5.Control/switchCase/switchCase.ino rename to build/shared/examples/05.Control/switchCase/switchCase.ino index 87eb3f340..93004b3de 100644 --- a/build/shared/examples/5.Control/switchCase/switchCase.ino +++ b/build/shared/examples/05.Control/switchCase/switchCase.ino @@ -14,7 +14,7 @@ * 10K resistor from analog in 0 to ground created 1 Jul 2009 - modified 30 Aug 2011 + modified 9 Apr 2012 by Tom Igoe This example code is in the public domain. @@ -22,7 +22,8 @@ http://www.arduino.cc/en/Tutorial/SwitchCase */ -// these constants won't change: +// these constants won't change. They are the +// lowest and highest readings you get from your sensor: const int sensorMin = 0; // sensor minimum, discovered through experiment const int sensorMax = 600; // sensor maximum, discovered through experiment @@ -53,7 +54,7 @@ void loop() { Serial.println("bright"); break; } - + delay(1); // delay in between reads for stability } diff --git a/build/shared/examples/5.Control/switchCase2/switchCase2.ino b/build/shared/examples/05.Control/switchCase2/switchCase2.ino similarity index 100% rename from build/shared/examples/5.Control/switchCase2/switchCase2.ino rename to build/shared/examples/05.Control/switchCase2/switchCase2.ino diff --git a/build/shared/examples/6.Sensors/ADXL3xx/ADXL3xx.ino b/build/shared/examples/06.Sensors/ADXL3xx/ADXL3xx.ino similarity index 100% rename from build/shared/examples/6.Sensors/ADXL3xx/ADXL3xx.ino rename to build/shared/examples/06.Sensors/ADXL3xx/ADXL3xx.ino diff --git a/build/shared/examples/6.Sensors/Knock/Knock.ino b/build/shared/examples/06.Sensors/Knock/Knock.ino similarity index 100% rename from build/shared/examples/6.Sensors/Knock/Knock.ino rename to build/shared/examples/06.Sensors/Knock/Knock.ino diff --git a/build/shared/examples/6.Sensors/Memsic2125/Memsic2125.ino b/build/shared/examples/06.Sensors/Memsic2125/Memsic2125.ino similarity index 100% rename from build/shared/examples/6.Sensors/Memsic2125/Memsic2125.ino rename to build/shared/examples/06.Sensors/Memsic2125/Memsic2125.ino diff --git a/build/shared/examples/6.Sensors/Ping/Ping.ino b/build/shared/examples/06.Sensors/Ping/Ping.ino similarity index 100% rename from build/shared/examples/6.Sensors/Ping/Ping.ino rename to build/shared/examples/06.Sensors/Ping/Ping.ino diff --git a/build/shared/examples/7.Display/RowColumnScanning/RowColumnScanning.ino b/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.ino similarity index 97% rename from build/shared/examples/7.Display/RowColumnScanning/RowColumnScanning.ino rename to build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.ino index 6be347295..f841c6857 100644 --- a/build/shared/examples/7.Display/RowColumnScanning/RowColumnScanning.ino +++ b/build/shared/examples/07.Display/RowColumnScanning/RowColumnScanning.ino @@ -50,9 +50,7 @@ int x = 5; int y = 5; void setup() { - Serial.begin(9600); - // initialize the I/O pins as outputs: - + // initialize the I/O pins as outputs // iterate over the pins: for (int thisPin = 0; thisPin < 8; thisPin++) { // initialize the output pins: diff --git a/build/shared/examples/7.Display/barGraph/barGraph.ino b/build/shared/examples/07.Display/barGraph/barGraph.ino similarity index 100% rename from build/shared/examples/7.Display/barGraph/barGraph.ino rename to build/shared/examples/07.Display/barGraph/barGraph.ino diff --git a/build/shared/examples/08.Strings/CharacterAnalysis/.CharacterAnalysis.ino.swp b/build/shared/examples/08.Strings/CharacterAnalysis/.CharacterAnalysis.ino.swp new file mode 100644 index 000000000..0f8c4f40c Binary files /dev/null and b/build/shared/examples/08.Strings/CharacterAnalysis/.CharacterAnalysis.ino.swp differ diff --git a/build/shared/examples/8.Strings/CharacterAnalysis/CharacterAnalysis.ino b/build/shared/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino similarity index 91% rename from build/shared/examples/8.Strings/CharacterAnalysis/CharacterAnalysis.ino rename to build/shared/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino index 12baca9af..b640403b0 100644 --- a/build/shared/examples/8.Strings/CharacterAnalysis/CharacterAnalysis.ino +++ b/build/shared/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino @@ -5,14 +5,18 @@ Send any byte and the sketch will tell you about it. created 29 Nov 2010 + modified 2 Apr 2012 by Tom Igoe This example code is in the public domain. */ void setup() { - // Open serial communications: + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } // send an intro: Serial.println("send any byte and I'll tell you everything I can about it"); @@ -77,9 +81,3 @@ void loop() { Serial.println(); } } - - - - - - diff --git a/build/shared/examples/8.Strings/StringAdditionOperator/StringAdditionOperator.ino b/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino similarity index 89% rename from build/shared/examples/8.Strings/StringAdditionOperator/StringAdditionOperator.ino rename to build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino index 88938e864..d7c2c4493 100644 --- a/build/shared/examples/8.Strings/StringAdditionOperator/StringAdditionOperator.ino +++ b/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino @@ -5,7 +5,7 @@ You can also add several different data types to string, as shown here: created 27 July 2010 - modified 30 Aug 2011 + modified 2 Apr 2012 by Tom Igoe http://arduino.cc/en/Tutorial/StringAdditionOperator @@ -17,11 +17,18 @@ String stringOne, stringTwo, stringThree; void setup() { + // initialize serial and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + stringOne = String("stringThree = "); stringTwo = String("this string"); stringThree = String (); + // send an intro: Serial.println("\n\nAdding strings together (concatenation):"); + Serial.println(); } void loop() { @@ -58,4 +65,4 @@ void loop() { // do nothing while true: while(true); -} \ No newline at end of file +} diff --git a/build/shared/examples/8.Strings/StringAppendOperator/StringAppendOperator.ino b/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino similarity index 89% rename from build/shared/examples/8.Strings/StringAppendOperator/StringAppendOperator.ino rename to build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino index cb902ca6b..b7eb12230 100644 --- a/build/shared/examples/8.Strings/StringAppendOperator/StringAppendOperator.ino +++ b/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino @@ -4,7 +4,7 @@ Examples of how to append different data types to strings created 27 July 2010 - modified 30 Aug 2011 + modified 2 Apr 2012 by Tom Igoe http://arduino.cc/en/Tutorial/StringAppendOperator @@ -14,10 +14,17 @@ String stringOne, stringTwo; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + stringOne = String("Sensor "); stringTwo = String("value"); + // send an intro: Serial.println("\n\nAppending to a string:"); + Serial.println(); } void loop() { @@ -61,4 +68,5 @@ void loop() { // do nothing while true: while(true); -} \ No newline at end of file +} + diff --git a/build/shared/examples/8.Strings/StringCaseChanges/StringCaseChanges.ino b/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino similarity index 65% rename from build/shared/examples/8.Strings/StringCaseChanges/StringCaseChanges.ino rename to build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino index c180014bd..675ab8e19 100644 --- a/build/shared/examples/8.Strings/StringCaseChanges/StringCaseChanges.ino +++ b/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino @@ -4,6 +4,7 @@ Examples of how to change the case of a string created 27 July 2010 + modified 2 Apr 2012 by Tom Igoe http://arduino.cc/en/Tutorial/StringCaseChanges @@ -12,24 +13,31 @@ */ void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // send an intro: Serial.println("\n\nString case changes:"); + Serial.println(); } void loop() { // toUpperCase() changes all letters to upper case: String stringOne = ""; Serial.println(stringOne); - stringOne = (stringOne.toUpperCase()); + stringOne.toUpperCase(); Serial.println(stringOne); - - // toLowerCase() changes all letters to lower case: + + // toLowerCase() changes all letters to lower case: String stringTwo = ""; Serial.println(stringTwo); - stringTwo = stringTwo.toLowerCase(); + stringTwo.toLowerCase(); Serial.println(stringTwo); - - + + // do nothing while true: while(true); } diff --git a/build/shared/examples/8.Strings/StringCharacters/StringCharacters.ino b/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino similarity index 77% rename from build/shared/examples/8.Strings/StringCharacters/StringCharacters.ino rename to build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino index 8b8d9bbdc..06e9e3e53 100644 --- a/build/shared/examples/8.Strings/StringCharacters/StringCharacters.ino +++ b/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino @@ -4,6 +4,7 @@ Examples of how to get and set characters of a String created 27 July 2010 + modified 2 Apr 2012 by Tom Igoe http://arduino.cc/en/Tutorial/StringCharacters @@ -12,7 +13,12 @@ */ void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + Serial.println("\n\nString charAt() and setCharAt():"); } @@ -20,18 +26,19 @@ void loop() { // make a string to report a sensor reading: String reportString = "SensorReading: 456"; Serial.println(reportString); - + // the reading's most significant digit is at position 15 in the reportString: - String mostSignificantDigit = reportString.charAt(15); + char mostSignificantDigit = reportString.charAt(15); Serial.println("Most significant digit of the sensor reading is: " + mostSignificantDigit); -// add blank space: + // add blank space: Serial.println(); - + // you can alo set the character of a string. Change the : to a = character reportString.setCharAt(13, '='); Serial.println(reportString); // do nothing while true: while(true); -} \ No newline at end of file +} + diff --git a/build/shared/examples/8.Strings/StringComparisonOperators/StringComparisonOperators.ino b/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino similarity index 92% rename from build/shared/examples/8.Strings/StringComparisonOperators/StringComparisonOperators.ino rename to build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino index 53c7492e5..dc468ee4e 100644 --- a/build/shared/examples/8.Strings/StringComparisonOperators/StringComparisonOperators.ino +++ b/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino @@ -4,21 +4,29 @@ Examples of how to compare strings using the comparison operators created 27 July 2010 - modified 30 Aug 2011 + modified 2 Apr 2012 by Tom Igoe http://arduino.cc/en/Tutorial/StringComparisonOperators This example code is in the public domain. */ - + String stringOne, stringTwo; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + stringOne = String("this"); stringTwo = String("that"); + // send an intro: Serial.println("\n\nComparing Strings:"); + Serial.println(); } @@ -57,7 +65,7 @@ void loop() { // a numeric string compared to the number it represents: stringOne = "1"; int numberOne = 1; - if (stringOne == numberOne) { + if (stringOne.toInt() == numberOne) { Serial.println(stringOne + " = " + numberOne); } @@ -121,4 +129,4 @@ void loop() { } } -} \ No newline at end of file +} diff --git a/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino b/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino new file mode 100644 index 000000000..d823cda10 --- /dev/null +++ b/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino @@ -0,0 +1,72 @@ +/* + String constructors + + Examples of how to create strings from other data types + + created 27 July 2010 + modified 30 Aug 2011 + by Tom Igoe + + http://arduino.cc/en/Tutorial/StringConstructors + + This example code is in the public domain. + */ + +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // send an intro: + Serial.println("\n\nString Constructors:"); + Serial.println(); +} + +void loop() { + // using a constant String: + String stringOne = "Hello String"; + Serial.println(stringOne); // prints "Hello String" + + // converting a constant char into a String: + stringOne = String('a'); + Serial.println(stringOne); // prints "a" + + // converting a constant string into a String object: + String stringTwo = String("This is a string"); + Serial.println(stringTwo); // prints "This is a string" + + // concatenating two strings: + stringOne = String(stringTwo + " with more"); + // prints "This is a string with more": + Serial.println(stringOne); + + // using a constant integer: + stringOne = String(13); + Serial.println(stringOne); // prints "13" + + // using an int and a base: + stringOne = String(analogRead(A0), DEC); + // prints "453" or whatever the value of analogRead(A0) is + Serial.println(stringOne); + + // using an int and a base (hexadecimal): + stringOne = String(45, HEX); + // prints "2d", which is the hexadecimal version of decimal 45: + Serial.println(stringOne); + + // using an int and a base (binary) + stringOne = String(255, BIN); + // prints "11111111" which is the binary value of 255 + Serial.println(stringOne); + + // using a long and a base: + stringOne = String(millis(), DEC); + // prints "123456" or whatever the value of millis() is: + Serial.println(stringOne); + + // do nothing while true: + while(true); + +} diff --git a/build/shared/examples/8.Strings/StringIndexOf/StringIndexOf.ino b/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino similarity index 81% rename from build/shared/examples/8.Strings/StringIndexOf/StringIndexOf.ino rename to build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino index a60d12783..b943c1639 100644 --- a/build/shared/examples/8.Strings/StringIndexOf/StringIndexOf.ino +++ b/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino @@ -4,6 +4,7 @@ Examples of how to evaluate, look for, and replace characters in a String created 27 July 2010 + modified 2 Apr 2012 by Tom Igoe http://arduino.cc/en/Tutorial/StringIndexOf @@ -12,13 +13,19 @@ */ void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); - Serial.println("\n\nString indexOf() and lastIndexOf() functions:"); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + // send an intro: + Serial.println("\n\nString indexOf() and lastIndexOf() functions:"); + Serial.println(); } void loop() { - // indexOf() returns the position (i.e. index) of a particular character + // indexOf() returns the position (i.e. index) of a particular character // in a string. For example, if you were parsing HTML tags, you could use it: String stringOne = ""; int firstClosingBracket = stringOne.indexOf('>'); @@ -47,12 +54,13 @@ void loop() { Serial.println("The index of the last list item in the string " + stringOne + " is " + lastListItem); -// lastIndexOf() can also search for a string: - stringOne = "

Lorem ipsum dolor sit amet

Ipsem

Quod

"; + // lastIndexOf() can also search for a string: + stringOne = "

Lorem ipsum dolor sit amet

Ipsem

Quod

"; int lastParagraph = stringOne.lastIndexOf(" 0) { + inChar = Serial.read(); + } + + if (isDigit(inChar)) { + // convert the incoming byte to a char + // and add it to the string: + inString += (char)inChar; + } + + // if you get a comma, convert to a number, + // set the appropriate color, and increment + // the color counter: + if (inChar == ',') { + // do something different for each value of currentColor: + switch (currentColor) { + case 0: // 0 = red + red = inString.toInt(); + // clear the string for new input: + inString = ""; + break; + case 1: // 1 = green: + green = inString.toInt(); + // clear the string for new input: + inString = ""; + break; + } + currentColor++; + } + // if you get a newline, you know you've got + // the last color, i.e. blue: + if (inChar == '\n') { + blue = inString.toInt(); + + // set the levels of the LED. + // subtract value from 255 because a higher + // analogWrite level means a dimmer LED, since + // you're raising the level on the anode: + analogWrite(11, 255 - red); + analogWrite(9, 255 - green); + analogWrite(10, 255 - blue); + + // print the colors: + Serial.print("Red: "); + Serial.print(red); + Serial.print(", Green: "); + Serial.print(green); + Serial.print(", Blue: "); + Serial.println(blue); + + // clear the string for new input: + inString = ""; + // reset the color counter: + currentColor = 0; + } + +} + + +/* +Here's a Processing sketch that will draw a color wheel and send a serial + string with the color you click on: + + // Subtractive Color Wheel with Serial + // Based on a Processing example by Ira Greenberg. + // Serial output added by Tom Igoe + // + // The primaries are red, yellow, and blue. The secondaries are green, + // purple, and orange. The tertiaries are yellow-orange, red-orange, + // red-purple, blue-purple, blue-green, and yellow-green. + // + // Create a shade or tint of the subtractive color wheel using + // SHADE or TINT parameters. + + // Updated 29 November 2010. + + + + import processing.serial.*; + + int segs = 12; + int steps = 6; + float rotAdjust = TWO_PI / segs / 2; + float radius; + float segWidth; + float interval = TWO_PI / segs; + + Serial myPort; + + void setup() { + size(200, 200); + background(127); + smooth(); + ellipseMode(RADIUS); + noStroke(); + // make the diameter 90% of the sketch area + radius = min(width, height) * 0.45; + segWidth = radius / steps; + + // swap which line is commented out to draw the other version + // drawTintWheel(); + drawShadeWheel(); + // open the first serial port in your computer's list + myPort = new Serial(this, Serial.list()[0], 9600); + } + + + void drawShadeWheel() { + for (int j = 0; j < steps; j++) { + color[] cols = { + color(255-(255/steps)*j, 255-(255/steps)*j, 0), + color(255-(255/steps)*j, (255/1.5)-((255/1.5)/steps)*j, 0), + color(255-(255/steps)*j, (255/2)-((255/2)/steps)*j, 0), + color(255-(255/steps)*j, (255/2.5)-((255/2.5)/steps)*j, 0), + color(255-(255/steps)*j, 0, 0), + color(255-(255/steps)*j, 0, (255/2)-((255/2)/steps)*j), + color(255-(255/steps)*j, 0, 255-(255/steps)*j), + color((255/2)-((255/2)/steps)*j, 0, 255-(255/steps)*j), + color(0, 0, 255-(255/steps)*j), + color(0, 255-(255/steps)*j, (255/2.5)-((255/2.5)/steps)*j), + color(0, 255-(255/steps)*j, 0), + color((255/2)-((255/2)/steps)*j, 255-(255/steps)*j, 0) + }; + for (int i = 0; i < segs; i++) { + fill(cols[i]); + arc(width/2, height/2, radius, radius, + interval*i+rotAdjust, interval*(i+1)+rotAdjust); + } + radius -= segWidth; + } + } + + + void drawTintWheel() { + for (int j = 0; j < steps; j++) { + color[] cols = { + color((255/steps)*j, (255/steps)*j, 0), + color((255/steps)*j, ((255/1.5)/steps)*j, 0), + color((255/steps)*j, ((255/2)/steps)*j, 0), + color((255/steps)*j, ((255/2.5)/steps)*j, 0), + color((255/steps)*j, 0, 0), + color((255/steps)*j, 0, ((255/2)/steps)*j), + color((255/steps)*j, 0, (255/steps)*j), + color(((255/2)/steps)*j, 0, (255/steps)*j), + color(0, 0, (255/steps)*j), + color(0, (255/steps)*j, ((255/2.5)/steps)*j), + color(0, (255/steps)*j, 0), + color(((255/2)/steps)*j, (255/steps)*j, 0) + }; + for (int i = 0; i < segs; i++) { + fill(cols[i]); + arc(width/2, height/2, radius, radius, + interval*i+rotAdjust, interval*(i+1)+rotAdjust); + } + radius -= segWidth; + } + } + + void draw() { + // nothing happens here + } + + void mouseReleased() { + // get the color of the mouse position's pixel: + color targetColor = get(mouseX, mouseY); + // get the component values: + int r = int(red(targetColor)); + int g = int(green(targetColor)); + int b = int(blue(targetColor)); + // make a comma-separated string: + String colorString = r + "," + g + "," + b + "\n"; + // send it out the serial port: + myPort.write(colorString ); + } + +*/ + + + + + + + + + + diff --git a/build/shared/examples/09. USB (Leonardo only)/Keyboard/KeyboardLogout/KeyboardLogout.ino b/build/shared/examples/09.USB(Leonardo)/Keyboard/KeyboardLogout/KeyboardLogout.ino similarity index 100% rename from build/shared/examples/09. USB (Leonardo only)/Keyboard/KeyboardLogout/KeyboardLogout.ino rename to build/shared/examples/09.USB(Leonardo)/Keyboard/KeyboardLogout/KeyboardLogout.ino diff --git a/build/shared/examples/09. USB (Leonardo only)/Keyboard/KeyboardMessage/KeyboardMessage.ino b/build/shared/examples/09.USB(Leonardo)/Keyboard/KeyboardMessage/KeyboardMessage.ino similarity index 100% rename from build/shared/examples/09. USB (Leonardo only)/Keyboard/KeyboardMessage/KeyboardMessage.ino rename to build/shared/examples/09.USB(Leonardo)/Keyboard/KeyboardMessage/KeyboardMessage.ino diff --git a/build/shared/examples/09. USB (Leonardo only)/Keyboard/KeyboardReprogram/KeyboardReprogram.ino b/build/shared/examples/09.USB(Leonardo)/Keyboard/KeyboardReprogram/KeyboardReprogram.ino similarity index 100% rename from build/shared/examples/09. USB (Leonardo only)/Keyboard/KeyboardReprogram/KeyboardReprogram.ino rename to build/shared/examples/09.USB(Leonardo)/Keyboard/KeyboardReprogram/KeyboardReprogram.ino diff --git a/build/shared/examples/09. USB (Leonardo only)/Keyboard/KeyboardSerial/KeyboardSerial.ino b/build/shared/examples/09.USB(Leonardo)/Keyboard/KeyboardSerial/KeyboardSerial.ino similarity index 100% rename from build/shared/examples/09. USB (Leonardo only)/Keyboard/KeyboardSerial/KeyboardSerial.ino rename to build/shared/examples/09.USB(Leonardo)/Keyboard/KeyboardSerial/KeyboardSerial.ino diff --git a/build/shared/examples/09. USB (Leonardo only)/KeyboardAndMouseControl/KeyboardAndMouseControl.ino b/build/shared/examples/09.USB(Leonardo)/KeyboardAndMouseControl/KeyboardAndMouseControl.ino similarity index 100% rename from build/shared/examples/09. USB (Leonardo only)/KeyboardAndMouseControl/KeyboardAndMouseControl.ino rename to build/shared/examples/09.USB(Leonardo)/KeyboardAndMouseControl/KeyboardAndMouseControl.ino diff --git a/build/shared/examples/09. USB (Leonardo only)/Mouse/ButtonMouseControl/ButtonMouseControl.ino b/build/shared/examples/09.USB(Leonardo)/Mouse/ButtonMouseControl/ButtonMouseControl.ino similarity index 100% rename from build/shared/examples/09. USB (Leonardo only)/Mouse/ButtonMouseControl/ButtonMouseControl.ino rename to build/shared/examples/09.USB(Leonardo)/Mouse/ButtonMouseControl/ButtonMouseControl.ino diff --git a/build/shared/examples/09. USB (Leonardo only)/Mouse/JoystickMouseControl/JoystickMouseControl.ino b/build/shared/examples/09.USB(Leonardo)/Mouse/JoystickMouseControl/JoystickMouseControl.ino similarity index 100% rename from build/shared/examples/09. USB (Leonardo only)/Mouse/JoystickMouseControl/JoystickMouseControl.ino rename to build/shared/examples/09.USB(Leonardo)/Mouse/JoystickMouseControl/JoystickMouseControl.ino diff --git a/build/shared/examples/1.Basics/AnalogReadSerial/AnalogReadSerial.ino b/build/shared/examples/1.Basics/AnalogReadSerial/AnalogReadSerial.ino deleted file mode 100644 index 2ba6fa73b..000000000 --- a/build/shared/examples/1.Basics/AnalogReadSerial/AnalogReadSerial.ino +++ /dev/null @@ -1,15 +0,0 @@ -/* - AnalogReadSerial - Reads an analog input on pin 0, prints the result to the serial monitor - - This example code is in the public domain. - */ - -void setup() { - Serial.begin(9600); -} - -void loop() { - int sensorValue = analogRead(A0); - Serial.println(sensorValue); -} diff --git a/build/shared/examples/1.Basics/Blink/Blink.ino b/build/shared/examples/1.Basics/Blink/Blink.ino deleted file mode 100644 index 1953c3908..000000000 --- a/build/shared/examples/1.Basics/Blink/Blink.ino +++ /dev/null @@ -1,19 +0,0 @@ -/* - Blink - Turns on an LED on for one second, then off for one second, repeatedly. - - This example code is in the public domain. - */ - -void setup() { - // initialize the digital pin as an output. - // Pin 13 has an LED connected on most Arduino boards: - pinMode(13, OUTPUT); -} - -void loop() { - digitalWrite(13, HIGH); // set the LED on - delay(1000); // wait for a second - digitalWrite(13, LOW); // set the LED off - delay(1000); // wait for a second -} diff --git a/build/shared/examples/1.Basics/DigitalReadSerial/DigitalReadSerial.ino b/build/shared/examples/1.Basics/DigitalReadSerial/DigitalReadSerial.ino deleted file mode 100644 index 68e4dc966..000000000 --- a/build/shared/examples/1.Basics/DigitalReadSerial/DigitalReadSerial.ino +++ /dev/null @@ -1,19 +0,0 @@ -/* - DigitalReadSerial - Reads a digital input on pin 2, prints the result to the serial monitor - - This example code is in the public domain. - */ - -void setup() { - Serial.begin(9600); - pinMode(2, INPUT); -} - -void loop() { - int sensorValue = digitalRead(2); - Serial.println(sensorValue); -} - - - diff --git a/build/shared/examples/4.Communication/SerialCallResponse/SerialCallResponse.ino b/build/shared/examples/4.Communication/SerialCallResponse/SerialCallResponse.ino deleted file mode 100644 index e15031e8b..000000000 --- a/build/shared/examples/4.Communication/SerialCallResponse/SerialCallResponse.ino +++ /dev/null @@ -1,211 +0,0 @@ -/* - Serial Call and Response - Language: Wiring/Arduino - - This program sends an ASCII A (byte of value 65) on startup - and repeats that until it gets some data in. - Then it waits for a byte in the serial port, and - sends three sensor values whenever it gets a byte in. - - Thanks to Greg Shakar and Scott Fitzgerald for the improvements - - The circuit: - * potentiometers attached to analog inputs 0 and 1 - * pushbutton attached to digital I/O 2 - - Created 26 Sept. 2005 - by Tom Igoe - modified 30 Aug 2011 - by Tom Igoe and Scott Fitzgerald - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/SerialCallResponse - - */ - -int firstSensor = 0; // first analog sensor -int secondSensor = 0; // second analog sensor -int thirdSensor = 0; // digital sensor -int inByte = 0; // incoming serial byte - -void setup() -{ - // start serial port at 9600 bps: - Serial.begin(9600); - pinMode(2, INPUT); // digital sensor is on digital pin 2 - establishContact(); // send a byte to establish contact until receiver responds -} - -void loop() -{ - // if we get a valid byte, read analog ins: - if (Serial.available() > 0) { - // get incoming byte: - inByte = Serial.read(); - // read first analog input, divide by 4 to make the range 0-255: - firstSensor = analogRead(A0)/4; - // delay 10ms to let the ADC recover: - delay(10); - // read second analog input, divide by 4 to make the range 0-255: - secondSensor = analogRead(1)/4; - // read switch, map it to 0 or 255L - thirdSensor = map(digitalRead(2), 0, 1, 0, 255); - // send sensor values: - Serial.write(firstSensor); - Serial.write(secondSensor); - Serial.write(thirdSensor); - } -} - -void establishContact() { - while (Serial.available() <= 0) { - Serial.print('A'); // send a capital A - delay(300); - } -} - -/* -Processing sketch to run with this example: - -// This example code is in the public domain. - -import processing.serial.*; - -int bgcolor; // Background color -int fgcolor; // Fill color -Serial myPort; // The serial port -int[] serialInArray = new int[3]; // Where we'll put what we receive -int serialCount = 0; // A count of how many bytes we receive -int xpos, ypos; // Starting position of the ball -boolean firstContact = false; // Whether we've heard from the microcontroller - -void setup() { - size(256, 256); // Stage size - noStroke(); // No border on the next thing drawn - - // Set the starting position of the ball (middle of the stage) - xpos = width/2; - ypos = height/2; - - // Print a list of the serial ports, for debugging purposes: - println(Serial.list()); - - // I know that the first port in the serial list on my mac - // is always my FTDI adaptor, so I open Serial.list()[0]. - // On Windows machines, this generally opens COM1. - // Open whatever port is the one you're using. - String portName = Serial.list()[0]; - myPort = new Serial(this, portName, 9600); -} - -void draw() { - background(bgcolor); - fill(fgcolor); - // Draw the shape - ellipse(xpos, ypos, 20, 20); -} - -void serialEvent(Serial myPort) { - // read a byte from the serial port: - int inByte = myPort.read(); - // if this is the first byte received, and it's an A, - // clear the serial buffer and note that you've - // had first contact from the microcontroller. - // Otherwise, add the incoming byte to the array: - if (firstContact == false) { - if (inByte == 'A') { - myPort.clear(); // clear the serial port buffer - firstContact = true; // you've had first contact from the microcontroller - myPort.write('A'); // ask for more - } - } - else { - // Add the latest byte from the serial port to array: - serialInArray[serialCount] = inByte; - serialCount++; - - // If we have 3 bytes: - if (serialCount > 2 ) { - xpos = serialInArray[0]; - ypos = serialInArray[1]; - fgcolor = serialInArray[2]; - - // print the values (for debugging purposes only): - println(xpos + "\t" + ypos + "\t" + fgcolor); - - // Send a capital A to request new sensor readings: - myPort.write('A'); - // Reset serialCount: - serialCount = 0; - } - } -} -*/ - -/* -Max/MSP version 5 patch to run with this example: - -----------begin_max5_patcher---------- -2569.3oc2as0jiZqD9YO+Jzw09PRc75BIAX671TaUop8gy4gLoNmG1YqsjAY -rxhAGPLW1T4+dZIAd.aCFeiEuYqXFABQqu9qa0Rp0ec2fgyiegmND8KnOgFL -3utav.8sT2XPd4ACWwdwKjkpq1vU7zTV.e3Hyyj7Wj5665Tbq3LYHWJecM2z -tCGh9b9iVyjdKEQAeIg6IMOkRmM1ZDx10UcgRF6LBgmN1Zy6H70se77+38yJ -9DKhijQrU5Ovv6SDrvhmDksRDAedsvRJU8Tw2zUGSfuyl5ZjUckwpa922cm5 -mQsDLh3OCx0NXQJODgqENlyhBFNpkvBchFVzfCwZ+vh60DVHm.r3EuZEORtC -t7.WISnOvBCe+uwSWGGkxQnGidL5AdjeJhgl+pjifuNRtjiRMUecbhbDhE4i -R3LnVTcsRQhnwHzCfXhVDmvChyfZ3EGFmLB8x53Tyq7J7Wn3EPS6IR7B4nrT -.n0M+SrvLnYR3xrjHtOZQR7ps+tiMh2+MVx+EzuuTjhz5JDzSy.KAn5Lir5y -eR3AhdjtTL7SBB5SpO8VMIBZjfXsPDC2GpCCojIP1L89EFIC45f9o6e3Ce7i -n6+YUCmJYIxr0iA4.ZvuxUxwyLgo+ajDUCLR8AizsLfnQn7l.8LbW9SfXIjv -qAZdzJ.1P9LIartS5AvqDvArM590I.ayZ1iQyeE8fWrTh9Ug7aA7DVnuFW+c -.q9XP7F+.ghHtGnBzJZLtdhsskshK6PLV85BXmZL3cNRlM9XX1VWPlsLQD.n -C5m.Mwmje9mUpDOE4RDrT99P9BIPMidBdUAP5AV08ggFdSB6YEWPgoqShg2Q -yOeV.OeIa8ZPSNmq32n+C6Efq9m.kETcfimb96Xz+WotkJtYgTrPjvA9Onn2 -gE.bNV5WQ2m3mIhh0LmRs0d0lz5UlDiWJGKGs1jXtTixz8lQalvEQBIHVvGM -UqlBXJONOqQZi2BvfjosuWrWPiTOngmXo8oatfoZPiZWCnYeq.ZdK4desvWD -GXYdBQtmLvk1iCu+wgJ12bdfHBLF.QNyioLGTVCKjJGSFPW8vUYQBySUtKWw -70t0f+bdXr2WQoKy.i.+3miNZJqsqA8czvNgRajxR6aneMQbrF.XkqDMzaFo -6wgmV.YDrNjCWaC.4psvwypAfH6Ef9e7DeVDauPDcePjUcAkUVN4I4.SNx.s -gHTMjVJvSJU6ACeq23nGfYlsoKYYT1khiBv6.Ekhq6SVE2zmu3XZiXvO8a0W -WiJ+Tslhn0f+YvFRSv296xxBkeY+fS0muf4wq8kqQULXXPhvONRIFUdW0sK9 -f.Gvn6cJK45ZDwVumWVFGGNmk7jHULOjWQS.rYVjXE39TJLRDDWQwCEqVmHL -VratGOhAswxTuj3vvJMk4IOsmmXB95YgubotsdCupL8lRLmJ1YUteiS2opQ2 -hjf4.H4T7+kqT81b0Fw+DGSrPZRyro5Bk7Kssom8jxeuZ8OUa3+6ZDhG6LyA -OcR0Wb6oHMnvok4OFcs.VK0+NOHkjCoF5ryrCBot2zPZkwF1cFoJVZy.ZwLS -2YFp0xYsLwvXtXlBOA2..6TK.ukep5FYsgQW2C5R6FzcMChIw5RvXMF+4DV7 -TqCBnzSFPsOE.sinq+afR0HPpG03PV+UHm1GFKImLVR9QGKycj1ZnDe6BkMM -vDDVMKYDZMCvrXXtMn2gQuifdGE8N6KhgewExAGpx5ldnJs7b1rRmIpUKNmN -taHqauXRSqETZfYU5IEy7U0fC6cfAlT137vnwrenQCp0QgFtV8Tzv74FdfQ5 -HSGSg+y1dj9uaWWF2pXs1ZIKNht7aScTs1L0LKLcuQ878iEowYIdE58h.dPU -6S97ToHZybo+zaNH2phKE99Um4pFtE9qiAJUt.h9bqzdGsb6zV41s+I231H2 -S5WxMts3shPQ5OxM4XjaZuQtUCt1d415FTtw8K4d1wf23aP4lzqvaWq1J2N8 -K+fsUtc6W768LL3sgbO46gbmeSnCX1tjT1Sb+u.eFHDwuvjxDw7LoIDrxaex -4uaBM9vCsYFAgwyYg4asylVoRauiTscac2aHwkYmzrpcWyJOsi8NkCb995N8 -sLYptT1wYxMRpL8udeCYxzAQjolDBf51BDw4FAQToB.LfJ9DS2MCjju8ylcV -rVHwtuAIx3ffP9YyGLoKhY8JpsySabC1u1pWqSS8hM6RrcqTuV2PoyXCo2Y6 -xmwbduYKMroMAL1S6aIzXnmesc+PQpT08KtpLBF0xbrXV9pz3t4x9vC5rivT -v9xo2kpTPLrQq8Qsydvwjze1js23fJcSmiNWRveuxj0mXga7OsuEl1jTWtlt -sIGdqqaiut85SJIixVMmmbHEu1tuIkus6jRnfiaiJ+aJcOoAcusILPWyfbGP -2Os+o7anaianaSlRZc2lX8CKmmZWFFZlySH8OR+EBFJFfKGFbZDF5g190LhX -Vzao5wgvnRWZAR4XxF37zsrVnZ10EpnWNn5agnfj3r0HZ8QR2xnGrMAMNA23 -.HG+3njuSrHHdZnKBbnCeFgZWr0XSbU4YgEooXqoVWyLZldIym7PAXpsjmvU -oMtWXbJe6iRSCCGQMo4MYlgzX03Anh3dyjj8U.EUh3dLXxz7T51oMXxj9FlT -2IOTSMNwUiI2xwvRn6jfnU.Dbea550AH5SYF6TONl1k3H13lPDbu67XVmYyG -pX1DvA3Aolut5joTx1Isov5yWzJCIgXMoQim9lsyYtvcDhwzHOPNRwu6kUf+ -9rvc+4JtLI9sjcrlAUaQ2rXfTmlTwXxMi6.8Yr3z7FjuBlFRuYY7q0a.8lY4 -L0F7LzLWKqyZ0sx4KTrloLswU6EeUOHeWx02323L+Buhhn0YRz7rEKTmm4m3 -IuBFXnUhPv6I2KNxO8nO8iTy4IKeo.sZ5vOhuYNwnlAXTGna0gztokIwrj.X -WCLfabXDbmECl9qWMO8Lvw16+cNnry9dWIsNpYKuUl.kpzNa2892p6czPsUj -bnsPlbONQhByHUkxwTr5B0d5lRmov51BYcVmBeTbKDIpS2JSUxFwZjIxrtWl -tzTehEUwrbLqlH1rP5UKkmgyDplCpKctFLSZQOYKqpCawfmYRR+7oXYuoz4h -6VsQZmzstbZCWvw9z74XN+h1NlSrdkRTmxnqtTW37zoas9IsxgNoakIRakIb -24QpshDoyDI21.Szt0w8V1g0jNmS6TYBa2VGHGAcpXHByvG1jYaJ0INIrNM2 -cj7kmjtozYJsaoJuLCuctHXaFDaqHw5GbPqN0klNltCF3WG65uMy4gP6dYhb -H9T2RmZ07HNRmD4tzv4KbOAuozkHpxCQzvc7LLZiSBR25jffuBy5IWORw5KE -CagO+YWiuFKOA0VOzDY5zRRqtz4Jszqgz5ZjVWqxRqpTWXei6VWyXx0d4nfB -+8c+C81VE7B ------------end_max5_patcher----------- - - -*/ diff --git a/build/shared/examples/4.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino b/build/shared/examples/4.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino deleted file mode 100644 index 1cfc5d446..000000000 --- a/build/shared/examples/4.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino +++ /dev/null @@ -1,224 +0,0 @@ -/* - Serial Call and Response in ASCII - Language: Wiring/Arduino - - This program sends an ASCII A (byte of value 65) on startup - and repeats that until it gets some data in. - Then it waits for a byte in the serial port, and - sends three ASCII-encoded, comma-separated sensor values, - truncated by a linefeed and carriage return, - whenever it gets a byte in. - - Thanks to Greg Shakar and Scott Fitzgerald for the improvements - - The circuit: - * potentiometers attached to analog inputs 0 and 1 - * pushbutton attached to digital I/O 2 - - - - Created 26 Sept. 2005 - by Tom Igoe - modified 26 Oct 2011 - by Tom Igoe and Scott Fitzgerald - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/SerialCallResponseASCII - - */ - -int firstSensor = 0; // first analog sensor -int secondSensor = 0; // second analog sensor -int thirdSensor = 0; // digital sensor -int inByte = 0; // incoming serial byte - -void setup() -{ - // start serial port at 9600 bps: - Serial.begin(9600); - pinMode(2, INPUT); // digital sensor is on digital pin 2 - establishContact(); // send a byte to establish contact until receiver responds -} - -void loop() -{ - // if we get a valid byte, read analog ins: - if (Serial.available() > 0) { - // get incoming byte: - inByte = Serial.read(); - // read first analog input: - firstSensor = analogRead(A0); - // read second analog input: - secondSensor = analogRead(A1); - // read switch, map it to 0 or 255L - thirdSensor = map(digitalRead(2), 0, 1, 0, 255); - // send sensor values: - Serial.print(firstSensor); - Serial.print(","); - Serial.print(secondSensor); - Serial.print(","); - Serial.println(thirdSensor); - } -} - -void establishContact() { - while (Serial.available() <= 0) { - Serial.println("0,0,0"); // send an initial string - delay(300); - } -} - - -/* -Processing code to run with this example: - -// This example code is in the public domain. - -import processing.serial.*; // import the Processing serial library -Serial myPort; // The serial port - -float bgcolor; // Background color -float fgcolor; // Fill color -float xpos, ypos; // Starting position of the ball - -void setup() { - size(640,480); - - // List all the available serial ports - println(Serial.list()); - - // I know that the first port in the serial list on my mac - // is always my Arduino module, so I open Serial.list()[0]. - // Change the 0 to the appropriate number of the serial port - // that your microcontroller is attached to. - myPort = new Serial(this, Serial.list()[0], 9600); - - // read bytes into a buffer until you get a linefeed (ASCII 10): - myPort.bufferUntil('\n'); - - // draw with smooth edges: - smooth(); -} - -void draw() { - background(bgcolor); - fill(fgcolor); - // Draw the shape - ellipse(xpos, ypos, 20, 20); -} - -// serialEvent method is run automatically by the Processing applet -// whenever the buffer reaches the byte value set in the bufferUntil() -// method in the setup(): - -void serialEvent(Serial myPort) { - // read the serial buffer: - String myString = myPort.readStringUntil('\n'); - // if you got any bytes other than the linefeed: - myString = trim(myString); - - // split the string at the commas - // and convert the sections into integers: - int sensors[] = int(split(myString, ',')); - - // print out the values you got: - for (int sensorNum = 0; sensorNum < sensors.length; sensorNum++) { - print("Sensor " + sensorNum + ": " + sensors[sensorNum] + "\t"); - } - // add a linefeed after all the sensor values are printed: - println(); - if (sensors.length > 1) { - xpos = map(sensors[0], 0,1023,0,width); - ypos = map(sensors[1], 0,1023,0,height); - fgcolor = sensors[2]; - } - // send a byte to ask for more data: - myPort.write("A"); - } - -*/ - -/* - -Max/MSP version 5 patch to run with this example: - -----------begin_max5_patcher---------- -3365.3oc4bk0iiaiD9Y2+J3JLOrAq6Fhj5LOscRP.lGxtCxDr6CYBFHaQaqL -xRNRzcOcBx+8s3grkZac31Vr8jMASKScPU7qNXUTUw+3lIVyx+LqzB80neFM -YxebyjIxSINwDc6IVqi977znR4sYMOe8ZVF2Zp5Zb1m4pyuJOujghPkrhjnT -zl7BNZQQ9ZDeURIBdlsUOyh7LdYxuyDOGlbms9zYaWmjkx3x2Cd+Iy2xqNa0 -stIhOeUR1xOVvlyUTuuqOzSHRfs7fspEz.8K5GJIVRn4y90ao90okrn0RZw5 -dAkaItvedyMh+LcffRF6QnaO.SzPQnmsM5eFskmmugkgrOebfzNNPbbDibJU -hCXG2tvArSEsn5b9SaXptwJQviQVV6drKCRslUVFsjcn3SJH8bJ.C4n.Ctcf -gRjhDTaO4gPI7DbbbgfaEWtz.RKhNR7XVT1xSASrOYLITJrfUG75VVwqULQR -mlAWRyihOUXAepvhiGsNrX2ErPbtFfkMELvzRrzp6nBM9Dk5CUJq3G1IzDXL -snsuz4WR3r054+rduzb86jPHxZp3OyxyWK92seS5VFX+lu5128c2e6s3c2w9 -K7C4wr0G47hG38OkMe2k99jB12m9zsgem+2b66e261CFMYCz1YCdJ7WaLiX2 -oHJE2qU9FV5EWWiIlU5MZi3vnJ+pANhxagvfNwMxq8r.bz7TVTw3pQqkgHRa -dNzNQDZqHhhPMCr.JsEFQJQgIjt8kz40VJo.dwrKjoeRufBNTZrwizInztyB -igWks.LhvOJeBLfmd4jVlmmlWnFJXABXeWPnMNzS7Ka8uv0.ki4htxQK2.0b -nNcAj9u1BWI77nSA8nlB8TBfNdcgdAcNwmY.veOEsDzP2b9A2P5GTTg031oQ -bmqAUyRVJP7HrMBSOekyN7ThXqfDao7le2g3X2su7S2ezTwE64NtAE6Js93D -HQGJ4N21CJN701TDHyfvipZTEb3JssP6z1hWuxJWZXoskdSE2B5aiRSu8GYk -axyJYn6e+2912h9P1GxdO3ScIJBM6IvKAfXQ7Ur5qR2TTD36cAKBtKp94XYP -vLwSQhWoXI81DUDwYwHTR1TDuXa1bYyYOA8aZRFaAiEeG5sx9NCtedIZQdAa -Y9VnqkF8mh97l7R065I3Wn7EvyNOo.bbDssD3CR55gHHtoRfZ3aKxf2fdEDa -Pv2gjiq+UNm80neRr5hRVIBvIHNvR31iTCxX1CIygwblrEDKFq.Ihy.d0OqK -QPmrLWRD4v4EwhfDzDPaJXaghxPdtn+tBht+qDcbIOpfucyc.c.c3mXB53wn -D03WQIhNXZEvHYEYZT9dzivYYO.jUBGdLPhFsFfMTbDO5N4fbNvWDHM1Ac+l -BQjdgeHCf82OOmyQeeB+2WxJhRik35OAX0aWly9P11MwxGihQ+6477YLwih2 -o7HXYyAdiT9ASGy0k0QY3UpP45nVTx.uiqR4ZYD8EdQxR.0P+cfC8y7e4qDr -p4Bgtjkq32lxV.gckm8.7nIfpDHsceZpRdpH5QgLh.q2TjCOiTt8wD35qjAu -hlwDx8neH5yfL7uAhx.KELmokquC8eEhAxUDuhJVjTv.8BP.3.oCPVLp7Sn6 -Kh2ljkKknp0WGkYNp7Rhx7nGQNKpi9PKSW3YHtYAKIKgCcJLZKkrokfneoT0 -Bosh.JpQR89EGEzHiIngUt4SUGv5EtwoEPywLf17Ur4epxFECjxlmjnsvAl5 -.gLA9Hj+lwVljImFXaVBXzGzHDJDK3BaVJbu4UEVRWGEKs3A+bVZ97OgJWsE -zChyeL6UPp0wWEo.VYHpximVX.Ti7kg1f9fkvZhD8USB9Aqi5Zi8KILqio6R -knfudQ98Te+ivVPgSdku9Orh3nrcQJJI.VgFXzHC7HIohY6JA4jZj6DKv1Ys -SOo1iHfyeUExn6zcmBrFVTuCl.VAdHo54CUmDXR2TcwJTPw70qquZ1HmfZN3 -ArykBIVVbMgpIVwrEmReH9Le6ueaUft09Sy6LIaCLC.nkJ0ed96MZaJ+iGWh -n40WDMm05C2BeZh0xhj37LAYz3YEmt5EJr6qzbpS4x6HKZyQdXddd5rnBACY -VJqAiFTVhxRVCFn4IJJB7no5hIq2TjnLHr6brrHnOVUNuHOMsQWotxCG4JJ2 -9dLIluR1W6wqFes65RY0Uiab9NCS64q1zxY.H4V8u52TCFH9N2PWbfesqerv -VZW+t0vWTg2hcs2u310il6fUBvuNM1tpdW1CmTYSTqxMV.qs3+MOjRzPpREv -MrWH06pARaL0ygQRKjRaGP2M4aqS.29xvzp3o5yTgUG7TQWi6.Kc6DKacIYZ -e1Iyftah.Wdr6QhsC.14kJrpz60xpXclvzE.SeoBqlEP+GH7KBHe4Z8MjTc5 -GHIcBj0Wr4+uCK0FPGLThutfxtlXR9MOmh1DATUND8D5MXzaHn2PQuww7SUo -09qNP5cpJ6qlopjidq1PD6WLh3KVOasL2g9v97UeJ3zj7phsV77eA.FXRcMv -9Qiv+RiFT6SBM7ruNPC0a15zcMytmI7HA2Qg+ywYp72CCTZXptug79PGEK8S -KQgIIMw0ONVTlusXdEnWEACpIAFyJ4IY6hk9m2SqO6FWkDG2LxU0ZKDuIG3m -6R.pAw8NY516KT519KS51anzsHliqH5VXEdXzM4KT5FBAAgudn6fgR2WWx2C -mtoWW1SHmBcSudna7oP2jqG518.0sVna+qK4D2gh2dWWzMcnzs8Ejt0mr5Cf -XUF8.K9ivqA726iQbdQxrsbkKXM95LG6qHLde5gNuXee4iko4yhR0eloc8h0 -M6QhKyGpydjqII0WCNjtO8qZKeib8uBRlw+1sWhLvpqRuQGWlKd.Hh6U.hHR -1.vhpQPEpusJMZ5JuzbMW9nyyWtLcWNKdl0bklwS1UJKcLDo8v3u3r2w0LfN -GUcFD609pHMLsG07vrRdOb.0jhSfwSDyz4wmfPuSuIkQ.VuVKd6Nbzhpn8Lv -MMoTVHWUG2W8tWxhQxyEkNtEurRQvinxQGxy+XAMPC2WXsKW+iDbgRmpGhRo -iZ0s6pRoees+B9cALXqK7nFnxYWhBtpKE9.RswmqWmL9936cT2siCumLp7dc -dVNLdefk4F13QcXSB8G7vlX+EnLO00evx7DxqiPuAfgpDSTCCtcBCuR59sLi -31r5o5wkXi8vsWbxSU9k5D3rUfJrOfp0ClB7zU.lMBOp0+kda+fnbwpmpV80 -q9uZMQsSS.IrUrBY1XK2UPddsqLpVg0oT3tMZfNKIJhm0q.nH2TcLIlniNY2 -VMT2XxEdqFpsBETlEti5ZU4DVaTqlOtsREDatZErMYjusgLxRFWVoZkbQ8MT -SPobbkTv57KXHaJUDqq1EmQuoRgUKPAgT82ix6wFawY9s0LdQ9EYwH5evWMC -R2UPLwn6FPsYLPkG8ip0.s+GpEqRUorsZMf9paM3GYQwUp8IYa1xQy1tXgnb -PefU7jnLzWmjBlGXyyyhKMeQhoS4FsABkUi1pQLrgJrNkETQ8vJpw0wMVOer -x9RP+6pT3K7Dphw6rsbd9toOWkTkFS0dQUeiK7wvA5NbXVdQrptm1clkGtoW -3GDPnthe43a6FD7rM8hZkCzgEmNVAOOuVhNNGXGybmcoYPDKh8ihr39cmV7z -4fBRsAf8cjo09Se6UG9pMRMW+9WTeha26KES6+q5T0oKyxAZPH9VeLpXMMFK -MJLq5iEI.oJBLu8Ufm.OZ77fOQ1Rn34+P1W+kPXrawJ7qhXkOUMireP+hUgz -+BKVI63l4SoRJ644ofVV6f7SPrNA6SOkVxMARijz4v7R334jvAR9mDM4zCMQ -MJIQaj1LsASglGlr6ilLKN4ZO.ZBaaTZxe.jD08zHIhuiHwD7v5HCB105LI1 -fAPr9FE9bF.EEXTJBODgLmSjgpXgtjPYBmnXuxVWBhkbgIVM4o+9n0ZctDKd -Hpulc1.5P31Dr4oo9lN.a1oCFDuidhldItTUBXo2ze8105bmnfN.p08DoVGa -o1qiCtlUYYqyjZ8HCAaMK+dH.njtIlyiDxPoIr4noAiSFzKoAI76ZVZxcHzj -yKSgTsEm53Enxxs5snpsA.8cJaYhILbMqSTtCwIT2SzWcJUNwuCtNBJactl6 -F.wFd8ow38BmsvSI4Q205b8XNXDX1mK.ND23cLqe7CI9Uri4iy+RSSUgG5p+ -HIpz3nQKZUBfJEBksNW2AcFp8b7I6NnNwkbbb10xHTqsY8b.OBxBZWnopDbs -BOIm+BGfGCsIpqTxkZqhBPSshVmK0RGCp0OPE7taMpU15boVxUnkJ7PVQRyZ -PmNnvjLbn5zqPZZHV6nFdYVFhSeT5UHMYV8Nr2HrbTNZCrNXoAV8xrHZctyg -MDIM7IxUE6mpR5SM8u1pqn0kvKf9roQ8N0YETQVpJnPOhptBazRteTK1KOcT -a+8meDTjfQXFCepaMuunggpQRiV5jcsxuB+C9dg27m27+.7QBpFG ------------end_max5_patcher----------- - -*/ diff --git a/build/shared/examples/8.Strings/StringConstructors/StringConstructors.ino b/build/shared/examples/8.Strings/StringConstructors/StringConstructors.ino deleted file mode 100644 index ee7e8701c..000000000 --- a/build/shared/examples/8.Strings/StringConstructors/StringConstructors.ino +++ /dev/null @@ -1,64 +0,0 @@ -/* - String constructors - - Examples of how to create strings from other data types - - created 27 July 2010 - modified 30 Aug 2011 - by Tom Igoe - - http://arduino.cc/en/Tutorial/StringConstructors - - This example code is in the public domain. - */ - -void setup() { - Serial.begin(9600); -} - -void loop() { - // using a constant String: - String stringOne = "Hello String"; - Serial.println(stringOne); // prints "Hello String" - - // converting a constant char into a String: - stringOne = String('a'); - Serial.println(stringOne); // prints "a" - - // converting a constant string into a String object: - String stringTwo = String("This is a string"); - Serial.println(stringTwo); // prints "This is a string" - - // concatenating two strings: - stringOne = String(stringTwo + " with more"); - // prints "This is a string with more": - Serial.println(stringOne); - - // using a constant integer: - stringOne = String(13); - Serial.println(stringOne); // prints "13" - - // using an int and a base: - stringOne = String(analogRead(A0), DEC); - // prints "453" or whatever the value of analogRead(A0) is - Serial.println(stringOne); - - // using an int and a base (hexadecimal): - stringOne = String(45, HEX); - // prints "2d", which is the hexadecimal version of decimal 45: - Serial.println(stringOne); - - // using an int and a base (binary) - stringOne = String(255, BIN); - // prints "11111111" which is the binary value of 255 - Serial.println(stringOne); - - // using a long and a base: - stringOne = String(millis(), DEC); - // prints "123456" or whatever the value of millis() is: - Serial.println(stringOne); - - // do nothing while true: - while(true); - -} \ No newline at end of file diff --git a/build/shared/examples/8.Strings/StringReplace/StringReplace.ino b/build/shared/examples/8.Strings/StringReplace/StringReplace.ino deleted file mode 100644 index c906167d8..000000000 --- a/build/shared/examples/8.Strings/StringReplace/StringReplace.ino +++ /dev/null @@ -1,35 +0,0 @@ -/* - String replace() - - Examples of how to replace characters or substrings of a string - - created 27 July 2010 - by Tom Igoe - - http://arduino.cc/en/Tutorial/StringReplace - - This example code is in the public domain. - */ - -void setup() { - Serial.begin(9600); - Serial.println("\n\nString replace:"); -} - -void loop() { - String stringOne = ""; - Serial.println(stringOne); - // replace() changes all instances of one substring with another: - String stringTwo = stringOne.replace("<", " 0) { - inChar = Serial.read(); - } - - if (isDigit(inChar)) { - // convert the incoming byte to a char - // and add it to the string: - inString += (char)inChar; - } - - // if you get a comma, convert to a number, - // set the appropriate color, and increment - // the color counter: - if (inChar == ',') { - // do something different for each value of currentColor: - switch (currentColor) { - case 0: // 0 = red - red = inString.toInt(); - // clear the string for new input: - inString = ""; - break; - case 1: // 1 = green: - green = inString.toInt(); - // clear the string for new input: - inString = ""; - break; - } - currentColor++; - } - // if you get a newline, you know you've got - // the last color, i.e. blue: - if (inChar == '\n') { - blue = inString.toInt(); - - // set the levels of the LED. - // subtract value from 255 because a higher - // analogWrite level means a dimmer LED, since - // you're raising the level on the anode: - analogWrite(11, 255 - red); - analogWrite(9, 255 - green); - analogWrite(10, 255 - blue); - - // print the colors: - Serial.print("Red: "); - Serial.print(red); - Serial.print(", Green: "); - Serial.print(green); - Serial.print(", Blue: "); - Serial.println(blue); - - // clear the string for new input: - inString = ""; - // reset the color counter: - currentColor = 0; - - } - -} - - -/* -Here's a Processing sketch that will draw a color wheel and send a serial -string with the color you click on: - -// Subtractive Color Wheel with Serial -// Based on a Processing example by Ira Greenberg. -// Serial output added by Tom Igoe -// -// The primaries are red, yellow, and blue. The secondaries are green, -// purple, and orange. The tertiaries are yellow-orange, red-orange, -// red-purple, blue-purple, blue-green, and yellow-green. -// -// Create a shade or tint of the subtractive color wheel using -// SHADE or TINT parameters. - -// Updated 29 November 2010. - - - -import processing.serial.*; - -int segs = 12; -int steps = 6; -float rotAdjust = TWO_PI / segs / 2; -float radius; -float segWidth; -float interval = TWO_PI / segs; - -Serial myPort; - -void setup() { - size(200, 200); - background(127); - smooth(); - ellipseMode(RADIUS); - noStroke(); - // make the diameter 90% of the sketch area - radius = min(width, height) * 0.45; - segWidth = radius / steps; - - // swap which line is commented out to draw the other version - // drawTintWheel(); - drawShadeWheel(); - // open the first serial port in your computer's list - myPort = new Serial(this, Serial.list()[0], 9600); -} - - -void drawShadeWheel() { - for (int j = 0; j < steps; j++) { - color[] cols = { - color(255-(255/steps)*j, 255-(255/steps)*j, 0), - color(255-(255/steps)*j, (255/1.5)-((255/1.5)/steps)*j, 0), - color(255-(255/steps)*j, (255/2)-((255/2)/steps)*j, 0), - color(255-(255/steps)*j, (255/2.5)-((255/2.5)/steps)*j, 0), - color(255-(255/steps)*j, 0, 0), - color(255-(255/steps)*j, 0, (255/2)-((255/2)/steps)*j), - color(255-(255/steps)*j, 0, 255-(255/steps)*j), - color((255/2)-((255/2)/steps)*j, 0, 255-(255/steps)*j), - color(0, 0, 255-(255/steps)*j), - color(0, 255-(255/steps)*j, (255/2.5)-((255/2.5)/steps)*j), - color(0, 255-(255/steps)*j, 0), - color((255/2)-((255/2)/steps)*j, 255-(255/steps)*j, 0) - }; - for (int i = 0; i < segs; i++) { - fill(cols[i]); - arc(width/2, height/2, radius, radius, - interval*i+rotAdjust, interval*(i+1)+rotAdjust); - } - radius -= segWidth; - } -} - - -void drawTintWheel() { - for (int j = 0; j < steps; j++) { - color[] cols = { - color((255/steps)*j, (255/steps)*j, 0), - color((255/steps)*j, ((255/1.5)/steps)*j, 0), - color((255/steps)*j, ((255/2)/steps)*j, 0), - color((255/steps)*j, ((255/2.5)/steps)*j, 0), - color((255/steps)*j, 0, 0), - color((255/steps)*j, 0, ((255/2)/steps)*j), - color((255/steps)*j, 0, (255/steps)*j), - color(((255/2)/steps)*j, 0, (255/steps)*j), - color(0, 0, (255/steps)*j), - color(0, (255/steps)*j, ((255/2.5)/steps)*j), - color(0, (255/steps)*j, 0), - color(((255/2)/steps)*j, (255/steps)*j, 0) - }; - for (int i = 0; i < segs; i++) { - fill(cols[i]); - arc(width/2, height/2, radius, radius, - interval*i+rotAdjust, interval*(i+1)+rotAdjust); - } - radius -= segWidth; - } -} - -void draw() { - // nothing happens here -} - -void mouseReleased() { - // get the color of the mouse position's pixel: - color targetColor = get(mouseX, mouseY); - // get the component values: - int r = int(red(targetColor)); - int g = int(green(targetColor)); - int b = int(blue(targetColor)); - // make a comma-separated string: - String colorString = r + "," + g + "," + b + "\n"; - // send it out the serial port: - myPort.write(colorString ); -} - - -*/ - - - - - - - - - - diff --git a/build/shared/examples/ArduinoISP/ArduinoISP.ino b/build/shared/examples/ArduinoISP/ArduinoISP.ino index b4e6eae28..9ed0bc7df 100644 --- a/build/shared/examples/ArduinoISP/ArduinoISP.ino +++ b/build/shared/examples/ArduinoISP/ArduinoISP.ino @@ -66,7 +66,7 @@ void pulse(int pin, int times); void setup() { - Serial.begin(9600); + Serial.begin(19200); pinMode(LED_PMODE, OUTPUT); pulse(LED_PMODE, 2); pinMode(LED_ERR, OUTPUT); @@ -109,7 +109,7 @@ void heartbeat() { if (hbval < 32) hbdelta = -hbdelta; hbval += hbdelta; analogWrite(LED_HB, hbval); - delay(40); + delay(20); } diff --git a/build/shared/lib/keywords.txt b/build/shared/lib/keywords.txt index e69248cfb..396a1f51d 100644 --- a/build/shared/lib/keywords.txt +++ b/build/shared/lib/keywords.txt @@ -3,6 +3,7 @@ HIGH LITERAL1 Constants LOW LITERAL1 Constants INPUT LITERAL1 Constants +INPUT_PULLUP LITERAL1 Constants OUTPUT LITERAL1 Constants DEC LITERAL1 Serial_Print BIN LITERAL1 Serial_Print @@ -30,6 +31,7 @@ byte KEYWORD1 Byte case KEYWORD1 SwitchCase char KEYWORD1 Char class KEYWORD1 +const KEYWORD1 Const continue KEYWORD1 Continue default KEYWORD1 SwitchCase do KEYWORD1 DoWhile @@ -181,5 +183,17 @@ parseFloat KEYWORD2 readBytes KEYWORD2 readBytesUntil KEYWORD2 +# USB-related keywords + +Keyboard KEYWORD3 +Mouse KEYWORD3 +press KEYWORD2 +release KEYWORD2 +releaseAll KEYWORD2 +accept KEYWORD2 +click KEYWORD2 +move KEYWORD2 +isPressed KEYWORD2 + setup KEYWORD3 Setup loop KEYWORD3 Loop diff --git a/build/shared/lib/preferences.txt b/build/shared/lib/preferences.txt index 524d78dc5..16290aa0d 100755 --- a/build/shared/lib/preferences.txt +++ b/build/shared/lib/preferences.txt @@ -76,11 +76,16 @@ editor.window.width.default = 500 editor.window.height.default = 600 editor.window.width.min = 400 -editor.window.height.min = 500 +editor.window.height.min = 290 + +# the following commented out to better support netbooks +# http://code.google.com/p/arduino/issues/detail?id=52 +#editor.window.height.min = 500 # tested as approx 440 on OS X -editor.window.height.min.macosx = 450 +#editor.window.height.min.macosx = 450 # tested to be 515 on Windows XP, this leaves some room -editor.window.height.min.windows = 530 +#editor.window.height.min.windows = 530 + # font size for editor editor.font=Monospaced,plain,12 @@ -245,9 +250,15 @@ software=ARDUINO programmer = arduino:avrispmkii upload.using = bootloader +upload.verify = true serial.port=COM1 serial.databits=8 serial.stopbits=1 serial.parity=N serial.debug_rate=9600 + +# I18 Preferences + +# default chosen language (none for none) +editor.languages.current = diff --git a/build/shared/reference.zip b/build/shared/reference.zip index e358bae39..f4e6edcb4 100644 Binary files a/build/shared/reference.zip and b/build/shared/reference.zip differ diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 7590cac52..33340d012 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -1,3 +1,122 @@ +ARDUINO 1.0.1 - 2012.05.21 + +[environment] + +* The IDE has been internationalized and translated into multiple languages. + Thanks to Shigeru Kanemoto for the internationalization and Japanese + translation and many others for the other translations. For more + information, see: http://arduino.cc/playground/Main/LanguagesIDE + +* Added preference for selecting the language in which to display the + Arduino software. Defaults to the operating system locale. + +* New upload process for the Arduino Leonardo (ATmega32U4). + +* The editor font size preference now applies to the serial monitor and + error / message console as well as the editor. (Paul Stoffregen) + http://code.google.com/p/arduino/issues/detail?id=550 + +* Compilation has been speeded up by only compiling changed files. (All + files are recompiled when a new board is selected.) (Paul Stoffregen) + http://code.google.com/p/arduino/issues/detail?id=638 + +* Console log files (stdout.txt and stderr.txt) are now removed when the + Arduino software exits. (Paul Stoffregen) + +* The minimum size for the Arduino software window has been reduced. + http://code.google.com/p/arduino/issues/detail?id=52 + +* Improvements to the Find / Replace dialog. (Peter Lewis) + http://code.google.com/p/arduino/issues/detail?id=825 + +* Support for selecting words (on double-click) and lines (triple-click) + in the Arduino software. (Peter Lewis) + http://code.google.com/p/arduino/issues/detail?id=824 + +* Don't insert newline when using serial monitor keyboard + shortcut. (Lars J. Nielsen) + http://code.google.com/p/arduino/issues/detail?id=279 + +* Added a preference for disabling verification on upload (for increased + speed). (Nathan Seidle) + http://code.google.com/p/arduino/issues/detail?id=842 + +* Added the gcc toolchain to the Linux distribution. (To use the + toolchain already installed on your system, simply delete the one + that comes with the Arduino software.) (Paul Stoffregen) + http://code.google.com/p/arduino/issues/detail?id=300 + +* Updating Arduino Mini upload protocol to 'arduino' from 'stk500' (should + fix problems with auto-reset not working). + +[core / libraries] + +* Updated (and official) support for the Arduino Leonardo (ATmega32U4). + Includes new bootloader and various fixes to the core. + +* Adding overloads to Wire.write() (for Wire.write(0)). (Paul Stoffregen) + http://code.google.com/p/arduino/issues/detail?id=527 + +* Fixing delayMicroseconds() for 20 MHz clocks (Erdem U. Altinyurt) + http://code.google.com/p/arduino/issues/detail?id=306 + +* Support third external interrupt on ATmega1284P. (maniacbug) + http://code.google.com/p/arduino/issues/detail?id=728 + +* Update reference voltage constants for ATmega1284P. (maniacbug) + http://code.google.com/p/arduino/issues/detail?id=728 + +* Adding --relax linker flag for ATmega2560. (arducopter) + http://code.google.com/p/arduino/issues/detail?id=729 + +* Fixing Ethernet library bug on avr-gcc 4.5.1 (SurferTim) + http://code.google.com/p/arduino/issues/detail?id=605 + +* Fixed DHCP hostname generation. (peter) + +* Simplifying microseconds to clock cycles conversions (Rob Tillaart) + http://code.google.com/p/arduino/issues/detail?id=675 + +* Fixed various warnings. (maniacbug) + http://code.google.com/p/arduino/issues/detail?id=688 + +* Fixed bug w/ repeated initial characters in findUntil(). (Jeffery.zksun) + http://code.google.com/p/arduino/issues/detail?id=768 + +* Added INPUT_PULLUP option for pinMode(). The INPUT mode now explicitly + disables the pullup resistors. (Paul Stoffregen) + http://code.google.com/p/arduino/issues/detail?id=246 + +* Fixing bug in the receiving of multiple UDP packets. (dylan and peter) + http://code.google.com/p/arduino/issues/detail?id=669 + +* Added ability to generate repeated starts in the Wire library (in + master mode). Extra boolean parameters to endTransmission() and + requestFrom() control whether or not to send a stop (or a repeated + start instead). (Todd Krein) + http://code.google.com/p/arduino/issues/detail?id=663 + +* Added Ethernet.maintain() to renew DHCP leases. (Peter Magnusson) + http://code.google.com/p/arduino/issues/detail?id=716 + +* Fix for CLOSE_WAIT bug that could cause Ethernet sketches to crash + over time. (mr-russ and Johann Richard) + +* Fix to servo pulse timing calculation. (jwatte) + http://code.google.com/p/arduino/issues/detail?id=908 + +* Added readString() and readStringUntil() functions. (Adrian McEwen) + http://code.google.com/p/arduino/issues/detail?id=454 + +[examples] + +* Updated to latest ArduinoISP sketch. (rsbohn) + http://code.google.com/p/arduino/issues/detail?id=378 + +* Fixed ArduinoISP sketch by lowering delay() in heartbeat. + +* Other updates. + ARDUINO 1.0 - 2011.11.30 [environment] diff --git a/build/windows/dist/drivers/Arduino Leonardo.inf b/build/windows/dist/drivers/Arduino Leonardo.inf index b77462ce5..26cf22fb8 100644 --- a/build/windows/dist/drivers/Arduino Leonardo.inf +++ b/build/windows/dist/drivers/Arduino Leonardo.inf @@ -86,13 +86,12 @@ ServiceBinary=%12%\%DRIVERFILENAME%.sys [SourceDisksFiles] [SourceDisksNames] [DeviceList] -%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0032 -%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0034&MI_00 +%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0036 +%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_8036&MI_00 [DeviceList.NTamd64] -%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0032 -%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0034&MI_00 - +%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_0036 +%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_8036&MI_00 ;------------------------------------------------------------------------------ ; String Definitions diff --git a/build/windows/dist/drivers/Arduino USBSerial.inf b/build/windows/dist/drivers/Arduino USBSerial.inf new file mode 100644 index 000000000..f8553fbb9 --- /dev/null +++ b/build/windows/dist/drivers/Arduino USBSerial.inf @@ -0,0 +1,106 @@ +;************************************************************ +; Windows USB CDC ACM Setup File +; Copyright (c) 2000 Microsoft Corporation + + +[Version] +Signature="$Windows NT$" +Class=Ports +ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} +Provider=%MFGNAME% +LayoutFile=layout.inf +CatalogFile=%MFGFILENAME%.cat +DriverVer=11/15/2007,5.1.2600.0 + +[Manufacturer] +%MFGNAME%=DeviceList, NTamd64 + +[DestinationDirs] +DefaultDestDir=12 + + +;------------------------------------------------------------------------------ +; Windows 2000/XP/Vista-32bit Sections +;------------------------------------------------------------------------------ + +[DriverInstall.nt] +include=mdmcpq.inf +CopyFiles=DriverCopyFiles.nt +AddReg=DriverInstall.nt.AddReg + +[DriverCopyFiles.nt] +usbser.sys,,,0x20 + +[DriverInstall.nt.AddReg] +HKR,,DevLoader,,*ntkern +HKR,,NTMPDriver,,%DRIVERFILENAME%.sys +HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" + +[DriverInstall.nt.Services] +AddService=usbser, 0x00000002, DriverService.nt + +[DriverService.nt] +DisplayName=%SERVICE% +ServiceType=1 +StartType=3 +ErrorControl=1 +ServiceBinary=%12%\%DRIVERFILENAME%.sys + +;------------------------------------------------------------------------------ +; Vista-64bit Sections +;------------------------------------------------------------------------------ + +[DriverInstall.NTamd64] +include=mdmcpq.inf +CopyFiles=DriverCopyFiles.NTamd64 +AddReg=DriverInstall.NTamd64.AddReg + +[DriverCopyFiles.NTamd64] +%DRIVERFILENAME%.sys,,,0x20 + +[DriverInstall.NTamd64.AddReg] +HKR,,DevLoader,,*ntkern +HKR,,NTMPDriver,,%DRIVERFILENAME%.sys +HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" + +[DriverInstall.NTamd64.Services] +AddService=usbser, 0x00000002, DriverService.NTamd64 + +[DriverService.NTamd64] +DisplayName=%SERVICE% +ServiceType=1 +StartType=3 +ErrorControl=1 +ServiceBinary=%12%\%DRIVERFILENAME%.sys + + +;------------------------------------------------------------------------------ +; Vendor and Product ID Definitions +;------------------------------------------------------------------------------ +; When developing your USB device, the VID and PID used in the PC side +; application program and the firmware on the microcontroller must match. +; Modify the below line to use your VID and PID. Use the format as shown below. +; Note: One INF file can be used for multiple devices with different VID and PIDs. +; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line. +;------------------------------------------------------------------------------ +[SourceDisksFiles] +[SourceDisksNames] +[DeviceList] +%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_003B + +[DeviceList.NTamd64] +%DESCRIPTION%=DriverInstall, USB\VID_2341&PID_003B + + +;------------------------------------------------------------------------------ +; String Definitions +;------------------------------------------------------------------------------ +;Modify these strings to customize your device +;------------------------------------------------------------------------------ +[Strings] +MFGFILENAME="CDC_vista" +DRIVERFILENAME ="usbser" +MFGNAME="Arduino LLC (www.arduino.cc)" +INSTDISK="Arduino USBSerial Driver Installer" +DESCRIPTION="Arduino UNO" +SERVICE="USB RS-232 Emulation Driver" \ No newline at end of file diff --git a/hardware/arduino/avr/boards.txt b/hardware/arduino/avr/boards.txt index af2ad8e76..85a9bf382 100644 --- a/hardware/arduino/avr/boards.txt +++ b/hardware/arduino/avr/boards.txt @@ -7,10 +7,15 @@ uno.upload.tool=avrdude uno.upload.protocol=arduino uno.upload.maximum_size=32256 uno.upload.speed=115200 + uno.bootloader.tool=avrdude -uno.bootloader.erase.params=-e -Ulock:w:0x3F:m -Uefuse:w:0x05:m -Uhfuse:w:0xde:m -Ulfuse:w:0xff:m -uno.bootloader.write.params=-Uflash:w:{bootloader.file}:i -Ulock:w:0x0F:m -uno.bootloader.file={runtime.ide.path}/hardware/arduino/avr/optiboot/optiboot_atmega328.hex +uno.bootloader.low_fuses=0xFF +uno.bootloader.high_fuses=0xDE +uno.bootloader.extended_fuses=0x05 +uno.bootloader.unlock_bits=0x3F +uno.bootloader.lock_bits=0x0F +uno.bootloader.file=optiboot/optiboot_atmega328.hex + uno.build.mcu=atmega328p uno.build.f_cpu=16000000L uno.build.core=arduino @@ -145,23 +150,28 @@ mega.build.variant=mega ############################################################## leonardo.name=Arduino Leonardo +leonardo.upload.tool=avrdude leonardo.upload.protocol=avr109 leonardo.upload.maximum_size=28672 leonardo.upload.speed=57600 leonardo.upload.disable_flushing=true +leonardo.upload.use_1200bps_touch=true + +leonardo.bootloader.tool=avrdude leonardo.bootloader.low_fuses=0xff leonardo.bootloader.high_fuses=0xd8 leonardo.bootloader.extended_fuses=0xcb -leonardo.bootloader.path=caterina -leonardo.bootloader.file=Caterina-Leonardo.hex +leonardo.bootloader.file=caterina/Caterina-Leonardo.hex leonardo.bootloader.unlock_bits=0x3F leonardo.bootloader.lock_bits=0x2F + leonardo.build.mcu=atmega32u4 leonardo.build.f_cpu=16000000L leonardo.build.vid=0x2341 leonardo.build.pid=0x8036 leonardo.build.core=arduino leonardo.build.variant=leonardo +leonardo.build.extra_flags=-DUSB_VID={build.vid} -DUSB_PID={build.pid} ############################################################## diff --git a/hardware/arduino/avr/bootloaders/caterina/Caterina-Leonardo.hex b/hardware/arduino/avr/bootloaders/caterina/Caterina-Leonardo.hex new file mode 100644 index 000000000..de7b53c7a --- /dev/null +++ b/hardware/arduino/avr/bootloaders/caterina/Caterina-Leonardo.hex @@ -0,0 +1,1024 @@ +:200000000C946E010C9496010C9496010C9496010C9496010C9496010C9496010C94960150 +:200020000C9496010C9496010C9410050C949B050C9496010C9496010C9496010C94960181 +:200040000C9496010C9496010C9496010C9496010C9496010C9496010C9496010C94B501C9 +:200060000C9496010C9496010C9496010C9496010C9496010C9496010C9496010C949601C8 +:200080000C9496010C9496010C9496010C9496010C9496010C9496010C9496010C949601A8 +:2000A0000C9496010C9496010C94960100000000240027002A002D003000000000002500A4 +:2000C00028002B002E003100000000002300260029002C002F00040404040403040502027D +:2000E0000202040302020202060606060606040402020204040802011040804010204080A8 +:200100004080080204018040201002011080102040400000000200080E0000030401000BB2 +:200120000000070605040100080A0B0C0D09040309042203410072006400750069006E00CD +:200140006F0020004C0065006F006E006100720064006F00180341007200640075006900CC +:200160006E006F0020004C004C004300120100020000004041233680000101020001120120 +:200180000002020000404123368000010102000100C18081C1080B00020202010009040052 +:2001A000000102020000052400100105240101010424020605240600010705810310004094 +:2001C00009040100020A000000070502024000000705830240000005010902A1010901A186 +:2001E000008501050919012903150025019503750181029501750581030501093009310943 +:20020000381581257F750895038106C0C005010906A1018502050719E029E715002501754D +:20022000019508810295017508810395067508150025650507190029658100C0090402004C +:2002400001030000000921010100012265000705840340000100000000000000002A2B2895 +:200260000000000000000000000000000000000000000000002C9EB4A0A1A2A434A6A7A553 +:20028000AE362D3738271E1F20212223242526B333B62EB7B89F8485868788898A8B8C8D58 +:2002A0008E8F909192939495969798999A9B9C9D2F3130A3AD350405060708090A0B0C0D7C +:2002C0000E0F101112131415161718191A1B1C1DAFB1B0B500004C042E072C0811241FBE36 +:2002E000CFEFDAE0DEBFCDBF11E0A0E0B1E0EEECF2E102C005900D92AC32B107D9F711E061 +:20030000ACE2B1E001C01D92AD39B107E1F712E0CCEDD2E004C02297FE010E946109C63DF0 +:20032000D107C9F70E9486030C9465090C9400008091000161E00E94530364E873E080E002 +:2003400090E00E94FD018091000160E00E9453036CE474E080E090E00E94FD010895809181 +:20036000000161E00E94B60208951F920F920FB60F9211242F933F938F939F93AF93BF93DB +:200380008091300190913101A0913201B0913301309134010196A11DB11D232F2D5F2D3794 +:2003A00020F02D570196A11DB11D209334018093300190933101A0933201B0933301809117 +:2003C0002C0190912D01A0912E01B0912F010196A11DB11D80932C0190932D01A0932E01BA +:2003E000B0932F01BF91AF919F918F913F912F910F900FBE0F901F9018959B01AC017FB734 +:20040000F89480912C0190912D01A0912E01B0912F0166B5A89B05C06F3F19F00196A11DC3 +:20042000B11D7FBFBA2FA92F982F8827860F911DA11DB11D62E0880F991FAA1FBB1F6A9577 +:20044000D1F7BC012DC0FFB7F89480912C0190912D01A0912E01B0912F01E6B5A89B05C0E7 +:20046000EF3F19F00196A11DB11DFFBFBA2FA92F982F88278E0F911DA11DB11DE2E0880FFD +:20048000991FAA1FBB1FEA95D1F7861B970B885E9340C8F2215030404040504068517C4F8F +:2004A000211531054105510571F60895789484B5826084BD84B5816084BD85B5826085BD0F +:2004C00085B5816085BDEEE6F0E0808181608083E1E8F0E010828081826080838081816043 +:2004E0008083E0E8F0E0808181608083E1EBF0E0808184608083E0EBF0E080818160808378 +:20050000E1E9F0E0808182608083808181608083E0E9F0E0808181608083E1ECF0E080815A +:2005200084608083808182608083808181608083E3ECF0E0808181608083E0ECF0E08081E8 +:2005400082608083E2ECF0E0808181608083EAE7F0E08081846080838081826080838081C3 +:20056000816080838081806880830895CF93DF93482F50E0CA018C509F4FFC0134914A52A0 +:200580005F4FFA018491882369F190E0880F991FFC01E455FF4FA591B491FC01E654FF4F55 +:2005A000C591D491662351F42FB7F8948C91932F909589238C93888189230BC0623061F40A +:2005C0002FB7F8948C91932F909589238C938881832B88832FBF06C09FB7F8948C91832BB7 +:2005E0008C939FBFDF91CF9108958730C1F1883080F48330F9F0843030F4813029F182308B +:2006000009F050C024C08430C9F0863009F04AC022C08A3091F18B3030F4883031F1893037 +:2006200009F040C026C08C3091F18C3060F18E30C9F533C0809180008F7703C08091800036 +:200640008F7D80938000089584B58F7702C084B58F7D84BD08958091B0008F7703C080919F +:20066000B0008F7D8093B0000895809190008F7707C0809190008F7D03C080919000877FD9 +:200680008093900008958091C0008F7703C08091C0008F7D8093C00008958091C200877F5A +:2006A0008093C2000895FF920F931F93F62E482F50E0CA018E5E9E4FFC012491CA018C501B +:2006C0009F4FFC0114914A525F4FFA0104910023C9F0222319F0822F0E94F502E02FF0E05D +:2006E000EE0FFF1FE654FF4FA591B4919FB7F894FF2021F48C911095812302C08C91812BD5 +:200700008C939FBF1F910F91FF900895CF93DF930E9456028DE391E00E944D040E94AF01EC +:20072000C0E0D0E00E9498012097E1F30E940000F9CF282F809137018823C1F057FF1AC00D +:2007400015C02898909336018091F1008193E217F307B9F74115510539F08091F20088236E +:2007600019F48BE68093E800AFBF02C04FEF5FEFCA010895AFB7F89427702093E9008091A6 +:20078000F200282F30E0241735070CF4A901FB019B01240F311D94E6DACFDF93CF930F922E +:2007A000CDB7DEB7BE016F5F7F4F41E050E00E949903019719F02FEF3FEF03C08981282F25 +:2007C00030E0C9010F90CF91DF910895FF920F931F93F82E142F052F40913A0150913B0188 +:2007E000212F302FC901DC01FB016EEF29C0F7FE02C0949101C090812091380130913901CE +:2008000024173507ACF48091E8008570E1F38091E80082FF03C02FEF3FEF17C09093F1008B +:20082000C90101968F739070892B11F46093E8002F5F3F4F3093390120933801119731964D +:200840001097A9F6812F902F9C01C9011F910F91FF9008959C018091E80082FFFCCFF90124 +:20086000260F311D03C08091F1008193E217F307D1F7289884E6809336018BEF8093E80078 +:20088000CB0108958093E9008091F200882319F08AE38093E800089508951092370181E05F +:2008A0008093D70080EA8093D80082E189BD09B400FEFDCF61E070E080E090E00E94FD01C8 +:2008C00080E98093D8008CE08093E2001092E000559A209A08955F926F927F928F929F9246 +:2008E000AF92BF92CF92DF92EF92FF920F931F93CF93DF93E82E842E752E809137018823FB +:2009000071F18B01242F352FC901EC017AEFF72E67E0962E9E2050E4552E8E2D90E040E220 +:20092000A42EB12CA822B9223AE3632E20E4C22ED12CC822D92258C09FB7F8949092E900DA +:200940008091E80085FD02C020E004C08091F200252D281B9FBF222361F4FA9419F42FEF4D +:200960003FEF4DC061E070E080E090E00E94FD013BC0822F90E0C817D9070CF42C2FC21B28 +:20098000D1094FB7F8949092E900A114B10421F406C01092F10021502223D9F719C0E7FCC6 +:2009A00003C0F801922F10C0C801322F06C0FC010196E491E093F10031503323C1F706C038 +:2009C00081918093F10091509923D1F7020F111D8091E80085FF05C0209729F4C114D1049D +:2009E00011F06092E8004FBF209709F0A5CF5D9884E680933501282D372DC9019C01C90158 +:200A0000DF91CF911F910F91FF90EF90DF90CF90BF90AF909F908F907F906F905F90089564 +:200A20001F920F920FB60F9211241F932F933F934F935F936F937F938F939F93AF93BF93B3 +:200A4000EF93FF938091E1001092E100982F83FF0FC01092E90081E08093EB001092EC007D +:200A600082E38093ED001092370188E08093F00092FF36C083E08093E9008091F200882338 +:200A800049F08AE38093E80005C082E891E00E94710701C012E09FB7F8941093E9008091C9 +:200AA000F2009FBF882389F780913501882351F08091350181508093350180913501882335 +:200AC00009F45D9A80913601882351F08091360181508093360180913601882309F4289AD9 +:200AE000FF91EF91BF91AF919F918F917F916F915F914F913F912F911F910F900FBE0F90DB +:200B00001F9018950F931F93DF93CF930F92CDB7DEB719828E010F5F1F4FC8010E9490078F +:200B2000C8010E942909898190E00F90CF91DF911F910F9108951F920F920FB60F92112455 +:200B4000EF92FF921F932F933F934F935F936F937F938F939F93AF93BF93EF93FF93DF93E7 +:200B6000CF93CDB7DEB76197DEBFCDBF1092E9008091E80083FF0FC1FE0131969E01275F18 +:200B80003F4F03C08091F1008193E217F307D1F7289884E68093360182EF8093E800998139 +:200BA00097FF05C08091E80080FFFCCF03C08EEF8093E800292F30E0C90180769070892B80 +:200BC00009F0C2C08A81882329F41092F1001092F100D6C0813009F4D3C0833009F4D0C08A +:200BE000853049F48091E80080FFFCCF8B8180688093E300C5C0863009F07CC01C81EF805A +:200C0000F8841230C1F51092E900109239011092380110923B0110923A010E94820599E0C1 +:200C2000FE013996DF01292F1D922A95E9F799871A8791E09E8790E8988B9AEF998B209110 +:200C4000380130913901275F3F4F3C872B878D871092E9001092390110923801F0923B01C3 +:200C6000E0923A0180E0BF0149E050E00E94E6030E94820585C01092E9001092390110924C +:200C80003801F0923B01E0923A01123241F482E290E00E942109892B09F476C071C011303E +:200CA00079F488E0E816F10419F481E080933C0180913C01882309F06BC0ECE6F1E013C01B +:200CC000133009F061C08B81882319F4EEE2F1E00AC0823019F4E2E3F1E005C0813009F0C4 +:200CE00053C0E4E5F1E0449180E8BF0150E00E94E60346C0873009F447C0883021F481E0A0 +:200D00008093F1003DC08930D9F523703070232BD9F5E1E9F1E091E031E026E39093E900CA +:200D20003093EB0084918093EC002093ED009F5F3196953099F78EE78093EA001092EA0039 +:200D40008B81809337011CC08F8198851092E900109239011092380190933B0180933A0144 +:200D60008D81882329F4CE0101960E949C0706C0823051F4CE0101960E94F207882321F078 +:200D80008EEF8093E80007C081E28093EB0003C0EEE7F1E0A8CF6196DEBFCDBFCF91DF91E3 +:200DA000FF91EF91BF91AF919F918F917F916F915F914F913F912F911F91FF90EF900F9076 +:200DC0000FBE0F901F90189520917E0130917F018091800190918101281B390B2F733070DC +:200DE000C901089520917E0130917F0180918001909181012817390719F42FEF3FEF09C045 +:200E0000E0918001F0918101E25CFE4F8081282F30E0C901089520917E0130917F01809101 +:200E20008001909181012817390719F42FEF3FEF13C0E0918001F0918101E25CFE4F2081C2 +:200E4000809180019091810101968F739070909381018093800130E0C901089510928501EC +:200E60001092840188EE93E0A0E0B0E08093860190938701A0938801B093890180E191E0B2 +:200E8000909383018093820108950F931F93DF93CF930F92CDB7DEB78C0169838091090102 +:200EA000882369F083E0BE016F5F7F4F41E050E00E946B041816190614F49C0107C081E0F4 +:200EC00090E0F8019383828320E030E0C9010F90CF91DF911F910F91089583E00E9442040D +:200EE000089582E00E94CD03482F20917E0130917F012F5F3F4F2F73307080918001909188 +:200F000081012817390759F0E0917E01F0917F01E25CFE4F408330937F0120937E01089536 +:200F2000FC0180818E5F808380E865E971E042E450E00E94E6030895FC0181819081913A63 +:200F400059F4813209F04CC080E062E071E047E050E00E94E60342C0913209F041C0803246 +:200F600039F482E091E067E070E00E942A0436C0823209F035C0828180930901809102013E +:200F800090910301A0910401B0910501805B9440A040B04019F58091090180FD12C087E74A +:200FA00097E790930108809300082BE088E190E00FB6F894A895809360000FBE20936000A7 +:200FC0000DC088E10FB6F89480936000109260000FBEA895109201081092000881E00895B8 +:200FE00080E00895FC0191818081813A31F4913089F080E0933089F40DC0813269F49B3082 +:2010000021F4828180930A0105C09A3029F4828180930B0181E0089580E00895EF92FF92BF +:201020000F931F938C01E62EDC01ED91FC910480F581E02D0995F82ED801ED91FC9106809E +:20104000F781E02DC8016E2D09958F2D90E01F910F91FF90EF900895109290011092940178 +:201060001092930182E291E090939201809391010895EF92FF920F931F93DF93CF930F9292 +:20108000CDB7DEB789838B017A0184E0BE016F5F7F4F41E050E00E946B0484E4B801A7013A +:2010A0000E946B040F90CF91DF911F910F91FF90EF90089582E048E050E00E94390808957B +:2010C000FC0116821782108611861286138614823496BF010E945A080895DC01683810F046 +:2010E000685829C0E62FF0E067FF13C0E058F04081E090E002C0880F991FEA95E2F7809572 +:2011000014962C911497282314962C93149760E012C0EB5AFD4F6491662319F420E030E020 +:201120001DC067FF08C014968C9114978D7F14968C9314976F77FD0190E0662321F08681BD +:20114000861709F416829F5F31969630B1F7CD011496BD010E945A0821E030E0C901089578 +:20116000CF93DF93DC01683810F0685825C0E62FF0E067FF12C0E058F04081E090E002C061 +:20118000880F991FEA95E2F714962C911497282B14962C93149760E00FC0EB5AFD4F64919A +:2011A0006623D9F167FF08C014968C911497826014968C9314976F7716968C9116978617ED +:2011C000A9F117968C911797861781F118968C911897861759F119968C911997861731F152 +:2011E0001A968C911A97861709F11B968C911B978617E1F0ED01E0E0F0E09E2F8E818823E7 +:2012000021F4EA0FFB1F668306C09F5F31962196E630F10591F7963049F481E090E013966A +:201220009C938E93129720E030E007C0CD011496BD010E945A0821E030E0C901DF91CF91F9 +:20124000089580E867ED71E045E650E00E94E6030895FC0180818F5F808380E86CE372E069 +:2012600049E150E00E94E6030895CF92DF92EF92FF920F931F93CF93DF937C016B018A016C +:20128000C0E0D0E00FC0D6016D916D01D701ED91FC910190F081E02DC7010995C80FD91FC5 +:2012A000015010400115110571F7CE01DF91CF911F910F91FF90EF90DF90CF900895EE0F94 +:2012C000FF1F0590F491E02D0994F894FFCF0D0000E1000000000000010100000000450796 +:2012E0003509E4060B07F2066D077107000000000E083509B0086D086008FFFFFFFFFFFFED +:20130000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED +:20132000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCD +:20134000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAD +:20136000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8D +:20138000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D +:2013A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4D +:2013C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2D +:2013E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0D +:20140000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC +:20142000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCC +:20144000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAC +:20146000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8C +:20148000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6C +:2014A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4C +:2014C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2C +:2014E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0C +:20150000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEB +:20152000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCB +:20154000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAB +:20156000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8B +:20158000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6B +:2015A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4B +:2015C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2B +:2015E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0B +:20160000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEA +:20162000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCA +:20164000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAA +:20166000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8A +:20168000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6A +:2016A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4A +:2016C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2A +:2016E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0A +:20170000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE9 +:20172000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC9 +:20174000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA9 +:20176000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF89 +:20178000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF69 +:2017A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF49 +:2017C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF29 +:2017E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF09 +:20180000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8 +:20182000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC8 +:20184000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA8 +:20186000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF88 +:20188000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF68 +:2018A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF48 +:2018C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF28 +:2018E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF08 +:20190000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7 +:20192000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7 +:20194000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA7 +:20196000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87 +:20198000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF67 +:2019A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF47 +:2019C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF27 +:2019E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07 +:201A0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE6 +:201A2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC6 +:201A4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA6 +:201A6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86 +:201A8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF66 +:201AA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF46 +:201AC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF26 +:201AE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF06 +:201B0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5 +:201B2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5 +:201B4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA5 +:201B6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85 +:201B8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF65 +:201BA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF45 +:201BC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF25 +:201BE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF05 +:201C0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE4 +:201C2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC4 +:201C4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA4 +:201C6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF84 +:201C8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF64 +:201CA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF44 +:201CC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF24 +:201CE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF04 +:201D0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3 +:201D2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3 +:201D4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA3 +:201D6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83 +:201D8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF63 +:201DA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF43 +:201DC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF23 +:201DE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03 +:201E0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2 +:201E2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2 +:201E4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA2 +:201E6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF82 +:201E8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF62 +:201EA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF42 +:201EC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF22 +:201EE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF02 +:201F0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1 +:201F2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 +:201F4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA1 +:201F6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81 +:201F8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF61 +:201FA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF41 +:201FC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF21 +:201FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01 +:20200000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 +:20202000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 +:20204000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0 +:20206000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 +:20208000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF60 +:2020A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40 +:2020C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF20 +:2020E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 +:20210000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF +:20212000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF +:20214000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F +:20216000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F +:20218000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5F +:2021A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F +:2021C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F +:2021E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +:20220000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDE +:20222000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBE +:20224000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9E +:20226000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E +:20228000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5E +:2022A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E +:2022C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1E +:2022E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE +:20230000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDD +:20232000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBD +:20234000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9D +:20236000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7D +:20238000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D +:2023A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3D +:2023C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1D +:2023E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD +:20240000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDC +:20242000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBC +:20244000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9C +:20246000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7C +:20248000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5C +:2024A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3C +:2024C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1C +:2024E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC +:20250000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB +:20252000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBB +:20254000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B +:20256000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7B +:20258000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5B +:2025A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3B +:2025C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1B +:2025E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB +:20260000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDA +:20262000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBA +:20264000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9A +:20266000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7A +:20268000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5A +:2026A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3A +:2026C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1A +:2026E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA +:20270000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9 +:20272000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB9 +:20274000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF99 +:20276000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF79 +:20278000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF59 +:2027A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF39 +:2027C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF19 +:2027E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 +:20280000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8 +:20282000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB8 +:20284000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF98 +:20286000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF78 +:20288000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF58 +:2028A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF38 +:2028C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF18 +:2028E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 +:20290000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD7 +:20292000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7 +:20294000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF97 +:20296000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77 +:20298000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF57 +:2029A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF37 +:2029C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17 +:2029E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7 +:202A0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD6 +:202A2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6 +:202A4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF96 +:202A6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF76 +:202A8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF56 +:202AA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF36 +:202AC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF16 +:202AE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6 +:202B0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD5 +:202B2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB5 +:202B4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF95 +:202B6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF75 +:202B8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF55 +:202BA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF35 +:202BC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF15 +:202BE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5 +:202C0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD4 +:202C2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB4 +:202C4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF94 +:202C6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF74 +:202C8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF54 +:202CA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF34 +:202CC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF14 +:202CE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4 +:202D0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD3 +:202D2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB3 +:202D4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF93 +:202D6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF73 +:202D8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF53 +:202DA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF33 +:202DC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF13 +:202DE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3 +:202E0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD2 +:202E2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB2 +:202E4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF92 +:202E6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF72 +:202E8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF52 +:202EA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF32 +:202EC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF12 +:202EE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2 +:202F0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD1 +:202F2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB1 +:202F4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF91 +:202F6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF71 +:202F8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF51 +:202FA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF31 +:202FC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF11 +:202FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 +:20300000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0 +:20302000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB0 +:20304000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF90 +:20306000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF70 +:20308000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF50 +:2030A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF30 +:2030C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF10 +:2030E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 +:20310000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF +:20312000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAF +:20314000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F +:20316000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6F +:20318000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4F +:2031A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2F +:2031C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F +:2031E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF +:20320000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCE +:20322000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAE +:20324000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8E +:20326000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6E +:20328000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4E +:2032A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2E +:2032C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0E +:2032E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE +:20330000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCD +:20332000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAD +:20334000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8D +:20336000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D +:20338000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4D +:2033A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2D +:2033C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0D +:2033E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED +:20340000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCC +:20342000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAC +:20344000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8C +:20346000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6C +:20348000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4C +:2034A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2C +:2034C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0C +:2034E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC +:20350000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCB +:20352000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAB +:20354000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8B +:20356000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6B +:20358000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4B +:2035A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2B +:2035C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0B +:2035E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEB +:20360000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCA +:20362000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAA +:20364000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8A +:20366000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6A +:20368000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4A +:2036A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2A +:2036C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0A +:2036E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEA +:20370000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC9 +:20372000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA9 +:20374000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF89 +:20376000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF69 +:20378000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF49 +:2037A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF29 +:2037C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF09 +:2037E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE9 +:20380000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC8 +:20382000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA8 +:20384000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF88 +:20386000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF68 +:20388000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF48 +:2038A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF28 +:2038C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF08 +:2038E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8 +:20390000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7 +:20392000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA7 +:20394000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87 +:20396000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF67 +:20398000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF47 +:2039A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF27 +:2039C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07 +:2039E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7 +:203A0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC6 +:203A2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA6 +:203A4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86 +:203A6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF66 +:203A8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF46 +:203AA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF26 +:203AC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF06 +:203AE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE6 +:203B0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5 +:203B2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA5 +:203B4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85 +:203B6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF65 +:203B8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF45 +:203BA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF25 +:203BC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF05 +:203BE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5 +:203C0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC4 +:203C2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA4 +:203C4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF84 +:203C6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF64 +:203C8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF44 +:203CA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF24 +:203CC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF04 +:203CE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE4 +:203D0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3 +:203D2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA3 +:203D4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83 +:203D6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF63 +:203D8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF43 +:203DA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF23 +:203DC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03 +:203DE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3 +:203E0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2 +:203E2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA2 +:203E4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF82 +:203E6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF62 +:203E8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF42 +:203EA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF22 +:203EC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF02 +:203EE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2 +:203F0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 +:203F2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA1 +:203F4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81 +:203F6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF61 +:203F8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF41 +:203FA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF21 +:203FC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01 +:203FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1 +:20400000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 +:20402000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0 +:20404000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 +:20406000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF60 +:20408000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40 +:2040A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF20 +:2040C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 +:2040E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 +:20410000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF +:20412000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F +:20414000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F +:20416000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5F +:20418000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F +:2041A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F +:2041C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +:2041E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF +:20420000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBE +:20422000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9E +:20424000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E +:20426000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5E +:20428000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E +:2042A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1E +:2042C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE +:2042E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDE +:20430000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBD +:20432000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9D +:20434000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7D +:20436000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D +:20438000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3D +:2043A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1D +:2043C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD +:2043E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDD +:20440000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBC +:20442000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9C +:20444000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7C +:20446000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5C +:20448000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3C +:2044A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1C +:2044C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC +:2044E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDC +:20450000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBB +:20452000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B +:20454000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7B +:20456000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5B +:20458000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3B +:2045A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1B +:2045C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB +:2045E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB +:20460000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBA +:20462000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9A +:20464000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7A +:20466000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5A +:20468000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3A +:2046A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1A +:2046C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA +:2046E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDA +:20470000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB9 +:20472000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF99 +:20474000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF79 +:20476000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF59 +:20478000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF39 +:2047A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF19 +:2047C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 +:2047E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9 +:20480000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB8 +:20482000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF98 +:20484000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF78 +:20486000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF58 +:20488000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF38 +:2048A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF18 +:2048C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 +:2048E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8 +:20490000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7 +:20492000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF97 +:20494000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77 +:20496000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF57 +:20498000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF37 +:2049A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17 +:2049C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7 +:2049E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD7 +:204A0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6 +:204A2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF96 +:204A4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF76 +:204A6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF56 +:204A8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF36 +:204AA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF16 +:204AC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6 +:204AE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD6 +:204B0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB5 +:204B2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF95 +:204B4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF75 +:204B6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF55 +:204B8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF35 +:204BA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF15 +:204BC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5 +:204BE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD5 +:204C0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB4 +:204C2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF94 +:204C4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF74 +:204C6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF54 +:204C8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF34 +:204CA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF14 +:204CC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4 +:204CE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD4 +:204D0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB3 +:204D2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF93 +:204D4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF73 +:204D6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF53 +:204D8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF33 +:204DA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF13 +:204DC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3 +:204DE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD3 +:204E0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB2 +:204E2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF92 +:204E4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF72 +:204E6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF52 +:204E8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF32 +:204EA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF12 +:204EC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2 +:204EE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD2 +:204F0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB1 +:204F2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF91 +:204F4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF71 +:204F6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF51 +:204F8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF31 +:204FA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF11 +:204FC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 +:204FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD1 +:20500000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB0 +:20502000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF90 +:20504000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF70 +:20506000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF50 +:20508000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF30 +:2050A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF10 +:2050C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 +:2050E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0 +:20510000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAF +:20512000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F +:20514000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6F +:20516000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4F +:20518000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2F +:2051A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F +:2051C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF +:2051E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF +:20520000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAE +:20522000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8E +:20524000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6E +:20526000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4E +:20528000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2E +:2052A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0E +:2052C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE +:2052E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCE +:20530000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAD +:20532000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8D +:20534000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6D +:20536000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4D +:20538000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2D +:2053A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0D +:2053C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFED +:2053E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCD +:20540000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAC +:20542000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8C +:20544000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6C +:20546000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4C +:20548000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2C +:2054A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0C +:2054C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEC +:2054E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCC +:20550000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAB +:20552000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8B +:20554000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6B +:20556000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4B +:20558000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2B +:2055A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0B +:2055C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEB +:2055E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCB +:20560000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAA +:20562000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8A +:20564000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6A +:20566000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4A +:20568000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2A +:2056A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0A +:2056C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEA +:2056E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCA +:20570000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA9 +:20572000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF89 +:20574000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF69 +:20576000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF49 +:20578000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF29 +:2057A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF09 +:2057C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE9 +:2057E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC9 +:20580000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA8 +:20582000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF88 +:20584000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF68 +:20586000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF48 +:20588000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF28 +:2058A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF08 +:2058C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE8 +:2058E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC8 +:20590000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA7 +:20592000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF87 +:20594000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF67 +:20596000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF47 +:20598000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF27 +:2059A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF07 +:2059C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE7 +:2059E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC7 +:205A0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA6 +:205A2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF86 +:205A4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF66 +:205A6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF46 +:205A8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF26 +:205AA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF06 +:205AC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE6 +:205AE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC6 +:205B0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA5 +:205B2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF85 +:205B4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF65 +:205B6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF45 +:205B8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF25 +:205BA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF05 +:205BC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE5 +:205BE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC5 +:205C0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA4 +:205C2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF84 +:205C4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF64 +:205C6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF44 +:205C8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF24 +:205CA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF04 +:205CC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE4 +:205CE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC4 +:205D0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA3 +:205D2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF83 +:205D4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF63 +:205D6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF43 +:205D8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF23 +:205DA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF03 +:205DC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE3 +:205DE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC3 +:205E0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA2 +:205E2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF82 +:205E4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF62 +:205E6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF42 +:205E8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF22 +:205EA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF02 +:205EC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE2 +:205EE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC2 +:205F0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA1 +:205F2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF81 +:205F4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF61 +:205F6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF41 +:205F8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF21 +:205FA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF01 +:205FC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE1 +:205FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC1 +:20600000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA0 +:20602000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF80 +:20604000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF60 +:20606000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF40 +:20608000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF20 +:2060A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF00 +:2060C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE0 +:2060E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC0 +:20610000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9F +:20612000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7F +:20614000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5F +:20616000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3F +:20618000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1F +:2061A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF +:2061C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDF +:2061E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBF +:20620000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9E +:20622000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7E +:20624000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5E +:20626000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3E +:20628000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1E +:2062A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFE +:2062C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDE +:2062E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBE +:20630000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9D +:20632000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7D +:20634000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D +:20636000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3D +:20638000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1D +:2063A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD +:2063C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDD +:2063E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBD +:20640000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9C +:20642000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7C +:20644000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5C +:20646000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3C +:20648000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1C +:2064A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFC +:2064C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDC +:2064E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBC +:20650000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9B +:20652000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7B +:20654000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5B +:20656000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3B +:20658000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1B +:2065A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB +:2065C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDB +:2065E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBB +:20660000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9A +:20662000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7A +:20664000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5A +:20666000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3A +:20668000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1A +:2066A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFA +:2066C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFDA +:2066E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFBA +:20670000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF99 +:20672000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF79 +:20674000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF59 +:20676000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF39 +:20678000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF19 +:2067A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF9 +:2067C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD9 +:2067E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB9 +:20680000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF98 +:20682000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF78 +:20684000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF58 +:20686000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF38 +:20688000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF18 +:2068A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8 +:2068C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD8 +:2068E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB8 +:20690000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF97 +:20692000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF77 +:20694000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF57 +:20696000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF37 +:20698000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF17 +:2069A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF7 +:2069C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD7 +:2069E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB7 +:206A0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF96 +:206A2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF76 +:206A4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF56 +:206A6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF36 +:206A8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF16 +:206AA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6 +:206AC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD6 +:206AE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB6 +:206B0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF95 +:206B2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF75 +:206B4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF55 +:206B6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF35 +:206B8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF15 +:206BA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5 +:206BC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD5 +:206BE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB5 +:206C0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF94 +:206C2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF74 +:206C4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF54 +:206C6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF34 +:206C8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF14 +:206CA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4 +:206CC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD4 +:206CE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB4 +:206D0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF93 +:206D2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF73 +:206D4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF53 +:206D6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF33 +:206D8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF13 +:206DA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF3 +:206DC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD3 +:206DE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB3 +:206E0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF92 +:206E2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF72 +:206E4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF52 +:206E6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF32 +:206E8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF12 +:206EA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2 +:206EC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD2 +:206EE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB2 +:206F0000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF91 +:206F2000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF71 +:206F4000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF51 +:206F6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF31 +:206F8000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF11 +:206FA000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF1 +:206FC000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD1 +:206FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB1 +:2070000055C000006EC000006CC000006AC0000068C0000066C0000064C0000062C0000043 +:2070200060C000005EC00000EEC400005AC0000058C0000056C0000054C0000052C00000F2 +:2070400050C0000078C000004CC000004AC0000048C0000046C0000044C0000042C00000BE +:2070600040C000003EC000003CC000003AC0000038C0000036C0000034C0000032C0000048 +:2070800030C000002EC000002CC000002AC0000028C0000026C0000024C0000022C00000A8 +:2070A00020C000001EC000001CC0000011241FBECFEFDAE0DEBFCDBF11E0A0E0B1E0EAE2B5 +:2070C000FFE702C005900D92A83AB107D9F711E0A8EAB1E001C01D92AE3BB107E1F78FD30B +:2070E00022C78ECFF89410926F0010928100109285001092840081E085BF15BE47985D9AEF +:20710000289A0C94000008952091B2013091B3012F5F3F4F3093B3012093B201932F37FFA6 +:2071200003C08EEF831B982F990F921710F447980895479A08951F920F920FB60F9211246E +:207140002F938F939F93EF93FF9310928500109284008091A8019091A901009741F00197D3 +:207160009093A9018093A801892B09F45D9A8091AA019091AB01009741F001979093AB0126 +:207180008093AA01892B09F4289AE0E0F0E0859194918F5F9F4F49F08091AC019091AD0151 +:2071A00001969093AD018093AC01FF91EF919F918F912F910F900FBE0F901F90189584E0BC +:2071C0008093E9000DC08091E8008B778093E80003C08EB3882351F08091E80082FFF9CFBE +:2071E0008091E80085FFEFCF8091F1000895982F83E08093E9008091E80085FD0DC0809136 +:20720000E8008E778093E80003C08EB3882369F08091E80080FFF9CF9093F1005D9884E6CB +:2072200090E09093A9018093A80108954F925F926F927F928F929F92AF92BF92CF92DF921E +:20724000EF92FF920F931F93CF93DF9384E08093E9008091E80082FF57C2289884E690E067 +:207260009093AB018093AA01AADF182F853481F48CE49DE19093AD018093AC0107B600FC4B +:20728000FDCFF999FECF81E180935700E89503C0843519F494DF8DE00DC28C34E1F38035F9 +:2072A000D1F3843721F484E4A2DF80E003C2813611F489E5FFC18134B1F481DF182F7FDFE3 +:2072C00090E0880F991FAA2797FDA095BA2F312F330F20E0442737FD4095542F822B932B68 +:2072E000A42BB52BB8C1803711F483E5E3C1833549F4C0E0D1E089917ADF21E0C730D20714 +:20730000D1F7D9C1863521F481E371DF80E3D2C1833731F487E86BDF85E969DF8EE1CAC149 +:207320008536B9F4E0E0F0E093E085E090935700E89507B600FCFDCF80935700E89507B65D +:2073400000FCFDCFE058FF4FA0E7E030FA0771F7A2CF823739F4E1E0F0E089E08093570024 +:207360008491A8C1863439F4E0E0F0E089E08093570084919FC18E3439F4E3E0F0E089E0E5 +:2073800080935700849196C1813539F4E2E0F0E089E08093570084918DC1823631F489E521 +:2073A00026DF80E024DF80E885C1823419F0873609F0E5C01092AD011092AC0100DF082FE8 +:2073C000FEDEF82EFCDE682E8554823008F071C1902F80E0CF2DD0E0C82BD92B10926F00B3 +:2073E000173609F04BC081E180935700E895DD24CC24C3943FC0E090AE01F090AF010091CC +:20740000B0011091B101B6E46B16D9F4ED2DF0E0EE29FF29E4918E2FEADEDD2081F082E08D +:2074200090E0A0E0B0E0E80EF91E0A1F1B1FE092AE01F092AF010093B0011093B101DC2470 +:2074400018C0D801C701B695A7959795879555D5CEDE82E090E0A0E0B0E0E80EF91E0A1FF6 +:207460001B1FE092AE01F092AF010093B0011093B1012197209709F0BECF7DC08090AE01F5 +:207480009090AF01A090B001B090B10196E4691609F05DC083E0F40180935700E89507B63E +:2074A00000FCFDCF54C0F6E46F1661F5772031F1E090AE01F090AF010091B0011091B1019E +:2074C0007EDED82ECC24852D90E08C299D29F7010C0140925700E895112482E090E0A0E08B +:2074E000B0E0E80EF91E0A1F1B1FE092AE01F092AF010093B0011093B10102C060DE582E1A +:20750000742423C0E090AE01F090AF010091B0011091B10116950795F794E79450DE682FFA +:20752000C701F3D48091AE019091AF01A091B001B091B1010296A11DB11D8093AE0190934D +:20754000AF01A093B001B093B101219704C05524772444244394209709F0A5CF96E46916B6 +:2075600041F485E0F40180935700E89507B600FCFDCF8DE03CDE82E080936F009CC0833492 +:2075800071F40091AE011091AF0119DE90E021E0F8010C0120935700E89511247CCE8336C8 +:2075A00019F5E090AE01F090AF010091B0011091B10105DEF701E16090E021E00C0120938C +:2075C0005700E895112482E090E0A0E0B0E0E80EF91E0A1F1B1FE092AE01F092AF0100936A +:2075E000B0011093B10157CE8D3661F4E091AE01F091AF0185E080935700E89507B600FCF2 +:20760000FDCF49CE823551F4E091AE01F091AF0105911491812FEBDD802F4CC0843421F5FE +:20762000E090AE01F090AF010091B0011091B10116950795F794E794C2DD682FC70165D4E2 +:207640008091AE019091AF01A091B001B091B1010296A11DB11D8093AE019093AF01A093D8 +:20766000B001B093B10117CE843609F5E090AE01F090AF010091B0011091B101D801C70142 +:20768000B695A7959795879538D4B1DD82E090E0A0E0B0E0E80EF91E0A1F1B1FE092AE010E +:2076A000F092AF010093B0011093B10104C08B3111F08FE39CDD83E08093E9009091E8002B +:2076C0008091E8008E778093E80095FF04C010C08EB38823C9F08091E80080FFF9CF809193 +:2076E000E8008E778093E80003C08EB3882361F08091E80080FFF9CF84E08093E9008091F1 +:20770000E8008B778093E800DF91CF911F910F91FF90EF90DF90CF90BF90AF909F908F90AC +:207720007F906F905F904F9008959091B601892F8F77813249F58091B7018032A1F081328A +:2077400019F5913A09F58091E800877F8093E8008DE091E067E070E007D28091E8008B770F +:207760008093E8000895913279F48091E800877F8093E8008DE091E067E070E059D2809196 +:20778000E8008E778093E800089582E061EC42E0B1D083E061E842E1ADD084E060E842E1F7 +:2077A000A9C084B7877F84BF88E10FB6F89480936000109260000FBE20E880E090E00FB643 +:2077C000F89420936100809361000FBE81E085BF92E095BF3F9A209A559AE1E6F0E02083A1 +:2077E000108247985D9A289A109289008AEF8093880090936F0083E080938100ECC040911A +:20780000000850910108109201081092000824B714BE88E10FB6F894809360001092600045 +:207820000FBE822F90E0FC01E270F07021FD14C0213019F4859194910BC0283069F480918F +:20784000090190910A014817590731F0859194918F5F9F4F09F046DCA4DF78941092AD0101 +:207860001092AC010CC0E2DC36D38091AC019091AD0181549F4110F01092140145DC8091FB +:207880001401882381F78091E00081608093E00029DC80E090E00895FA01923049F09330C0 +:2078A00061F09130F9F485E191E022E130E01EC087E291E02EE330E019C0882329F485E6FA +:2078C00091E024E030E012C0813029F489E691E022E230E00BC0823029F48DE891E028E106 +:2078E00030E004C080E090E020E030E091838083C90108958093E9008091EB00816080936A +:20790000EB001092ED006093EC004093ED008091EE00881F8827881F08958091B601882342 +:207920008CF403C08EB38823B1F08091E80082FFF9CF8091E8008B778093E80008958EB361 +:20794000882349F08091E80080FFF9CF8091E8008E778093E8000895EF92FF920F931F9307 +:2079600045D04CD008ED10E0F80180818F77808380818068808380818F7D808319BC1EBA45 +:207980001092B40180EEE82EF12CF70180818B7F8083F80180818160808380E060E042E049 +:2079A000A9DFE1EEF0E080818E7F8083E2EEF0E0808181608083808188608083F701808125 +:2079C0008E7F8083F8018081806180831F910F91FF90EF900895E7EDF0E080818160808335 +:2079E0008AE482BF81E08093B501B6CFE8EDF0E080818E7F80831092E20008951092DA00D6 +:207A00001092E10008951F920F920FB60F9211242F933F934F935F936F937F938F939F9389 +:207A2000AF93BF93EF93FF938091DA0080FF1BC08091D80080FF17C08091DA008E7F80930F +:207A4000DA008091D90080FF0BC080E189BD82E189BD09B400FEFDCF81E08EBB3BD203C0C7 +:207A600019BC1EBA37D28091E10080FF17C08091E20080FF13C08091E2008E7F8093E200CE +:207A80008091E20080618093E2008091D80080628093D80019BC85E08EBB1CD28091E10004 +:207AA00084FF2CC08091E20084FF28C080E189BD82E189BD09B400FEFDCF8091D8008F7D2D +:207AC0008093D8008091E1008F7E8093E1008091E2008F7E8093E2008091E20081608093EC +:207AE000E2008091B401882331F48091E30087FD02C081E001C084E08EBBECD18091E10056 +:207B000083FF21C08091E20083FF1DC08091E100877F8093E10082E08EBB1092B4018091B1 +:207B2000E1008E7F8093E1008091E2008E7F8093E2008091E20080618093E20080E060E005 +:207B400042E0D8DEC7D1FF91EF91BF91AF919F918F917F916F915F914F913F912F910F90B6 +:207B60000FBE0F901F9018959C014091BC015091BD014617570718F4F90190E044C06115C8 +:207B8000710511F0AB01F8CF8091E8008E778093E80040E050E0F0CF8EB3882309F444C006 +:207BA000853009F443C08091E80083FF02C081E008958091E80082FD31C08091E80080FFF4 +:207BC00022C08091F3009091F200782F60E0292F30E0262B372B07C081918093F10041503C +:207BE00050402F5F3F4F4115510519F02830310598F390E02830310509F491E08091E800A6 +:207C00008E778093E8004115510531F6992321F605C08EB3882341F0853041F08091E800FD +:207C200082FFF7CF80E0089582E0089583E008959C016115710529F48091E8008B7780934D +:207C4000E800F90126C08EB3882391F1853091F18091E80083FF02C081E008958091E80083 +:207C600082FFF1CF06C08091F10081936150704059F02091F3008091F200322F20E090E0C5 +:207C8000822B932B892B79F78091E8008B778093E80061157105B9F605C08EB3882341F0E2 +:207CA000853041F08091E80080FFF7CF80E0089582E0089583E008950F931F93DF93CF937C +:207CC00000D0CDB7DEB7E6EBF1E08091F100819381E0EE3BF807C9F728DD8091E80083FF3A +:207CE000E4C08091B6019091B701953009F46DC0963040F4913081F1913070F0933009F046 +:207D0000D4C02AC0983009F4A3C0993009F4B2C0963009F0CAC07CC0803809F4C6C082380B +:207D200009F0C3C08091BA0187708093E9008091EB001092E9002091E800277F2093E800A7 +:207D400090E025E0969587952A95E1F781708093F1001092F10087C0882319F0823009F0A2 +:207D6000A4C08F71823009F0A0C08091B801882331F52091BA01277009F497C02093E90006 +:207D80008091EB0080FF1BC0933021F48091EB00806213C08091EB0080618093EB0081E0C8 +:207DA00090E002C0880F991F2A95E2F78093EA001092EA008091EB0088608093EB0010929D +:207DC000E9008091E800877F51C0882309F06DC01091B8011F770FB7F8948091E800877F98 +:207DE0008093E8009ADD8091E80080FFFCCF8091E3008078812B8093E30080688093E30062 +:207E0000112311F482E001C083E08EBB0FBF4DC08058823008F049C08091B8019091B9014F +:207E20006091BA01AE014F5F5F4F36DDBC01009709F43BC08091E800877F8093E800898128 +:207E40009A8192DE8091E8008B778093E8002DC0803859F58091E800877F8093E8008091A3 +:207E6000B4018093F1008091E8008E778093E80054DD1BC08823C9F49091B8019230A8F4A4 +:207E80008091E800877F8093E8009093B40145DD8091B401882331F48091E30087FD02C01E +:207EA00081E001C084E08EBB70DC8091E80083FF0AC08091EB0080628093EB008091E8008D +:207EC000877F8093E8000F900F90CF91DF911F910F91089508951F938EB3882361F0109179 +:207EE000E9001092E9008091E80083FF01C0E4DE17701093E9001F910895F999FECF92BD02 +:207F000081BDF89A992780B50895262FF999FECF1FBA92BD81BD20BD0FB6F894FA9AF99A90 +:207F20000FBE01960895F894FFCF4341544552494E4100777700080000000000000801128E +:207F4000011001020000084123360001000201000109023E00020100803209040000010258 +:207F60000201000524001001042402040524060001070582030800FF09040100020A0000B4 +:207F8000000705040210000107058302100001040309042203410072006400750069006E80 +:207FA000006F0020004C0065006F006E006100720064006F00000018034100720064007557 +:127FC0000069006E006F0020004C004C0043000000006E +:00000001FF diff --git a/hardware/arduino/avr/bootloaders/caterina/Caterina.c b/hardware/arduino/avr/bootloaders/caterina/Caterina.c new file mode 100755 index 000000000..abcba2b16 --- /dev/null +++ b/hardware/arduino/avr/bootloaders/caterina/Caterina.c @@ -0,0 +1,714 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2011. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaim all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * Main source file for the CDC class bootloader. This file contains the complete bootloader logic. + */ + +#define INCLUDE_FROM_CATERINA_C +#include "Caterina.h" + +/** Contains the current baud rate and other settings of the first virtual serial port. This must be retained as some + * operating systems will not open the port unless the settings can be set successfully. + */ +static CDC_LineEncoding_t LineEncoding = { .BaudRateBPS = 0, + .CharFormat = CDC_LINEENCODING_OneStopBit, + .ParityType = CDC_PARITY_None, + .DataBits = 8 }; + +/** Current address counter. This stores the current address of the FLASH or EEPROM as set by the host, + * and is used when reading or writing to the AVRs memory (either FLASH or EEPROM depending on the issued + * command.) + */ +static uint32_t CurrAddress; + +/** Flag to indicate if the bootloader should be running, or should exit and allow the application code to run + * via a watchdog reset. When cleared the bootloader will exit, starting the watchdog and entering an infinite + * loop until the AVR restarts and the application runs. + */ +static bool RunBootloader = true; + +/* Pulse generation counters to keep track of the time remaining for each pulse type */ +#define TX_RX_LED_PULSE_PERIOD 100 +uint16_t TxLEDPulse = 0; // time remaining for Tx LED pulse +uint16_t RxLEDPulse = 0; // time remaining for Rx LED pulse + +/* Bootloader timeout timer */ +#define TIMEOUT_PERIOD 8000 +uint16_t Timeout = 0; + +uint16_t bootKey = 0x7777; +volatile uint16_t *const bootKeyPtr = (volatile uint16_t *)0x0800; + +void StartSketch(void) +{ + cli(); + + /* Undo TIMER1 setup and clear the count before running the sketch */ + TIMSK1 = 0; + TCCR1B = 0; + TCNT1H = 0; // 16-bit write to TCNT1 requires high byte be written first + TCNT1L = 0; + + /* Relocate the interrupt vector table to the application section */ + MCUCR = (1 << IVCE); + MCUCR = 0; + + L_LED_OFF(); + TX_LED_OFF(); + RX_LED_OFF(); + + /* jump to beginning of application space */ + __asm__ volatile("jmp 0x0000"); +} + +/* Breathing animation on L LED indicates bootloader is running */ +uint16_t LLEDPulse; +void LEDPulse(void) +{ + LLEDPulse++; + uint8_t p = LLEDPulse >> 8; + if (p > 127) + p = 254-p; + p += p; + if (((uint8_t)LLEDPulse) > p) + L_LED_OFF(); + else + L_LED_ON(); +} + +/** Main program entry point. This routine configures the hardware required by the bootloader, then continuously + * runs the bootloader processing routine until it times out or is instructed to exit. + */ +int main(void) +{ + /* Save the value of the boot key memory before it is overwritten */ + uint16_t bootKeyPtrVal = *bootKeyPtr; + *bootKeyPtr = 0; + + /* Check the reason for the reset so we can act accordingly */ + uint8_t mcusr_state = MCUSR; // store the initial state of the Status register + MCUSR = 0; // clear all reset flags + + /* Watchdog may be configured with a 15 ms period so must disable it before going any further */ + wdt_disable(); + + if (mcusr_state & (1< TIMEOUT_PERIOD) + RunBootloader = false; + + LEDPulse(); + } + + /* Disconnect from the host - USB interface will be reset later along with the AVR */ + USB_Detach(); + + /* Jump to beginning of application space to run the sketch - do not reset */ + StartSketch(); +} + +/** Configures all hardware required for the bootloader. */ +void SetupHardware(void) +{ + /* Disable watchdog if enabled by bootloader/fuses */ + MCUSR &= ~(1 << WDRF); + wdt_disable(); + + /* Disable clock division */ + clock_prescale_set(clock_div_1); + + /* Relocate the interrupt vector table to the bootloader section */ + MCUCR = (1 << IVCE); + MCUCR = (1 << IVSEL); + + LED_SETUP(); + CPU_PRESCALE(0); + L_LED_OFF(); + TX_LED_OFF(); + RX_LED_OFF(); + + /* Initialize TIMER1 to handle bootloader timeout and LED tasks. + * With 16 MHz clock and 1/64 prescaler, timer 1 is clocked at 250 kHz + * Our chosen compare match generates an interrupt every 1 ms. + * This interrupt is disabled selectively when doing memory reading, erasing, + * or writing since SPM has tight timing requirements. + */ + OCR1AH = 0; + OCR1AL = 250; + TIMSK1 = (1 << OCIE1A); // enable timer 1 output compare A match interrupt + TCCR1B = ((1 << CS11) | (1 << CS10)); // 1/64 prescaler on timer 1 input + + /* Initialize USB Subsystem */ + USB_Init(); +} + +//uint16_t ctr = 0; +ISR(TIMER1_COMPA_vect, ISR_BLOCK) +{ + /* Reset counter */ + TCNT1H = 0; + TCNT1L = 0; + + /* Check whether the TX or RX LED one-shot period has elapsed. if so, turn off the LED */ + if (TxLEDPulse && !(--TxLEDPulse)) + TX_LED_OFF(); + if (RxLEDPulse && !(--RxLEDPulse)) + RX_LED_OFF(); + + if (pgm_read_word(0) != 0xFFFF) + Timeout++; +} + +/** Event handler for the USB_ConfigurationChanged event. This configures the device's endpoints ready + * to relay data to and from the attached USB host. + */ +void EVENT_USB_Device_ConfigurationChanged(void) +{ + /* Setup CDC Notification, Rx and Tx Endpoints */ + Endpoint_ConfigureEndpoint(CDC_NOTIFICATION_EPNUM, EP_TYPE_INTERRUPT, + ENDPOINT_DIR_IN, CDC_NOTIFICATION_EPSIZE, + ENDPOINT_BANK_SINGLE); + + Endpoint_ConfigureEndpoint(CDC_TX_EPNUM, EP_TYPE_BULK, + ENDPOINT_DIR_IN, CDC_TXRX_EPSIZE, + ENDPOINT_BANK_SINGLE); + + Endpoint_ConfigureEndpoint(CDC_RX_EPNUM, EP_TYPE_BULK, + ENDPOINT_DIR_OUT, CDC_TXRX_EPSIZE, + ENDPOINT_BANK_SINGLE); +} + +/** Event handler for the USB_ControlRequest event. This is used to catch and process control requests sent to + * the device from the USB host before passing along unhandled control requests to the library for processing + * internally. + */ +void EVENT_USB_Device_ControlRequest(void) +{ + /* Ignore any requests that aren't directed to the CDC interface */ + if ((USB_ControlRequest.bmRequestType & (CONTROL_REQTYPE_TYPE | CONTROL_REQTYPE_RECIPIENT)) != + (REQTYPE_CLASS | REQREC_INTERFACE)) + { + return; + } + + /* Process CDC specific control requests */ + switch (USB_ControlRequest.bRequest) + { + case CDC_REQ_GetLineEncoding: + if (USB_ControlRequest.bmRequestType == (REQDIR_DEVICETOHOST | REQTYPE_CLASS | REQREC_INTERFACE)) + { + Endpoint_ClearSETUP(); + + /* Write the line coding data to the control endpoint */ + Endpoint_Write_Control_Stream_LE(&LineEncoding, sizeof(CDC_LineEncoding_t)); + Endpoint_ClearOUT(); + } + + break; + case CDC_REQ_SetLineEncoding: + if (USB_ControlRequest.bmRequestType == (REQDIR_HOSTTODEVICE | REQTYPE_CLASS | REQREC_INTERFACE)) + { + Endpoint_ClearSETUP(); + + /* Read the line coding data in from the host into the global struct */ + Endpoint_Read_Control_Stream_LE(&LineEncoding, sizeof(CDC_LineEncoding_t)); + Endpoint_ClearIN(); + } + + break; + } +} + +#if !defined(NO_BLOCK_SUPPORT) +/** Reads or writes a block of EEPROM or FLASH memory to or from the appropriate CDC data endpoint, depending + * on the AVR910 protocol command issued. + * + * \param[in] Command Single character AVR910 protocol command indicating what memory operation to perform + */ +static void ReadWriteMemoryBlock(const uint8_t Command) +{ + uint16_t BlockSize; + char MemoryType; + + bool HighByte = false; + uint8_t LowByte = 0; + + BlockSize = (FetchNextCommandByte() << 8); + BlockSize |= FetchNextCommandByte(); + + MemoryType = FetchNextCommandByte(); + + if ((MemoryType != 'E') && (MemoryType != 'F')) + { + /* Send error byte back to the host */ + WriteNextResponseByte('?'); + + return; + } + + /* Disable timer 1 interrupt - can't afford to process nonessential interrupts + * while doing SPM tasks */ + TIMSK1 = 0; + + /* Check if command is to read memory */ + if (Command == 'g') + { + /* Re-enable RWW section */ + boot_rww_enable(); + + while (BlockSize--) + { + if (MemoryType == 'F') + { + /* Read the next FLASH byte from the current FLASH page */ + #if (FLASHEND > 0xFFFF) + WriteNextResponseByte(pgm_read_byte_far(CurrAddress | HighByte)); + #else + WriteNextResponseByte(pgm_read_byte(CurrAddress | HighByte)); + #endif + + /* If both bytes in current word have been read, increment the address counter */ + if (HighByte) + CurrAddress += 2; + + HighByte = !HighByte; + } + else + { + /* Read the next EEPROM byte into the endpoint */ + WriteNextResponseByte(eeprom_read_byte((uint8_t*)(intptr_t)(CurrAddress >> 1))); + + /* Increment the address counter after use */ + CurrAddress += 2; + } + } + } + else + { + uint32_t PageStartAddress = CurrAddress; + + if (MemoryType == 'F') + { + boot_page_erase(PageStartAddress); + boot_spm_busy_wait(); + } + + while (BlockSize--) + { + if (MemoryType == 'F') + { + /* If both bytes in current word have been written, increment the address counter */ + if (HighByte) + { + /* Write the next FLASH word to the current FLASH page */ + boot_page_fill(CurrAddress, ((FetchNextCommandByte() << 8) | LowByte)); + + /* Increment the address counter after use */ + CurrAddress += 2; + } + else + { + LowByte = FetchNextCommandByte(); + } + + HighByte = !HighByte; + } + else + { + /* Write the next EEPROM byte from the endpoint */ + eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)), FetchNextCommandByte()); + + /* Increment the address counter after use */ + CurrAddress += 2; + } + } + + /* If in FLASH programming mode, commit the page after writing */ + if (MemoryType == 'F') + { + /* Commit the flash page to memory */ + boot_page_write(PageStartAddress); + + /* Wait until write operation has completed */ + boot_spm_busy_wait(); + } + + /* Send response byte back to the host */ + WriteNextResponseByte('\r'); + } + + /* Re-enable timer 1 interrupt disabled earlier in this routine */ + TIMSK1 = (1 << OCIE1A); +} +#endif + +/** Retrieves the next byte from the host in the CDC data OUT endpoint, and clears the endpoint bank if needed + * to allow reception of the next data packet from the host. + * + * \return Next received byte from the host in the CDC data OUT endpoint + */ +static uint8_t FetchNextCommandByte(void) +{ + /* Select the OUT endpoint so that the next data byte can be read */ + Endpoint_SelectEndpoint(CDC_RX_EPNUM); + + /* If OUT endpoint empty, clear it and wait for the next packet from the host */ + while (!(Endpoint_IsReadWriteAllowed())) + { + Endpoint_ClearOUT(); + + while (!(Endpoint_IsOUTReceived())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return 0; + } + } + + /* Fetch the next byte from the OUT endpoint */ + return Endpoint_Read_8(); +} + +/** Writes the next response byte to the CDC data IN endpoint, and sends the endpoint back if needed to free up the + * bank when full ready for the next byte in the packet to the host. + * + * \param[in] Response Next response byte to send to the host + */ +static void WriteNextResponseByte(const uint8_t Response) +{ + /* Select the IN endpoint so that the next data byte can be written */ + Endpoint_SelectEndpoint(CDC_TX_EPNUM); + + /* If IN endpoint full, clear it and wait until ready for the next packet to the host */ + if (!(Endpoint_IsReadWriteAllowed())) + { + Endpoint_ClearIN(); + + while (!(Endpoint_IsINReady())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + } + + /* Write the next byte to the IN endpoint */ + Endpoint_Write_8(Response); + + TX_LED_ON(); + TxLEDPulse = TX_RX_LED_PULSE_PERIOD; +} + +#define STK_OK 0x10 +#define STK_INSYNC 0x14 // ' ' +#define CRC_EOP 0x20 // 'SPACE' +#define STK_GET_SYNC 0x30 // '0' + +#define STK_GET_PARAMETER 0x41 // 'A' +#define STK_SET_DEVICE 0x42 // 'B' +#define STK_SET_DEVICE_EXT 0x45 // 'E' +#define STK_LOAD_ADDRESS 0x55 // 'U' +#define STK_UNIVERSAL 0x56 // 'V' +#define STK_PROG_PAGE 0x64 // 'd' +#define STK_READ_PAGE 0x74 // 't' +#define STK_READ_SIGN 0x75 // 'u' + +/** Task to read in AVR910 commands from the CDC data OUT endpoint, process them, perform the required actions + * and send the appropriate response back to the host. + */ +void CDC_Task(void) +{ + /* Select the OUT endpoint */ + Endpoint_SelectEndpoint(CDC_RX_EPNUM); + + /* Check if endpoint has a command in it sent from the host */ + if (!(Endpoint_IsOUTReceived())) + return; + + RX_LED_ON(); + RxLEDPulse = TX_RX_LED_PULSE_PERIOD; + + /* Read in the bootloader command (first byte sent from host) */ + uint8_t Command = FetchNextCommandByte(); + + if (Command == 'E') + { + /* We nearly run out the bootloader timeout clock, + * leaving just a few hundred milliseconds so the + * bootloder has time to respond and service any + * subsequent requests */ + Timeout = TIMEOUT_PERIOD - 500; + + /* Re-enable RWW section - must be done here in case + * user has disabled verification on upload. */ + boot_rww_enable_safe(); + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + else if (Command == 'T') + { + FetchNextCommandByte(); + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + else if ((Command == 'L') || (Command == 'P')) + { + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + else if (Command == 't') + { + // Return ATMEGA128 part code - this is only to allow AVRProg to use the bootloader + WriteNextResponseByte(0x44); + WriteNextResponseByte(0x00); + } + else if (Command == 'a') + { + // Indicate auto-address increment is supported + WriteNextResponseByte('Y'); + } + else if (Command == 'A') + { + // Set the current address to that given by the host + CurrAddress = (FetchNextCommandByte() << 9); + CurrAddress |= (FetchNextCommandByte() << 1); + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + else if (Command == 'p') + { + // Indicate serial programmer back to the host + WriteNextResponseByte('S'); + } + else if (Command == 'S') + { + // Write the 7-byte software identifier to the endpoint + for (uint8_t CurrByte = 0; CurrByte < 7; CurrByte++) + WriteNextResponseByte(SOFTWARE_IDENTIFIER[CurrByte]); + } + else if (Command == 'V') + { + WriteNextResponseByte('0' + BOOTLOADER_VERSION_MAJOR); + WriteNextResponseByte('0' + BOOTLOADER_VERSION_MINOR); + } + else if (Command == 's') + { + WriteNextResponseByte(AVR_SIGNATURE_3); + WriteNextResponseByte(AVR_SIGNATURE_2); + WriteNextResponseByte(AVR_SIGNATURE_1); + } + else if (Command == 'e') + { + // Clear the application section of flash + for (uint32_t CurrFlashAddress = 0; CurrFlashAddress < BOOT_START_ADDR; CurrFlashAddress += SPM_PAGESIZE) + { + boot_page_erase(CurrFlashAddress); + boot_spm_busy_wait(); + boot_page_write(CurrFlashAddress); + boot_spm_busy_wait(); + } + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + #if !defined(NO_LOCK_BYTE_WRITE_SUPPORT) + else if (Command == 'l') + { + // Set the lock bits to those given by the host + boot_lock_bits_set(FetchNextCommandByte()); + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + #endif + else if (Command == 'r') + { + WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOCK_BITS)); + } + else if (Command == 'F') + { + WriteNextResponseByte(boot_lock_fuse_bits_get(GET_LOW_FUSE_BITS)); + } + else if (Command == 'N') + { + WriteNextResponseByte(boot_lock_fuse_bits_get(GET_HIGH_FUSE_BITS)); + } + else if (Command == 'Q') + { + WriteNextResponseByte(boot_lock_fuse_bits_get(GET_EXTENDED_FUSE_BITS)); + } + #if !defined(NO_BLOCK_SUPPORT) + else if (Command == 'b') + { + WriteNextResponseByte('Y'); + + // Send block size to the host + WriteNextResponseByte(SPM_PAGESIZE >> 8); + WriteNextResponseByte(SPM_PAGESIZE & 0xFF); + } + else if ((Command == 'B') || (Command == 'g')) + { + // Keep resetting the timeout counter if we're receiving self-programming instructions + Timeout = 0; + // Delegate the block write/read to a separate function for clarity + ReadWriteMemoryBlock(Command); + } + #endif + #if !defined(NO_FLASH_BYTE_SUPPORT) + else if (Command == 'C') + { + // Write the high byte to the current flash page + boot_page_fill(CurrAddress, FetchNextCommandByte()); + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + else if (Command == 'c') + { + // Write the low byte to the current flash page + boot_page_fill(CurrAddress | 0x01, FetchNextCommandByte()); + + // Increment the address + CurrAddress += 2; + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + else if (Command == 'm') + { + // Commit the flash page to memory + boot_page_write(CurrAddress); + + // Wait until write operation has completed + boot_spm_busy_wait(); + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + else if (Command == 'R') + { + #if (FLASHEND > 0xFFFF) + uint16_t ProgramWord = pgm_read_word_far(CurrAddress); + #else + uint16_t ProgramWord = pgm_read_word(CurrAddress); + #endif + + WriteNextResponseByte(ProgramWord >> 8); + WriteNextResponseByte(ProgramWord & 0xFF); + } + #endif + #if !defined(NO_EEPROM_BYTE_SUPPORT) + else if (Command == 'D') + { + // Read the byte from the endpoint and write it to the EEPROM + eeprom_write_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)), FetchNextCommandByte()); + + // Increment the address after use + CurrAddress += 2; + + // Send confirmation byte back to the host + WriteNextResponseByte('\r'); + } + else if (Command == 'd') + { + // Read the EEPROM byte and write it to the endpoint + WriteNextResponseByte(eeprom_read_byte((uint8_t*)((intptr_t)(CurrAddress >> 1)))); + + // Increment the address after use + CurrAddress += 2; + } + #endif + else if (Command != 27) + { + // Unknown (non-sync) command, return fail code + WriteNextResponseByte('?'); + } + + + /* Select the IN endpoint */ + Endpoint_SelectEndpoint(CDC_TX_EPNUM); + + /* Remember if the endpoint is completely full before clearing it */ + bool IsEndpointFull = !(Endpoint_IsReadWriteAllowed()); + + /* Send the endpoint data to the host */ + Endpoint_ClearIN(); + + /* If a full endpoint's worth of data was sent, we need to send an empty packet afterwards to signal end of transfer */ + if (IsEndpointFull) + { + while (!(Endpoint_IsINReady())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + + Endpoint_ClearIN(); + } + + /* Wait until the data has been sent to the host */ + while (!(Endpoint_IsINReady())) + { + if (USB_DeviceState == DEVICE_STATE_Unattached) + return; + } + + /* Select the OUT endpoint */ + Endpoint_SelectEndpoint(CDC_RX_EPNUM); + + /* Acknowledge the command from the host */ + Endpoint_ClearOUT(); +} + diff --git a/hardware/arduino/avr/bootloaders/caterina/Caterina.h b/hardware/arduino/avr/bootloaders/caterina/Caterina.h new file mode 100755 index 000000000..f8251d483 --- /dev/null +++ b/hardware/arduino/avr/bootloaders/caterina/Caterina.h @@ -0,0 +1,99 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2011. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaim all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * Header file for BootloaderCDC.c. + */ + +#ifndef _CDC_H_ +#define _CDC_H_ + + /* Includes: */ + #include + #include + #include + #include + #include + #include + #include + + #include "Descriptors.h" + + #include + /* Macros: */ + /** Version major of the CDC bootloader. */ + #define BOOTLOADER_VERSION_MAJOR 0x01 + + /** Version minor of the CDC bootloader. */ + #define BOOTLOADER_VERSION_MINOR 0x00 + + /** Hardware version major of the CDC bootloader. */ + #define BOOTLOADER_HWVERSION_MAJOR 0x01 + + /** Hardware version minor of the CDC bootloader. */ + #define BOOTLOADER_HWVERSION_MINOR 0x00 + + /** Eight character bootloader firmware identifier reported to the host when requested */ + #define SOFTWARE_IDENTIFIER "CATERINA" + + #define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n)) + #define LED_SETUP() DDRC |= (1<<7); DDRB |= (1<<0); DDRD |= (1<<5); + #define L_LED_OFF() PORTC &= ~(1<<7) + #define L_LED_ON() PORTC |= (1<<7) + #define L_LED_TOGGLE() PORTC ^= (1<<7) + #define TX_LED_OFF() PORTD |= (1<<5) + #define TX_LED_ON() PORTD &= ~(1<<5) + #define RX_LED_OFF() PORTB |= (1<<0) + #define RX_LED_ON() PORTB &= ~(1<<0) + + /* Type Defines: */ + /** Type define for a non-returning pointer to the start of the loaded application in flash memory. */ + typedef void (*AppPtr_t)(void) ATTR_NO_RETURN; + + /* Function Prototypes: */ + void StartSketch(void); + void LEDPulse(void); + + void CDC_Task(void); + void SetupHardware(void); + + void EVENT_USB_Device_ConfigurationChanged(void); + + #if defined(INCLUDE_FROM_CATERINA_C) || defined(__DOXYGEN__) + #if !defined(NO_BLOCK_SUPPORT) + static void ReadWriteMemoryBlock(const uint8_t Command); + #endif + static uint8_t FetchNextCommandByte(void); + static void WriteNextResponseByte(const uint8_t Response); + #endif + +#endif + diff --git a/hardware/arduino/avr/bootloaders/caterina/Descriptors.c b/hardware/arduino/avr/bootloaders/caterina/Descriptors.c new file mode 100755 index 000000000..c5feaf5b6 --- /dev/null +++ b/hardware/arduino/avr/bootloaders/caterina/Descriptors.c @@ -0,0 +1,262 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2011. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaim all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * USB Device Descriptors, for library use when in USB device mode. Descriptors are special + * computer-readable structures which the host requests upon device enumeration, to determine + * the device's capabilities and functions. + */ + +#include "Descriptors.h" + +/** Device descriptor structure. This descriptor, located in SRAM memory, describes the overall + * device characteristics, including the supported USB version, control endpoint size and the + * number of device configurations. The descriptor is read out by the USB host when the enumeration + * process begins. + */ +const USB_Descriptor_Device_t DeviceDescriptor = +{ + .Header = {.Size = sizeof(USB_Descriptor_Device_t), .Type = DTYPE_Device}, + + .USBSpecification = VERSION_BCD(01.10), + .Class = CDC_CSCP_CDCClass, + .SubClass = CDC_CSCP_NoSpecificSubclass, + .Protocol = CDC_CSCP_NoSpecificProtocol, + + .Endpoint0Size = FIXED_CONTROL_ENDPOINT_SIZE, + + .VendorID = DEVICE_VID, + .ProductID = DEVICE_PID, + .ReleaseNumber = VERSION_BCD(00.01), + + .ManufacturerStrIndex = 0x02, + .ProductStrIndex = 0x01, + .SerialNumStrIndex = NO_DESCRIPTOR, + + .NumberOfConfigurations = FIXED_NUM_CONFIGURATIONS +}; + +/** Configuration descriptor structure. This descriptor, located in SRAM memory, describes the usage + * of the device in one of its supported configurations, including information about any device interfaces + * and endpoints. The descriptor is read out by the USB host during the enumeration process when selecting + * a configuration so that the host may correctly communicate with the USB device. + */ +const USB_Descriptor_Configuration_t ConfigurationDescriptor = +{ + .Config = + { + .Header = {.Size = sizeof(USB_Descriptor_Configuration_Header_t), .Type = DTYPE_Configuration}, + + .TotalConfigurationSize = sizeof(USB_Descriptor_Configuration_t), + .TotalInterfaces = 2, + + .ConfigurationNumber = 1, + .ConfigurationStrIndex = NO_DESCRIPTOR, + + .ConfigAttributes = USB_CONFIG_ATTR_BUSPOWERED, + + .MaxPowerConsumption = USB_CONFIG_POWER_MA(100) + }, + + .CDC_CCI_Interface = + { + .Header = {.Size = sizeof(USB_Descriptor_Interface_t), .Type = DTYPE_Interface}, + + .InterfaceNumber = 0, + .AlternateSetting = 0, + + .TotalEndpoints = 1, + + .Class = CDC_CSCP_CDCClass, + .SubClass = CDC_CSCP_ACMSubclass, + .Protocol = CDC_CSCP_ATCommandProtocol, + + .InterfaceStrIndex = NO_DESCRIPTOR + }, + + .CDC_Functional_Header = + { + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalHeader_t), .Type = DTYPE_CSInterface}, + .Subtype = 0x00, + + .CDCSpecification = VERSION_BCD(01.10), + }, + + .CDC_Functional_ACM = + { + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalACM_t), .Type = DTYPE_CSInterface}, + .Subtype = 0x02, + + .Capabilities = 0x04, + }, + + .CDC_Functional_Union = + { + .Header = {.Size = sizeof(USB_CDC_Descriptor_FunctionalUnion_t), .Type = DTYPE_CSInterface}, + .Subtype = 0x06, + + .MasterInterfaceNumber = 0, + .SlaveInterfaceNumber = 1, + }, + + .CDC_NotificationEndpoint = + { + .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, + + .EndpointAddress = (ENDPOINT_DIR_IN | CDC_NOTIFICATION_EPNUM), + .Attributes = (EP_TYPE_INTERRUPT | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), + .EndpointSize = CDC_NOTIFICATION_EPSIZE, + .PollingIntervalMS = 0xFF + }, + + .CDC_DCI_Interface = + { + .Header = {.Size = sizeof(USB_Descriptor_Interface_t), .Type = DTYPE_Interface}, + + .InterfaceNumber = 1, + .AlternateSetting = 0, + + .TotalEndpoints = 2, + + .Class = CDC_CSCP_CDCDataClass, + .SubClass = CDC_CSCP_NoDataSubclass, + .Protocol = CDC_CSCP_NoDataProtocol, + + .InterfaceStrIndex = NO_DESCRIPTOR + }, + + .CDC_DataOutEndpoint = + { + .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, + + .EndpointAddress = (ENDPOINT_DIR_OUT | CDC_RX_EPNUM), + .Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), + .EndpointSize = CDC_TXRX_EPSIZE, + .PollingIntervalMS = 0x01 + }, + + .CDC_DataInEndpoint = + { + .Header = {.Size = sizeof(USB_Descriptor_Endpoint_t), .Type = DTYPE_Endpoint}, + + .EndpointAddress = (ENDPOINT_DIR_IN | CDC_TX_EPNUM), + .Attributes = (EP_TYPE_BULK | ENDPOINT_ATTR_NO_SYNC | ENDPOINT_USAGE_DATA), + .EndpointSize = CDC_TXRX_EPSIZE, + .PollingIntervalMS = 0x01 + } +}; + +/** Language descriptor structure. This descriptor, located in SRAM memory, is returned when the host requests + * the string descriptor with index 0 (the first index). It is actually an array of 16-bit integers, which indicate + * via the language ID table available at USB.org what languages the device supports for its string descriptors. + */ +const USB_Descriptor_String_t LanguageString = +{ + .Header = {.Size = USB_STRING_LEN(1), .Type = DTYPE_String}, + + .UnicodeString = {LANGUAGE_ID_ENG} +}; + +/** Product descriptor string. This is a Unicode string containing the product's details in human readable form, + * and is read out upon request by the host when the appropriate string ID is requested, listed in the Device + * Descriptor. + */ +const USB_Descriptor_String_t ProductString = +{ + .Header = {.Size = USB_STRING_LEN(16), .Type = DTYPE_String}, + + #if DEVICE_PID == 0x0036 + .UnicodeString = L"Arduino Leonardo" + #else + .UnicodeString = L"USB IO board " + #endif +}; + +const USB_Descriptor_String_t ManufNameString = +{ + .Header = {.Size = USB_STRING_LEN(11), .Type = DTYPE_String}, + + #if DEVICE_VID == 0x2341 + .UnicodeString = L"Arduino LLC" + #else + .UnicodeString = L"Unknown " + #endif +}; + +/** This function is called by the library when in device mode, and must be overridden (see LUFA library "USB Descriptors" + * documentation) by the application code so that the address and size of a requested descriptor can be given + * to the USB library. When the device receives a Get Descriptor request on the control endpoint, this function + * is called so that the descriptor details can be passed back and the appropriate descriptor sent back to the + * USB host. + */ +uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, + const uint8_t wIndex, + const void** const DescriptorAddress) +{ + const uint8_t DescriptorType = (wValue >> 8); + const uint8_t DescriptorNumber = (wValue & 0xFF); + + const void* Address = NULL; + uint16_t Size = NO_DESCRIPTOR; + + switch (DescriptorType) + { + case DTYPE_Device: + Address = &DeviceDescriptor; + Size = sizeof(USB_Descriptor_Device_t); + break; + case DTYPE_Configuration: + Address = &ConfigurationDescriptor; + Size = sizeof(USB_Descriptor_Configuration_t); + break; + case DTYPE_String: + if (!(DescriptorNumber)) + { + Address = &LanguageString; + Size = LanguageString.Header.Size; + } + else if (DescriptorNumber == DeviceDescriptor.ProductStrIndex) + { + Address = &ProductString; + Size = ProductString.Header.Size; + } else if (DescriptorNumber == DeviceDescriptor.ManufacturerStrIndex) + { + Address = &ManufNameString; + Size = ManufNameString.Header.Size; + } + + break; + } + + *DescriptorAddress = Address; + return Size; +} + diff --git a/hardware/arduino/avr/bootloaders/caterina/Descriptors.h b/hardware/arduino/avr/bootloaders/caterina/Descriptors.h new file mode 100755 index 000000000..94091aef0 --- /dev/null +++ b/hardware/arduino/avr/bootloaders/caterina/Descriptors.h @@ -0,0 +1,139 @@ +/* + LUFA Library + Copyright (C) Dean Camera, 2011. + + dean [at] fourwalledcubicle [dot] com + www.lufa-lib.org +*/ + +/* + Copyright 2011 Dean Camera (dean [at] fourwalledcubicle [dot] com) + + Permission to use, copy, modify, distribute, and sell this + software and its documentation for any purpose is hereby granted + without fee, provided that the above copyright notice appear in + all copies and that both that the copyright notice and this + permission notice and warranty disclaimer appear in supporting + documentation, and that the name of the author not be used in + advertising or publicity pertaining to distribution of the + software without specific, written prior permission. + + The author disclaim all warranties with regard to this + software, including all implied warranties of merchantability + and fitness. In no event shall the author be liable for any + special, indirect or consequential damages or any damages + whatsoever resulting from loss of use, data or profits, whether + in an action of contract, negligence or other tortious action, + arising out of or in connection with the use or performance of + this software. +*/ + +/** \file + * + * Header file for Descriptors.c. + */ + +#ifndef _DESCRIPTORS_H_ +#define _DESCRIPTORS_H_ + + /* Includes: */ + #include + + /* Macros: */ + #if defined(__AVR_AT90USB1287__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x97 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_AT90USB647__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x96 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_AT90USB1286__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x97 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_AT90USB646__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x96 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_ATmega32U6__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x95 + #define AVR_SIGNATURE_3 0x88 + #elif defined(__AVR_ATmega32U4__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x95 + #define AVR_SIGNATURE_3 0x87 + #elif defined(__AVR_ATmega16U4__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x94 + #define AVR_SIGNATURE_3 0x88 + #elif defined(__AVR_ATmega32U2__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x95 + #define AVR_SIGNATURE_3 0x8A + #elif defined(__AVR_ATmega16U2__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x94 + #define AVR_SIGNATURE_3 0x89 + #elif defined(__AVR_AT90USB162__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x94 + #define AVR_SIGNATURE_3 0x82 + #elif defined(__AVR_ATmega8U2__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x93 + #define AVR_SIGNATURE_3 0x89 + #elif defined(__AVR_AT90USB82__) + #define AVR_SIGNATURE_1 0x1E + #define AVR_SIGNATURE_2 0x94 + #define AVR_SIGNATURE_3 0x82 + #else + #error The selected AVR part is not currently supported by this bootloader. + #endif + + /** Endpoint number for the CDC control interface event notification endpoint. */ + #define CDC_NOTIFICATION_EPNUM 2 + + /** Endpoint number for the CDC data interface TX (data IN) endpoint. */ + #define CDC_TX_EPNUM 3 + + /** Endpoint number for the CDC data interface RX (data OUT) endpoint. */ + #define CDC_RX_EPNUM 4 + + /** Size of the CDC data interface TX and RX data endpoint banks, in bytes. */ + #define CDC_TXRX_EPSIZE 16 + + /** Size of the CDC control interface notification endpoint bank, in bytes. */ + #define CDC_NOTIFICATION_EPSIZE 8 + + /* Type Defines: */ + /** Type define for the device configuration descriptor structure. This must be defined in the + * application code, as the configuration descriptor contains several sub-descriptors which + * vary between devices, and which describe the device's usage to the host. + */ + typedef struct + { + USB_Descriptor_Configuration_Header_t Config; + + // CDC Control Interface + USB_Descriptor_Interface_t CDC_CCI_Interface; + USB_CDC_Descriptor_FunctionalHeader_t CDC_Functional_Header; + USB_CDC_Descriptor_FunctionalACM_t CDC_Functional_ACM; + USB_CDC_Descriptor_FunctionalUnion_t CDC_Functional_Union; + USB_Descriptor_Endpoint_t CDC_NotificationEndpoint; + + // CDC Data Interface + USB_Descriptor_Interface_t CDC_DCI_Interface; + USB_Descriptor_Endpoint_t CDC_DataOutEndpoint; + USB_Descriptor_Endpoint_t CDC_DataInEndpoint; + } USB_Descriptor_Configuration_t; + + /* Function Prototypes: */ + uint16_t CALLBACK_USB_GetDescriptor(const uint16_t wValue, + const uint8_t wIndex, + const void** const DescriptorAddress) + ATTR_WARN_UNUSED_RESULT ATTR_NON_NULL_PTR_ARG(3); + +#endif + diff --git a/hardware/arduino/avr/bootloaders/caterina/Makefile b/hardware/arduino/avr/bootloaders/caterina/Makefile new file mode 100755 index 000000000..873f8bd20 --- /dev/null +++ b/hardware/arduino/avr/bootloaders/caterina/Makefile @@ -0,0 +1,728 @@ +# Hey Emacs, this is a -*- makefile -*- +#---------------------------------------------------------------------------- +# WinAVR Makefile Template written by Eric B. Weddington, Jrg Wunsch, et al. +# >> Modified for use with the LUFA project. << +# +# Released to the Public Domain +# +# Additional material for this makefile was written by: +# Peter Fleury +# Tim Henigan +# Colin O'Flynn +# Reiner Patommel +# Markus Pfaff +# Sander Pool +# Frederik Rouleau +# Carlos Lamas +# Dean Camera +# Opendous Inc. +# Denver Gingerich +# +#---------------------------------------------------------------------------- +# On command line: +# +# make all = Make software. +# +# make clean = Clean out built project files. +# +# make coff = Convert ELF to AVR COFF. +# +# make extcoff = Convert ELF to AVR Extended COFF. +# +# make program = Download the hex file to the device, using avrdude. +# Please customize the avrdude settings below first! +# +# make doxygen = Generate DoxyGen documentation for the project (must have +# DoxyGen installed) +# +# make debug = Start either simulavr or avarice as specified for debugging, +# with avr-gdb or avr-insight as the front end for debugging. +# +# make filename.s = Just compile filename.c into the assembler code only. +# +# make filename.i = Create a preprocessed source file for use in submitting +# bug reports to the GCC project. +# +# To rebuild project do "make clean" then "make all". +#---------------------------------------------------------------------------- + +# USB vendor ID (VID) +# official Arduino LLC VID +# VID = 0x2341 + + +# USB product ID (PID) +# official Leonardo PID +# PID = 0x0036 + + +# MCU name +MCU = atmega32u4 + + +# Target architecture (see library "Board Types" documentation). +ARCH = AVR8 + + +# Target board (see library "Board Types" documentation, NONE for projects not requiring +# LUFA board drivers). If USER is selected, put custom board drivers in a directory called +# "Board" inside the application directory. +BOARD = USER + + +# Processor frequency. +# This will define a symbol, F_CPU, in all source code files equal to the +# processor frequency in Hz. You can then use this symbol in your source code to +# calculate timings. Do NOT tack on a 'UL' at the end, this will be done +# automatically to create a 32-bit value in your source code. +# +# This will be an integer division of F_USB below, as it is sourced by +# F_USB after it has run through any CPU prescalers. Note that this value +# does not *change* the processor frequency - it should merely be updated to +# reflect the processor speed set externally so that the code can use accurate +# software delays. +F_CPU = 16000000 + + +# Input clock frequency. +# This will define a symbol, F_USB, in all source code files equal to the +# input clock frequency (before any prescaling is performed) in Hz. This value may +# differ from F_CPU if prescaling is used on the latter, and is required as the +# raw input clock is fed directly to the PLL sections of the AVR for high speed +# clock generation for the USB and other AVR subsections. Do NOT tack on a 'UL' +# at the end, this will be done automatically to create a 32-bit value in your +# source code. +# +# If no clock division is performed on the input clock inside the AVR (via the +# CPU clock adjust registers or the clock division fuses), this will be equal to F_CPU. +F_USB = $(F_CPU) + + +# Starting byte address of the bootloader, as a byte address - computed via the formula +# BOOT_START = ((FLASH_SIZE_KB - BOOT_SECTION_SIZE_KB) * 1024) +# +# Note that the bootloader size and start address given in AVRStudio is in words and not +# bytes, and so will need to be doubled to obtain the byte address needed by AVR-GCC. +FLASH_SIZE_KB = 32 +BOOT_SECTION_SIZE_KB = 4 +BOOT_START = 0x$(shell echo "obase=16; ($(FLASH_SIZE_KB) - $(BOOT_SECTION_SIZE_KB)) * 1024" | bc) + + +# Output format. (can be srec, ihex, binary) +FORMAT = ihex + + +# Target file name (without extension). +TARGET = Caterina + + +# Object files directory +# To put object files in current directory, use a dot (.), do NOT make +# this an empty or blank macro! +OBJDIR = . + + +# Path to the LUFA library +LUFA_PATH = ../../../../../LUFA-111009 + + +# LUFA library compile-time options and predefined tokens +LUFA_OPTS = -D USB_DEVICE_ONLY +LUFA_OPTS += -D DEVICE_STATE_AS_GPIOR=0 +LUFA_OPTS += -D ORDERED_EP_CONFIG +LUFA_OPTS += -D FIXED_CONTROL_ENDPOINT_SIZE=8 +LUFA_OPTS += -D FIXED_NUM_CONFIGURATIONS=1 +LUFA_OPTS += -D USE_RAM_DESCRIPTORS +LUFA_OPTS += -D USE_STATIC_OPTIONS="(USB_DEVICE_OPT_FULLSPEED | USB_OPT_REG_ENABLED | USB_OPT_AUTO_PLL)" +LUFA_OPTS += -D NO_INTERNAL_SERIAL +LUFA_OPTS += -D NO_DEVICE_SELF_POWER +LUFA_OPTS += -D NO_DEVICE_REMOTE_WAKEUP +LUFA_OPTS += -D NO_SOF_EVENTS + +#LUFA_OPTS += -D NO_BLOCK_SUPPORT +#LUFA_OPTS += -D NO_EEPROM_BYTE_SUPPORT +#LUFA_OPTS += -D NO_FLASH_BYTE_SUPPORT +LUFA_OPTS += -D NO_LOCK_BYTE_WRITE_SUPPORT + + +# Create the LUFA source path variables by including the LUFA root makefile +include $(LUFA_PATH)/LUFA/makefile + + +# List C source files here. (C dependencies are automatically generated.) +SRC = $(TARGET).c \ + Descriptors.c \ + $(LUFA_SRC_USB) \ + + +# List C++ source files here. (C dependencies are automatically generated.) +CPPSRC = + + +# List Assembler source files here. +# Make them always end in a capital .S. Files ending in a lowercase .s +# will not be considered source files but generated files (assembler +# output from the compiler), and will be deleted upon "make clean"! +# Even though the DOS/Win* filesystem matches both .s and .S the same, +# it will preserve the spelling of the filenames, and gcc itself does +# care about how the name is spelled on its command-line. +ASRC = + + +# Optimization level, can be [0, 1, 2, 3, s]. +# 0 = turn off optimization. s = optimize for size. +# (Note: 3 is not always the best optimization level. See avr-libc FAQ.) +OPT = s + + +# Debugging format. +# Native formats for AVR-GCC's -g are dwarf-2 [default] or stabs. +# AVR Studio 4.10 requires dwarf-2. +# AVR [Extended] COFF format requires stabs, plus an avr-objcopy run. +DEBUG = dwarf-2 + + +# List any extra directories to look for include files here. +# Each directory must be seperated by a space. +# Use forward slashes for directory separators. +# For a directory that has spaces, enclose it in quotes. +EXTRAINCDIRS = $(LUFA_PATH)/ + + +# Compiler flag to set the C Standard level. +# c89 = "ANSI" C +# gnu89 = c89 plus GCC extensions +# c99 = ISO C99 standard (not yet fully implemented) +# gnu99 = c99 plus GCC extensions +CSTANDARD = -std=c99 + + +# Place -D or -U options here for C sources +CDEFS = -DF_CPU=$(F_CPU)UL +CDEFS += -DF_USB=$(F_USB)UL +CDEFS += -DBOARD=BOARD_$(BOARD) -DARCH=ARCH_$(ARCH) +CDEFS += -DBOOT_START_ADDR=$(BOOT_START)UL +CDEFS += -DDEVICE_VID=$(VID)UL +CDEFS += -DDEVICE_PID=$(PID)UL +CDEFS += $(LUFA_OPTS) + + +# Place -D or -U options here for ASM sources +ADEFS = -DF_CPU=$(F_CPU) +ADEFS += -DF_USB=$(F_USB)UL +ADEFS += -DBOARD=BOARD_$(BOARD) +ADEFS += -DBOOT_START_ADDR=$(BOOT_START)UL +ADEFS += $(LUFA_OPTS) + + +# Place -D or -U options here for C++ sources +CPPDEFS = -DF_CPU=$(F_CPU)UL +CPPDEFS += -DF_USB=$(F_USB)UL +CPPDEFS += -DBOARD=BOARD_$(BOARD) +CPPDEFS += -DBOOT_START_ADDR=$(BOOT_START)UL +CPPDEFS += $(LUFA_OPTS) +#CPPDEFS += -D__STDC_LIMIT_MACROS +#CPPDEFS += -D__STDC_CONSTANT_MACROS + + + +#---------------- Compiler Options C ---------------- +# -g*: generate debugging information +# -O*: optimization level +# -f...: tuning, see GCC manual and avr-libc documentation +# -Wall...: warning level +# -Wa,...: tell GCC to pass this to the assembler. +# -adhlns...: create assembler listing +CFLAGS = -g$(DEBUG) +CFLAGS += $(CDEFS) +CFLAGS += -O$(OPT) +CFLAGS += -funsigned-char +CFLAGS += -funsigned-bitfields +CFLAGS += -ffunction-sections +CFLAGS += -fno-inline-small-functions +CFLAGS += -fpack-struct +CFLAGS += -fshort-enums +CFLAGS += -fno-strict-aliasing +CFLAGS += -Wall +CFLAGS += -Wstrict-prototypes +#CFLAGS += -mshort-calls +#CFLAGS += -fno-unit-at-a-time +#CFLAGS += -Wundef +#CFLAGS += -Wunreachable-code +#CFLAGS += -Wsign-compare +CFLAGS += -Wa,-adhlns=$(<:%.c=$(OBJDIR)/%.lst) +CFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS)) +CFLAGS += $(CSTANDARD) + + +#---------------- Compiler Options C++ ---------------- +# -g*: generate debugging information +# -O*: optimization level +# -f...: tuning, see GCC manual and avr-libc documentation +# -Wall...: warning level +# -Wa,...: tell GCC to pass this to the assembler. +# -adhlns...: create assembler listing +CPPFLAGS = -g$(DEBUG) +CPPFLAGS += $(CPPDEFS) +CPPFLAGS += -O$(OPT) +CPPFLAGS += -funsigned-char +CPPFLAGS += -funsigned-bitfields +CPPFLAGS += -fpack-struct +CPPFLAGS += -fshort-enums +CPPFLAGS += -fno-exceptions +CPPFLAGS += -Wall +CPPFLAGS += -Wundef +#CPPFLAGS += -mshort-calls +#CPPFLAGS += -fno-unit-at-a-time +#CPPFLAGS += -Wstrict-prototypes +#CPPFLAGS += -Wunreachable-code +#CPPFLAGS += -Wsign-compare +CPPFLAGS += -Wa,-adhlns=$(<:%.cpp=$(OBJDIR)/%.lst) +CPPFLAGS += $(patsubst %,-I%,$(EXTRAINCDIRS)) +#CPPFLAGS += $(CSTANDARD) + + +#---------------- Assembler Options ---------------- +# -Wa,...: tell GCC to pass this to the assembler. +# -adhlns: create listing +# -gstabs: have the assembler create line number information; note that +# for use in COFF files, additional information about filenames +# and function names needs to be present in the assembler source +# files -- see avr-libc docs [FIXME: not yet described there] +# -listing-cont-lines: Sets the maximum number of continuation lines of hex +# dump that will be displayed for a given single line of source input. +ASFLAGS = $(ADEFS) -Wa,-adhlns=$(<:%.S=$(OBJDIR)/%.lst),-gstabs,--listing-cont-lines=100 + + +#---------------- Library Options ---------------- +# Minimalistic printf version +PRINTF_LIB_MIN = -Wl,-u,vfprintf -lprintf_min + +# Floating point printf version (requires MATH_LIB = -lm below) +PRINTF_LIB_FLOAT = -Wl,-u,vfprintf -lprintf_flt + +# If this is left blank, then it will use the Standard printf version. +PRINTF_LIB = +#PRINTF_LIB = $(PRINTF_LIB_MIN) +#PRINTF_LIB = $(PRINTF_LIB_FLOAT) + + +# Minimalistic scanf version +SCANF_LIB_MIN = -Wl,-u,vfscanf -lscanf_min + +# Floating point + %[ scanf version (requires MATH_LIB = -lm below) +SCANF_LIB_FLOAT = -Wl,-u,vfscanf -lscanf_flt + +# If this is left blank, then it will use the Standard scanf version. +SCANF_LIB = +#SCANF_LIB = $(SCANF_LIB_MIN) +#SCANF_LIB = $(SCANF_LIB_FLOAT) + + +MATH_LIB = -lm + + +# List any extra directories to look for libraries here. +# Each directory must be seperated by a space. +# Use forward slashes for directory separators. +# For a directory that has spaces, enclose it in quotes. +EXTRALIBDIRS = + + + +#---------------- External Memory Options ---------------- + +# 64 KB of external RAM, starting after internal RAM (ATmega128!), +# used for variables (.data/.bss) and heap (malloc()). +#EXTMEMOPTS = -Wl,-Tdata=0x801100,--defsym=__heap_end=0x80ffff + +# 64 KB of external RAM, starting after internal RAM (ATmega128!), +# only used for heap (malloc()). +#EXTMEMOPTS = -Wl,--section-start,.data=0x801100,--defsym=__heap_end=0x80ffff + +EXTMEMOPTS = + + + +#---------------- Linker Options ---------------- +# -Wl,...: tell GCC to pass this to linker. +# -Map: create map file +# --cref: add cross reference to map file +LDFLAGS = -Wl,-Map=$(TARGET).map,--cref +LDFLAGS += -Wl,--section-start=.text=$(BOOT_START) +LDFLAGS += -Wl,--relax +LDFLAGS += -Wl,--gc-sections +LDFLAGS += $(EXTMEMOPTS) +LDFLAGS += $(patsubst %,-L%,$(EXTRALIBDIRS)) +LDFLAGS += $(PRINTF_LIB) $(SCANF_LIB) $(MATH_LIB) +#LDFLAGS += -T linker_script.x + + + +#---------------- Programming Options (avrdude) ---------------- + +# Programming hardware +# Type: avrdude -c ? +# to get a full listing. +# +AVRDUDE_PROGRAMMER = avrispmkII + +# com1 = serial port. Use lpt1 to connect to parallel port. +AVRDUDE_PORT = usb + +AVRDUDE_WRITE_FLASH = -U flash:w:$(TARGET).hex +#AVRDUDE_WRITE_EEPROM = -U eeprom:w:$(TARGET).eep + + +# Uncomment the following if you want avrdude's erase cycle counter. +# Note that this counter needs to be initialized first using -Yn, +# see avrdude manual. +#AVRDUDE_ERASE_COUNTER = -y + +# Uncomment the following if you do /not/ wish a verification to be +# performed after programming the device. +#AVRDUDE_NO_VERIFY = -V + +# Increase verbosity level. Please use this when submitting bug +# reports about avrdude. See +# to submit bug reports. +#AVRDUDE_VERBOSE = -v -v + +AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) +AVRDUDE_FLAGS += $(AVRDUDE_NO_VERIFY) +AVRDUDE_FLAGS += $(AVRDUDE_VERBOSE) +AVRDUDE_FLAGS += $(AVRDUDE_ERASE_COUNTER) + + + +#---------------- Debugging Options ---------------- + +# For simulavr only - target MCU frequency. +DEBUG_MFREQ = $(F_CPU) + +# Set the DEBUG_UI to either gdb or insight. +# DEBUG_UI = gdb +DEBUG_UI = insight + +# Set the debugging back-end to either avarice, simulavr. +DEBUG_BACKEND = avarice +#DEBUG_BACKEND = simulavr + +# GDB Init Filename. +GDBINIT_FILE = __avr_gdbinit + +# When using avarice settings for the JTAG +JTAG_DEV = /dev/com1 + +# Debugging port used to communicate between GDB / avarice / simulavr. +DEBUG_PORT = 4242 + +# Debugging host used to communicate between GDB / avarice / simulavr, normally +# just set to localhost unless doing some sort of crazy debugging when +# avarice is running on a different computer. +DEBUG_HOST = localhost + + + +#============================================================================ + + +# Define programs and commands. +SHELL = sh +CC = avr-gcc +OBJCOPY = avr-objcopy +OBJDUMP = avr-objdump +SIZE = avr-size +AR = avr-ar rcs +NM = avr-nm +AVRDUDE = /Applications/avrdude -C /Applications/avrdude.conf -B 1 +REMOVE = rm -f +REMOVEDIR = rm -rf +COPY = cp +WINSHELL = cmd + + +# Define Messages +# English +MSG_ERRORS_NONE = Errors: none +MSG_BEGIN = -------- begin -------- +MSG_END = -------- end -------- +MSG_SIZE_BEFORE = Size before: +MSG_SIZE_AFTER = Size after: +MSG_COFF = Converting to AVR COFF: +MSG_EXTENDED_COFF = Converting to AVR Extended COFF: +MSG_FLASH = Creating load file for Flash: +MSG_EEPROM = Creating load file for EEPROM: +MSG_EXTENDED_LISTING = Creating Extended Listing: +MSG_SYMBOL_TABLE = Creating Symbol Table: +MSG_LINKING = Linking: +MSG_COMPILING = Compiling C: +MSG_COMPILING_CPP = Compiling C++: +MSG_ASSEMBLING = Assembling: +MSG_CLEANING = Cleaning project: +MSG_CREATING_LIBRARY = Creating library: + + + + +# Define all object files. +OBJ = $(SRC:%.c=$(OBJDIR)/%.o) $(CPPSRC:%.cpp=$(OBJDIR)/%.o) $(ASRC:%.S=$(OBJDIR)/%.o) + +# Define all listing files. +LST = $(SRC:%.c=$(OBJDIR)/%.lst) $(CPPSRC:%.cpp=$(OBJDIR)/%.lst) $(ASRC:%.S=$(OBJDIR)/%.lst) + + +# Compiler flags to generate dependency files. +GENDEPFLAGS = -MMD -MP -MF .dep/$(@F).d + + +# Combine all necessary flags and optional flags. +# Add target processor to flags. +ALL_CFLAGS = -mmcu=$(MCU) -I. $(CFLAGS) $(GENDEPFLAGS) +ALL_CPPFLAGS = -mmcu=$(MCU) -I. -x c++ $(CPPFLAGS) $(GENDEPFLAGS) +ALL_ASFLAGS = -mmcu=$(MCU) -I. -x assembler-with-cpp $(ASFLAGS) + + + + + +# Default target. +all: begin gccversion sizebefore build sizeafter end + +# Change the build target to build a HEX file or a library. +build: elf hex eep lss sym +#build: lib + + +elf: $(TARGET).elf +hex: $(TARGET).hex +eep: $(TARGET).eep +lss: $(TARGET).lss +sym: $(TARGET).sym +LIBNAME=lib$(TARGET).a +lib: $(LIBNAME) + + + +# Eye candy. +# AVR Studio 3.x does not check make's exit code but relies on +# the following magic strings to be generated by the compile job. +begin: + @echo + @echo $(MSG_BEGIN) + +end: + @echo $(MSG_END) + @echo + + +# Display size of file. +HEXSIZE = $(SIZE) --target=$(FORMAT) $(TARGET).hex +ELFSIZE = $(SIZE) $(MCU_FLAG) $(FORMAT_FLAG) $(TARGET).elf +MCU_FLAG = $(shell $(SIZE) --help | grep -- --mcu > /dev/null && echo --mcu=$(MCU) ) +FORMAT_FLAG = $(shell $(SIZE) --help | grep -- --format=.*avr > /dev/null && echo --format=avr ) + + +sizebefore: + @if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_BEFORE); $(ELFSIZE); \ + 2>/dev/null; echo; fi + +sizeafter: + @if test -f $(TARGET).elf; then echo; echo $(MSG_SIZE_AFTER); $(ELFSIZE); \ + 2>/dev/null; echo; fi + + + +# Display compiler version information. +gccversion : + @$(CC) --version + + +# Program the device. +program: $(TARGET).hex $(TARGET).eep + $(AVRDUDE) $(AVRDUDE_FLAGS) $(AVRDUDE_WRITE_FLASH) $(AVRDUDE_WRITE_EEPROM) + + +# Generate avr-gdb config/init file which does the following: +# define the reset signal, load the target file, connect to target, and set +# a breakpoint at main(). +gdb-config: + @$(REMOVE) $(GDBINIT_FILE) + @echo define reset >> $(GDBINIT_FILE) + @echo SIGNAL SIGHUP >> $(GDBINIT_FILE) + @echo end >> $(GDBINIT_FILE) + @echo file $(TARGET).elf >> $(GDBINIT_FILE) + @echo target remote $(DEBUG_HOST):$(DEBUG_PORT) >> $(GDBINIT_FILE) +ifeq ($(DEBUG_BACKEND),simulavr) + @echo load >> $(GDBINIT_FILE) +endif + @echo break main >> $(GDBINIT_FILE) + +debug: gdb-config $(TARGET).elf +ifeq ($(DEBUG_BACKEND), avarice) + @echo Starting AVaRICE - Press enter when "waiting to connect" message displays. + @$(WINSHELL) /c start avarice --jtag $(JTAG_DEV) --erase --program --file \ + $(TARGET).elf $(DEBUG_HOST):$(DEBUG_PORT) + @$(WINSHELL) /c pause + +else + @$(WINSHELL) /c start simulavr --gdbserver --device $(MCU) --clock-freq \ + $(DEBUG_MFREQ) --port $(DEBUG_PORT) +endif + @$(WINSHELL) /c start avr-$(DEBUG_UI) --command=$(GDBINIT_FILE) + + + + +# Convert ELF to COFF for use in debugging / simulating in AVR Studio or VMLAB. +COFFCONVERT = $(OBJCOPY) --debugging +COFFCONVERT += --change-section-address .data-0x800000 +COFFCONVERT += --change-section-address .bss-0x800000 +COFFCONVERT += --change-section-address .noinit-0x800000 +COFFCONVERT += --change-section-address .eeprom-0x810000 + + + +coff: $(TARGET).elf + @echo + @echo $(MSG_COFF) $(TARGET).cof + $(COFFCONVERT) -O coff-avr $< $(TARGET).cof + + +extcoff: $(TARGET).elf + @echo + @echo $(MSG_EXTENDED_COFF) $(TARGET).cof + $(COFFCONVERT) -O coff-ext-avr $< $(TARGET).cof + + + +# Create final output files (.hex, .eep) from ELF output file. +%.hex: %.elf + @echo + @echo $(MSG_FLASH) $@ + $(OBJCOPY) -O $(FORMAT) -R .eeprom -R .fuse -R .lock $< $@ + +%.eep: %.elf + @echo + @echo $(MSG_EEPROM) $@ + -$(OBJCOPY) -j .eeprom --set-section-flags=.eeprom="alloc,load" \ + --change-section-lma .eeprom=0 --no-change-warnings -O $(FORMAT) $< $@ || exit 0 + +# Create extended listing file from ELF output file. +%.lss: %.elf + @echo + @echo $(MSG_EXTENDED_LISTING) $@ + $(OBJDUMP) -h -S -z $< > $@ + +# Create a symbol table from ELF output file. +%.sym: %.elf + @echo + @echo $(MSG_SYMBOL_TABLE) $@ + $(NM) -n $< > $@ + + + +# Create library from object files. +.SECONDARY : $(TARGET).a +.PRECIOUS : $(OBJ) +%.a: $(OBJ) + @echo + @echo $(MSG_CREATING_LIBRARY) $@ + $(AR) $@ $(OBJ) + + +# Link: create ELF output file from object files. +.SECONDARY : $(TARGET).elf +.PRECIOUS : $(OBJ) +%.elf: $(OBJ) + @echo + @echo $(MSG_LINKING) $@ + $(CC) $(ALL_CFLAGS) $^ --output $@ $(LDFLAGS) + + +# Compile: create object files from C source files. +$(OBJDIR)/%.o : %.c + @echo + @echo $(MSG_COMPILING) $< + $(CC) -c $(ALL_CFLAGS) $< -o $@ + + +# Compile: create object files from C++ source files. +$(OBJDIR)/%.o : %.cpp + @echo + @echo $(MSG_COMPILING_CPP) $< + $(CC) -c $(ALL_CPPFLAGS) $< -o $@ + + +# Compile: create assembler files from C source files. +%.s : %.c + $(CC) -S $(ALL_CFLAGS) $< -o $@ + + +# Compile: create assembler files from C++ source files. +%.s : %.cpp + $(CC) -S $(ALL_CPPFLAGS) $< -o $@ + + +# Assemble: create object files from assembler source files. +$(OBJDIR)/%.o : %.S + @echo + @echo $(MSG_ASSEMBLING) $< + $(CC) -c $(ALL_ASFLAGS) $< -o $@ + + +# Create preprocessed source for use in sending a bug report. +%.i : %.c + $(CC) -E -mmcu=$(MCU) -I. $(CFLAGS) $< -o $@ + + +# Target: clean project. +clean: begin clean_list end + +clean_list : + @echo + @echo $(MSG_CLEANING) + $(REMOVE) $(TARGET).hex + $(REMOVE) $(TARGET).eep + $(REMOVE) $(TARGET).cof + $(REMOVE) $(TARGET).elf + $(REMOVE) $(TARGET).map + $(REMOVE) $(TARGET).sym + $(REMOVE) $(TARGET).lss + $(REMOVE) $(SRC:%.c=$(OBJDIR)/%.o) $(CPPSRC:%.cpp=$(OBJDIR)/%.o) $(ASRC:%.S=$(OBJDIR)/%.o) + $(REMOVE) $(SRC:%.c=$(OBJDIR)/%.lst) $(CPPSRC:%.cpp=$(OBJDIR)/%.lst) $(ASRC:%.S=$(OBJDIR)/%.lst) + $(REMOVE) $(SRC:.c=.s) + $(REMOVE) $(SRC:.c=.d) + $(REMOVE) $(SRC:.c=.i) + $(REMOVEDIR) .dep + +doxygen: + @echo Generating Project Documentation \($(TARGET)\)... + @doxygen Doxygen.conf + @echo Documentation Generation Complete. + +clean_doxygen: + rm -rf Documentation + +checksource: + @for f in $(SRC) $(CPPSRC) $(ASRC); do \ + if [ -f $$f ]; then \ + echo "Found Source File: $$f" ; \ + else \ + echo "Source File Not Found: $$f" ; \ + fi; done + + +# Create object files directory +$(shell mkdir $(OBJDIR) 2>/dev/null) + + +# Include the dependency files. +-include $(shell mkdir .dep 2>/dev/null) $(wildcard .dep/*) + + +# Listing of phony targets. +.PHONY : all begin finish end sizebefore sizeafter gccversion \ +build elf hex eep lss sym coff extcoff doxygen clean \ +clean_list clean_doxygen program debug gdb-config checksource + diff --git a/hardware/arduino/avr/bootloaders/diskloader/DiskLoader-Leonardo.hex b/hardware/arduino/avr/bootloaders/diskloader/DiskLoader-Leonardo.hex deleted file mode 100644 index 0d0c167c7..000000000 --- a/hardware/arduino/avr/bootloaders/diskloader/DiskLoader-Leonardo.hex +++ /dev/null @@ -1,115 +0,0 @@ -:1078000011241FBECFEFDAE0DEBFCDBFFFC04101C4 -:1078100042144505560455026403740300001E9586 -:1078200087020110030000C18081C106C0FF0A0069 -:107830000CA10185037508150026FF00954009017C -:107840008102954009029102C0040309041A033021 -:1078500000300030003000300030003000300031A7 -:1078600000370030003100380341007200640075B9 -:107870000069006E006F0020004C0065006F006E14 -:10788000006100720064006F00200062006F006FF2 -:107890000074006C006F00610064006500720018E5 -:1078A00003410072006400750069006E006F0020E3 -:1078B000004C004C00430012010002020000404155 -:1078C0002334000001000203011201000200000045 -:1078D0004041233400000100020301090264000357 -:1078E00001008032080B00020202010009040000BE -:1078F0000102020000052400100105240101010419 -:107900002402020524060001070581031000400936 -:10791000040100020A0000000705020240000007FF -:107920000583024000000904020001030000000971 -:107930002101010001221E000705840340004000D0 -:1079400020918A0130918B012C5F3F4F30938B0146 -:1079500020938A01C901892F99278695982F803411 -:1079600018F08FE7891B982F990F921710F44798FA -:107970000895479A08955D9A289A81E08093E000DF -:107980001092E200EE27FF27099408950F931F93AA -:10799000CF93DF93982FEB01042F10E088E760303E -:1079A000780730F411E083E0FB0180935700E895FD -:1079B000892F68E071E0402FF8D0112311F107B64C -:1079C00000FCFDCF402F4695FE01A8E0B1E020E08D -:1079D00031E009C08D919D910C0130935700E895DD -:1079E000112432962F5F2417A8F385E0FE018093BF -:1079F0005700E89507B600FCFDCF81E18093570062 -:107A0000E895DF91CF911F910F91089588E10FB60E -:107A1000F89480936000109260000FBE5D9A289ADF -:107A200047983F9A209A559A90E890936100109257 -:107A3000610081E885BF95BF9FD084E18093880174 -:107A400080E180938901E0E0F0E0859194918F5F7F -:107A50009F4F19F081E080938F01EE24FF24BB2417 -:107A6000B39454EFC52E51E0D52E13D2082F8EE0DB -:107A700098E7FC012491319602964491201711F069 -:107A80002223B9F7109291011092900182E068E0F0 -:107A900071E08BD0013479F4609108016058633053 -:107AA00028F0683111F064E001C063E0C62FD0E037 -:107AB000CF5DD7480EC0063571F480910801803340 -:107AC00011F011E022C080910A01C82FD0E0C25EFF -:107AD000D74811E022C0053721F413E0CEE1D8E702 -:107AE0001CC0053539F4E0900801F0900901EE0C56 -:107AF000FF1C0AC0043631F482E0B701409109014D -:107B000045DF02C0043721F010E0C5E2D8E705C028 -:107B100010910901E701E10EF11CBBD18097B1F48E -:107B200083E068E871E041E050E059D0112329F08A -:107B3000412F50E083E8BE0152D083E469E871E050 -:107B400041E050E04CD0013509F08FCFD092910147 -:107B5000C0929001B0928F01EE24FF2486CFFC01E9 -:107B6000289884E680938D0104C08091F100819370 -:107B700061506623D1F708951092910110929001FF -:107B800010928E0110928F0181E08093D70080EADD -:107B90008093D80082E189BD09B400FEFDCF80E961 -:107BA0008093D8001092E0000895FB018093E900D3 -:107BB00024E69BE611C08091E80085FFFCCF289861 -:107BC00020938D018091F10081938091E80085FDE3 -:107BD00002C09093E8004150442369F70895982F1C -:107BE000FB01282F207287708093E90064E63AE356 -:107BF00017C08091E80085FFFCCF97FF02C08491F9 -:107C000001C080813196211180E05D9860938C01E4 -:107C10008093F1008091E80085FD02C03093E80078 -:107C2000415050408FEF4F3F580719F796FF03C060 -:107C30008AE38093E800089580919301813299F45A -:107C40005D9884E680938C0120E030E003C0808161 -:107C50008093F100F901E050FF4F2F5F3F4F283034 -:107C60003105A9F714C0803261F48091E80082FFE9 -:107C7000FCCF80E091E067E072DF8BEF8093E8005B -:107C800006C0823221F4809194018093070181E043 -:107C9000089520919501223289F1213081F480915B -:107CA000980190919901089711F420939A0180917D -:107CB0009A01882309F04FC0E9ECF8E74EC0223062 -:107CC00021F484E6EBEDF8E71CC0233009F041C055 -:107CD00080919401882319F4E9E4F8E73EC08230EA -:107CE00019F4E7E6F8E739C0833019F4EDE4F8E772 -:107CF00034C0813071F5EFE9F8E72FC081E0EBE2A5 -:107D0000F8E790919801382F981708F4392F90913F -:107D10008C0120E04EEF8091E8008570E1F38091C6 -:107D2000E80082FD12C02F5F84915D988093F1007E -:107D3000822F8F7311F44093E800319694E6231755 -:107D400050F390938C0181E0089590938C0180E032 -:107D5000089580E00895E7EBF8E78491D2CF109280 -:107D6000E9008091E80083FF61C082E991E068E06A -:107D7000F6DE82EF8093E8008091920187FF05C0D4 -:107D80008091E80080FFFCCF03C08EEF8093E80075 -:107D900080919301853051F48091E80080FFFCCF01 -:107DA0008091940180688093E30039C08930E1F4C8 -:107DB0008091940180938E01E7E2F8E791E031E051 -:107DC00026E39093E9003093EB0084918093EC00DC -:107DD0002093ED009F5F3196953099F78EE7809361 -:107DE000EA001092EA001BC0883049F490918E019D -:107DF0005D9884E680938C019093F10010C08823F5 -:107E000039F45D9884E680938C011092F10007C0EC -:107E1000863011F43EDF01C00FDF882321F08EEFA2 -:107E20008093E800089581E28093EB0008958091AB -:107E3000E1001092E100282F83FF0CC01092E900AE -:107E400081E08093EB001092EC0082E38093ED00E0 -:107E500010928E0122FF1CC080918C01882331F08A -:107E6000815080938C01882309F45D9A80918D0163 -:107E7000882331F0815080938D01882309F4289A5A -:107E800080918F01882321F410929101109290012A -:107E900008951F93CF93DF9312E0C0E9D1E05FDF35 -:107EA000C6DF1093E9008091E80085FF13C0289891 -:107EB00084E680938D019091F1008091E80085FD2A -:107EC00003C08BE68093E800892F90E0DF91CF918B -:107ED0001F91089580919001909191010197909345 -:107EE0009101809390018091900190919101892B53 -:0E7EF00009F441DDCE010197F1F722DDD0CF7C -:087EFE0000E10000000000009B -:040000030000780081 -:00000001FF diff --git a/hardware/arduino/avr/bootloaders/diskloader/Makefile b/hardware/arduino/avr/bootloaders/diskloader/Makefile deleted file mode 100644 index 6ac3db37b..000000000 --- a/hardware/arduino/avr/bootloaders/diskloader/Makefile +++ /dev/null @@ -1,105 +0,0 @@ -############################################################################### -# Makefile for DiskLoader -############################################################################### - -## General Flags -PROJECT = DiskLoader -TARGET = DiskLoader.elf -CC = avr-gcc - -# BOARD2 -MCU = atmega32u4 -AVR_FREQ = 16000000L - -# Specify the Arduino model using the assigned PID. This is used by Descriptors.c -# to set PID and product descriptor string -# Arduino Leonardo PID -ARDUINO_MODEL_PID = 0x0034 -# Arduino Micro PID -#ARDUINO_MODEL_PID = 0x0035 - -# Change if your programmer is different -AVRDUDE_PROGRAMMER = avrispmkII -AVRDUDE_PORT = usb - -# program name should not be changed... -PROGRAM = DiskLoader - -AVRDUDE = avrdude -AVRDUDE_FLAGS = -p $(MCU) -P $(AVRDUDE_PORT) -c $(AVRDUDE_PROGRAMMER) -p $(MCU) - -## Options common to compile, link and assembly rules -COMMON = -mmcu=$(MCU) - -override CFLAGS = -g -Wall -Os -mmcu=$(MCU) -DF_CPU=$(AVR_FREQ) -DARDUINO_MODEL_PID=$(ARDUINO_MODEL_PID) $(DEFS) -ffunction-sections -gdwarf-2 -fdata-sections -fno-split-wide-types - -## Assembly specific flags -ASMFLAGS = $(COMMON) -ASMFLAGS += $(CFLAGS) -ASMFLAGS += -x assembler-with-cpp -Wa,-gdwarf2 - -## Linker flags -LDFLAGS = $(COMMON) -LDFLAGS += -Wl,-gc-sections,-Map=DiskLoader.map,--section-start=.text=0x7800,--relax -LDFLAGS += -nodefaultlibs -nostartfiles - - -## Intel Hex file production flags -HEX_EEPROM_FLAGS = -j .eeprom -HEX_EEPROM_FLAGS += --set-section-flags=.eeprom="alloc,load" -HEX_EEPROM_FLAGS += --change-section-lma .eeprom=0 --no-change-warnings - -## Objects explicitly added by the user -LINKONLYOBJECTS = - -MODULES := . -SRC_DIR := $(addprefix src/,$(MODULES)) -BUILD_DIR := $(addprefix build/,$(MODULES)) - -SRC := $(foreach sdir,$(SRC_DIR),$(wildcard $(sdir)/*.cpp)) -OBJ := $(patsubst src/%.cpp,build/%.o,$(SRC)) -DEP := $(OBJ:%.o=%.d) -INCLUDES := $(addprefix -I,$(SRC_DIR)) - -vpath %.cpp $(SRC_DIR) - -.PHONY: all checkdirs clean - -all: checkdirs $(TARGET) DiskLoader.hex DiskLoader.lss size - --include $(DEP) - -checkdirs: $(BUILD_DIR) - -$(BUILD_DIR): - @mkdir -p $@ - -clean: - @rm -rf build/ - @rm -f *.hex - @rm -f *.elf - @rm -f *.lss - @rm -f *.map - -define make-goal -$1/%.o: %.cpp - $(CC) $(INCLUDES) $(CFLAGS) -c $$< -MD -o $$@ -endef - -$(foreach bdir,$(BUILD_DIR),$(eval $(call make-goal,$(bdir)))) - -$(TARGET): $(OBJ) - $(CC) $(LDFLAGS) $(LINKONLYOBJECTS) $(LIBDIRS) $(LIBS) $^ -o $@ - -%.hex: $(TARGET) - avr-objcopy -O ihex $(HEX_FLASH_FLAGS) $< $@ - -%.lss: $(TARGET) - avr-objdump -h -S $< > $@ - -size: $(TARGET) - @echo -# @avr-size -C --mcu=${MCU} ${TARGET}.elf - -program: $(TARGET).hex - $(AVRDUDE) $(AVRDUDE_FLAGS) -B 5 -u -U flash:w:$(TARGET).hex \ No newline at end of file diff --git a/hardware/arduino/avr/bootloaders/diskloader/src/DiskLoader.cpp b/hardware/arduino/avr/bootloaders/diskloader/src/DiskLoader.cpp deleted file mode 100644 index 65806180f..000000000 --- a/hardware/arduino/avr/bootloaders/diskloader/src/DiskLoader.cpp +++ /dev/null @@ -1,239 +0,0 @@ - - -#include "Platform.h" - -// This bootloader creates a composite Serial device -// -// The serial interface supports a STK500v1 protocol that is very similar to optiboot -// -// The bootloader will timeout and start the firmware after a few hundred milliseconds -// if a usb connection is not detected. -// -// The tweakier code is to keep the bootloader below 2k (no interrupt table, for example) - -extern "C" -void entrypoint(void) __attribute__ ((naked)) __attribute__ ((section (".vectors"))); -void entrypoint(void) -{ - asm volatile ( - "eor r1, r1\n" // Zero register - "out 0x3F, r1\n" // SREG - "ldi r28, 0xFF\n" - "ldi r29, 0x0A\n" - "out 0x3E, r29\n" // SPH - "out 0x3D, r28\n" // SPL - "rjmp main" // Stack is all set up, start the main code - ::); -} - -u8 _flashbuf[128]; -u8 _inSync; -u8 _ok; -extern volatile u8 _ejected; -extern volatile u16 _timeout; - -void Program(u8 ep, u16 page, u8 count) -{ - u8 write = page < 30*1024; // Don't write over firmware please - if (write) - boot_page_erase(page); - - Recv(ep,_flashbuf,count); // Read while page is erasing - - if (!write) - return; - - boot_spm_busy_wait(); // Wait until the memory is erased. - - count >>= 1; - u16* p = (u16*)page; - u16* b = (u16*)_flashbuf; - for (u8 i = 0; i < count; i++) - boot_page_fill(p++, b[i]); - - boot_page_write(page); - boot_spm_busy_wait(); - boot_rww_enable (); -} - - -int USBGetChar(); -#define getch USBGetChar - -#define HW_VER 0x02 -#define SW_MAJOR 0x01 -#define SW_MINOR 0x10 - -#define STK_OK 0x10 -#define STK_INSYNC 0x14 // ' ' -#define CRC_EOP 0x20 // 'SPACE' -#define STK_GET_SYNC 0x30 // '0' - -#define STK_GET_PARAMETER 0x41 // 'A' -#define STK_SET_DEVICE 0x42 // 'B' -#define STK_SET_DEVICE_EXT 0x45 // 'E' -#define STK_LOAD_ADDRESS 0x55 // 'U' -#define STK_UNIVERSAL 0x56 // 'V' -#define STK_PROG_PAGE 0x64 // 'd' -#define STK_READ_PAGE 0x74 // 't' -#define STK_READ_SIGN 0x75 // 'u' - -extern const u8 _readSize[] PROGMEM; -const u8 _readSize[] = -{ - STK_GET_PARAMETER, 1, - STK_SET_DEVICE, 20, - STK_SET_DEVICE_EXT, 5, - STK_UNIVERSAL, 4, - STK_LOAD_ADDRESS, 2, - STK_PROG_PAGE, 3, - STK_READ_PAGE, 3, - 0,0 -}; - -extern const u8 _consts[] PROGMEM; -const u8 _consts[] = -{ - SIGNATURE_0, - SIGNATURE_1, - SIGNATURE_2, - HW_VER, // Hardware version - SW_MAJOR, // Software major version - SW_MINOR, // Software minor version - 0x03, // Unknown but seems to be required by avr studio 3.56 - 0x00, // -}; - - -void USBInit(void); -int main(void) __attribute__ ((naked)); - -// STK500v1 main loop, very similar to optiboot in protocol and implementation -int main() -{ - wdt_disable(); - TXLED0; - RXLED0; - LED0; - BOARD_INIT(); - USBInit(); - - _inSync = STK_INSYNC; - _ok = STK_OK; - - if (pgm_read_word(0) != -1) - _ejected = 1; - - for(;;) - { - u8* packet = _flashbuf; - u16 address = 0; - for (;;) - { - u8 cmd = getch(); - - // Read packet contents - u8 len; - const u8* rs = _readSize; - for(;;) - { - u8 c = pgm_read_byte(rs++); - len = pgm_read_byte(rs++); - if (c == cmd || c == 0) - break; - } - _timeout = 0; - // Read params - Recv(CDC_RX,packet,len); - - // Send a response - u8 send = 0; - const u8* pgm = _consts+7; // 0 - if (STK_GET_PARAMETER == cmd) - { - u8 i = packet[0] - 0x80; - if (i > 2) - i = (i == 0x18) ? 3 : 4; // 0x80:HW_VER,0x81:SW_MAJOR,0x82:SW_MINOR,0x18:3 or 0 - pgm = _consts + i + 3; - send = 1; - } - - else if (STK_UNIVERSAL == cmd) - { - if (packet[0] == 0x30) - pgm = _consts + packet[2]; // read signature - send = 1; - } - - // Read signature bytes - else if (STK_READ_SIGN == cmd) - { - pgm = _consts; - send = 3; - } - - else if (STK_LOAD_ADDRESS == cmd) - { - address = *((u16*)packet); // word addresses - address += address; - } - - else if (STK_PROG_PAGE == cmd) - { - Program(CDC_RX,address,packet[1]); - } - - else if (STK_READ_PAGE == cmd) - { - send = packet[1]; - pgm = (const u8*)address; - address += send; // not sure of this is required - } - - // Check sync - if (getch() != ' ') - break; - Transfer(CDC_TX,&_inSync,1); - - // Send result - if (send) - Transfer(CDC_TX|TRANSFER_PGM,pgm,send); // All from pgm memory - - // Send ok - Transfer(CDC_TX|TRANSFER_RELEASE,&_ok,1); - - if (cmd == 'Q') - break; - } - _timeout = 500; // wait a moment before exiting the bootloader - may need to finish responding to 'Q' for example - _ejected = 1; - } -} - -// Nice breathing LED indicates we are in the firmware -u16 _pulse; -void LEDPulse() -{ - _pulse += 4; - u8 p = _pulse >> 9; - if (p > 63) - p = 127-p; - p += p; - if (((u8)_pulse) > p) - LED0; - else - LED1; -} - -void Reboot() -{ - TXLED0; // switch off the RX and TX LEDs before starting the user sketch - RXLED0; - UDCON = 1; // Detatch USB - UDIEN = 0; - asm volatile ( // Reset vector to run firmware - "clr r30\n" - "clr r31\n" - "ijmp\n" - ::); -} diff --git a/hardware/arduino/avr/bootloaders/diskloader/src/Platform.h b/hardware/arduino/avr/bootloaders/diskloader/src/Platform.h deleted file mode 100644 index 04c5b7923..000000000 --- a/hardware/arduino/avr/bootloaders/diskloader/src/Platform.h +++ /dev/null @@ -1,51 +0,0 @@ - -#include -#include -#include -#include -#include -#include -#include - -#include -#include -#include - -typedef unsigned char u8; -typedef unsigned short u16; -typedef unsigned long u32; - - -#define CPU_PRESCALE(n) (CLKPR = 0x80, CLKPR = (n)) -#define DISABLE_JTAG() MCUCR = (1 << JTD) | (1 << IVCE) | (0 << PUD); MCUCR = (1 << JTD) | (0 << IVSEL) | (0 << IVCE) | (0 << PUD); - -#define USB_PID_LEONARDO 0x0034 -#define USB_PID_MICRO 0x0035 -#define USB_VID 0x2341 // arduino LLC vid -#define USB_PID ARDUINO_MODEL_PID // passed in by Makefile - 0x0034 for Leonardo, 0x0035 for MIcro - -#define USB_SERIAL_STRING '0','0','0','0','0','0','0','0','1','7','0','1' - -#define OEM_NAME 'l','e','o','n','a','r','d','o' // 8 chars -#define BOARD_INIT() DDRC |= (1<<7); DDRB |= (1<<0); DDRD |= (1<<5); CPU_PRESCALE(0); DISABLE_JTAG(); -#define LED0 PORTC &= ~(1<<7) -#define LED1 PORTC |= (1<<7) -#define TXLED0 PORTD |= (1<<5) -#define TXLED1 PORTD &= ~(1<<5) -#define RXLED0 PORTB |= (1<<0) -#define RXLED1 PORTB &= ~(1<<0) - -#define TRANSFER_PGM 0x80 -#define TRANSFER_RELEASE 0x40 -#define TRANSFER_ZERO 0x20 - -void Transfer(u8 ep, const u8* data, int len); -void Recv(u8 ep, u8* dst, u8 len); -void Program(u8 ep, u16 page, u8 count); - -#define CDC_ENABLED - -#include "USBCore.h" -#include "USBDesc.h" - - diff --git a/hardware/arduino/avr/bootloaders/diskloader/src/USBCore.cpp b/hardware/arduino/avr/bootloaders/diskloader/src/USBCore.cpp deleted file mode 100644 index 208121e7d..000000000 --- a/hardware/arduino/avr/bootloaders/diskloader/src/USBCore.cpp +++ /dev/null @@ -1,510 +0,0 @@ - - -/* Copyright (c) 2010, Peter Barrett -** -** Permission to use, copy, modify, and/or distribute this software for -** any purpose with or without fee is hereby granted, provided that the -** above copyright notice and this permission notice appear in all copies. -** -** THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL -** WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED -** WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR -** BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES -** OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -** WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -** ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -** SOFTWARE. -*/ - -#include "Platform.h" - -#define CDC_TX CDC_ENDPOINT_IN -#define CDC_RX CDC_ENDPOINT_OUT - -#define EP_TYPE_CONTROL 0x00 -#define EP_TYPE_BULK_IN 0x81 -#define EP_TYPE_BULK_OUT 0x80 -#define EP_TYPE_INTERRUPT_IN 0xC1 -#define EP_TYPE_INTERRUPT_OUT 0xC0 -#define EP_TYPE_ISOCHRONOUS_IN 0x41 -#define EP_TYPE_ISOCHRONOUS_OUT 0x40 - -/** Pulse generation counters to keep track of the number of milliseconds remaining for each pulse type */ -#define TX_RX_LED_PULSE_MS 100 -u8 TxLEDPulse; /**< Milliseconds remaining for data Tx LED pulse */ -u8 RxLEDPulse; /**< Milliseconds remaining for data Rx LED pulse */ - -void Reboot(); - -//================================================================== -//================================================================== - -typedef struct -{ - u32 dwDTERate; - u8 bCharFormat; - u8 bParityType; - u8 bDataBits; - u8 lineState; -} LineInfo; - -static volatile LineInfo _usbLineInfo = { 57600, 0x00, 0x00, 0x00, 0x00 }; - -//================================================================== -//================================================================== - -// 4 bytes of RAM -volatile u8 _usbConfiguration; -volatile u8 _ejected; -volatile u16 _timeout; - -static inline void WaitIN(void) -{ - while (!(UEINTX & (1<> 8) - -#define RAWHID_USAGE_PAGE 0xFFC0 -#define RAWHID_USAGE 0x0C00 -#define RAWHID_TX_SIZE 64 -#define RAWHID_RX_SIZE 64 - -const u8 _rawHID[] = -{ - // RAW HID - 0x06, LSB(RAWHID_USAGE_PAGE), MSB(RAWHID_USAGE_PAGE), // 30 - 0x0A, LSB(RAWHID_USAGE), MSB(RAWHID_USAGE), - - 0xA1, 0x01, // Collection 0x01 - 0x85, 0x03, // REPORT_ID (3) - 0x75, 0x08, // report size = 8 bits - 0x15, 0x00, // logical minimum = 0 - 0x26, 0xFF, 0x00, // logical maximum = 255 - - 0x95, 64, // report count TX - 0x09, 0x01, // usage - 0x81, 0x02, // Input (array) - - 0x95, 64, // report count RX - 0x09, 0x02, // usage - 0x91, 0x02, // Output (array) - 0xC0 // end collection -}; - -u8 _cdcComposite = 0; - -bool SendDescriptor() -{ - Setup& setup = _setup; - u8 desc_length = 0; - const u8* desc_addr = 0; - - u8 t = setup.wValueH; - if (0x22 == t) - { - desc_addr = _rawHID; - desc_length = sizeof(desc_length); - } else if (USB_DEVICE_DESCRIPTOR_TYPE == t) - { - if (setup.wLength == 8) - _cdcComposite = 1; - desc_addr = _cdcComposite ? (const u8*)&USB_DeviceDescriptorA : (const u8*)&USB_DeviceDescriptor; - } - else if (USB_CONFIGURATION_DESCRIPTOR_TYPE == t) - { - desc_addr = (const u8*)&USB_ConfigDescriptor; - desc_length = sizeof(USB_ConfigDescriptor); - } - else if (USB_STRING_DESCRIPTOR_TYPE == t) - { - if (setup.wValueL == 0) - desc_addr = (const u8*)&STRING_LANGUAGE; - else if (setup.wValueL == IPRODUCT) - desc_addr = (const u8*)&STRING_IPRODUCT; - else if (setup.wValueL == ISERIAL) - desc_addr = (const u8*)&STRING_SERIAL; - else if (setup.wValueL == IMANUFACTURER) - desc_addr = (const u8*)&STRING_IMANUFACTURER; - else - return false; - } else - return false; - - if (desc_length == 0) - desc_length = pgm_read_byte(desc_addr); - if ((u8)setup.wLength < desc_length) // bit of a cheat limiting to 255 bytes TODO (saved 8 bytes) - desc_length = (u8)setup.wLength; - - // Send descriptor - // EP0 is 64 bytes long - // RWAL and FIFOCON don't work on EP0 - u8 n = 0; - do - { - if (!WaitForINOrOUT()) - return false; - Send8(pgm_read_byte(&desc_addr[n++])); - u8 clr = n & 0x3F; - if (!clr) - ClearIN(); // Fifo is full, release this packet - } while (n < desc_length); - return true; -} - -void USBSetupInterrupt() -{ - SetEP(0); - if (!ReceivedSetupInt()) - return; - - Setup& setup = _setup; // global saves ~30 bytes - Recv((u8*)&setup,8); - ClearSetupInt(); - - if (setup.bmRequestType & DEVICETOHOST) - WaitIN(); - else - ClearIN(); - - bool ok = true; - u8 r = setup.bRequest; - if (SET_ADDRESS == r) - { - WaitIN(); - UDADDR = setup.wValueL | (1<> 8) & 0xFF) - -#define CDC_V1_10 0x0110 -#define CDC_COMMUNICATION_INTERFACE_CLASS 0x02 - -#define CDC_CALL_MANAGEMENT 0x01 -#define CDC_ABSTRACT_CONTROL_MODEL 0x02 -#define CDC_HEADER 0x00 -#define CDC_ABSTRACT_CONTROL_MANAGEMENT 0x02 -#define CDC_UNION 0x06 -#define CDC_CS_INTERFACE 0x24 -#define CDC_CS_ENDPOINT 0x25 -#define CDC_DATA_INTERFACE_CLASS 0x0A - - -// Device -typedef struct { - u8 len; // 18 - u8 dtype; // 1 USB_DEVICE_DESCRIPTOR_TYPE - u16 usbVersion; // 0x200 - u8 deviceClass; - u8 deviceSubClass; - u8 deviceProtocol; - u8 packetSize0; // Packet 0 - u16 idVendor; - u16 idProduct; - u16 deviceVersion; // 0x100 - u8 iManufacturer; - u8 iProduct; - u8 iSerialNumber; - u8 bNumConfigurations; -} DeviceDescriptor; - -// Config -typedef struct { - u8 len; // 9 - u8 dtype; // 2 - u16 clen; // total length - u8 numInterfaces; - u8 config; - u8 iconfig; - u8 attributes; - u8 maxPower; -} ConfigDescriptor; - -// String - -// Interface -typedef struct -{ - u8 len; // 9 - u8 dtype; // 4 - u8 number; - u8 alternate; - u8 numEndpoints; - u8 interfaceClass; - u8 interfaceSubClass; - u8 protocol; - u8 iInterface; -} InterfaceDescriptor; - -// Endpoint -typedef struct -{ - u8 len; // 7 - u8 dtype; // 5 - u8 addr; - u8 attr; - u16 packetSize; - u8 interval; -} EndpointDescriptor; - -// Interface Association Descriptor -// Used to bind 2 interfaces together in CDC compostite device -typedef struct -{ - u8 len; // 8 - u8 dtype; // 11 - u8 firstInterface; - u8 interfaceCount; - u8 functionClass; - u8 funtionSubClass; - u8 functionProtocol; - u8 iInterface; -} IADDescriptor; - -// CDC CS interface descriptor -typedef struct -{ - u8 len; // 5 - u8 dtype; // 0x24 - u8 subtype; - u8 d0; - u8 d1; -} CDCCSInterfaceDescriptor; - -typedef struct -{ - u8 len; // 4 - u8 dtype; // 0x24 - u8 subtype; - u8 d0; -} CDCCSInterfaceDescriptor4; - -typedef struct -{ - IADDescriptor iad; // Only needed on compound device - - // Control - InterfaceDescriptor cif; // - CDCCSInterfaceDescriptor header; - CDCCSInterfaceDescriptor callManagement; - CDCCSInterfaceDescriptor4 controlManagement; - CDCCSInterfaceDescriptor functionalDescriptor; - EndpointDescriptor cifin; - - // Data - InterfaceDescriptor dif; - EndpointDescriptor in; - EndpointDescriptor out; -} CDCDescriptor; - -typedef struct -{ - u8 len; // 9 - u8 dtype; // 0x21 - u8 addr; - u8 versionL; // 0x101 - u8 versionH; // 0x101 - u8 country; - u8 desctype; // 0x22 report - u8 descLenL; - u8 descLenH; -} HIDDescDescriptor; - -typedef struct -{ - InterfaceDescriptor hid; - HIDDescDescriptor desc; - EndpointDescriptor in; -} HIDDescriptor; - -#define D_DEVICE(_class,_subClass,_proto,_packetSize0,_vid,_pid,_version,_im,_ip,_is,_configs) \ - { 18, 1, 0x200, _class,_subClass,_proto,_packetSize0,_vid,_pid,_version,_im,_ip,_is,_configs } - -#define D_CONFIG(_totalLength,_interfaces) \ - { 9, 2, _totalLength,_interfaces, 1, 0, USB_CONFIG_BUS_POWERED, USB_CONFIG_POWER_MA(100) } - -#define D_INTERFACE(_n,_numEndpoints,_class,_subClass,_protocol) \ - { 9, 4, _n, 0, _numEndpoints, _class,_subClass, _protocol, 0 } - -#define D_ENDPOINT(_addr,_attr,_packetSize, _interval) \ - { 7, 5, _addr,_attr,_packetSize, _interval } - -#define D_IAD(_firstInterface, _count, _class, _subClass, _protocol) \ - { 8, 11, _firstInterface, _count, _class, _subClass, _protocol, 0 } - -#define D_HIDREPORT(_descriptorLength) \ - { 9, 0x21, 0x1, 0x1, 0, 1, 0x22, _descriptorLength, 0 } - -#define D_CDCCS(_subtype,_d0,_d1) { 5, 0x24, _subtype, _d0, _d1 } -#define D_CDCCS4(_subtype,_d0) { 4, 0x24, _subtype, _d0 } - -#endif \ No newline at end of file diff --git a/hardware/arduino/avr/bootloaders/diskloader/src/USBDesc.cpp b/hardware/arduino/avr/bootloaders/diskloader/src/USBDesc.cpp deleted file mode 100644 index ade072a52..000000000 --- a/hardware/arduino/avr/bootloaders/diskloader/src/USBDesc.cpp +++ /dev/null @@ -1,87 +0,0 @@ - - -/* Copyright (c) 2011, Peter Barrett -** -** Permission to use, copy, modify, and/or distribute this software for -** any purpose with or without fee is hereby granted, provided that the -** above copyright notice and this permission notice appear in all copies. -** -** THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL -** WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED -** WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR -** BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES -** OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -** WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -** ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -** SOFTWARE. -*/ - -#include "Platform.h" - -//==================================================================================================== -//==================================================================================================== -// Actual device descriptors - -const u16 STRING_LANGUAGE[2] = { - (3<<8) | (2+2), - 0x0409 // English -}; - -const u16 STRING_SERIAL[13] = { - (3<<8) | (2+2*12), - USB_SERIAL_STRING -}; - -const u16 STRING_IPRODUCT[28] = { - (3<<8) | (2+2*27), -#if USB_PID == USB_PID_LEONARDO - 'A','r','d','u','i','n','o',' ','L','e','o','n','a','r','d','o',' ','b','o','o','t','l','o','a','d','e','r' -#elif USB_PID == USB_PID_MICRO - 'A','r','d','u','i','n','o',' ','M','i','c','r','o',' ','b','o','o','t','l','o','a','d','e','r',' ',' ',' ' -#endif -}; - -const u16 STRING_IMANUFACTURER[12] = { - (3<<8) | (2+2*11), - 'A','r','d','u','i','n','o',' ','L','L','C' -}; - - -//#ifdef CDC_ENABLED -DeviceDescriptor USB_DeviceDescriptorA = D_DEVICE(0X02,0X00,0X00,64,USB_VID,USB_PID,0x100,0,IPRODUCT,ISERIAL,1); -//#else -DeviceDescriptor USB_DeviceDescriptor = D_DEVICE(0x00,0x00,0x00,64,USB_VID,USB_PID,0x100,0,IPRODUCT,ISERIAL,1); -//#endif - - -Config USB_ConfigDescriptor = -{ - D_CONFIG(sizeof(Config),INTERFACE_COUNT), - -#ifdef CDC_ENABLED - // CDC - { - D_IAD(0,2,CDC_COMMUNICATION_INTERFACE_CLASS,CDC_ABSTRACT_CONTROL_MODEL,1), - - // CDC communication interface - D_INTERFACE(CDC_ACM_INTERFACE,1,CDC_COMMUNICATION_INTERFACE_CLASS,CDC_ABSTRACT_CONTROL_MODEL,0), - D_CDCCS(CDC_HEADER,0x10,0x01), // Header (1.10 bcd) - D_CDCCS(CDC_CALL_MANAGEMENT,1,1), // Device handles call management - D_CDCCS4(CDC_ABSTRACT_CONTROL_MANAGEMENT,2), // SET_LINE_CODING, GET_LINE_CODING, SET_CONTROL_LINE_STATE supported - D_CDCCS(CDC_UNION,CDC_ACM_INTERFACE,CDC_DATA_INTERFACE), // Communication interface is master, data interface is slave 0 - D_ENDPOINT(USB_ENDPOINT_IN (CDC_ENDPOINT_ACM),USB_ENDPOINT_TYPE_INTERRUPT,0x10,0x40), - - // CDC data interface - D_INTERFACE(CDC_DATA_INTERFACE,2,CDC_DATA_INTERFACE_CLASS,0,0), - D_ENDPOINT(USB_ENDPOINT_OUT(CDC_ENDPOINT_OUT),USB_ENDPOINT_TYPE_BULK,0x40,0), - D_ENDPOINT(USB_ENDPOINT_IN (CDC_ENDPOINT_IN ),USB_ENDPOINT_TYPE_BULK,0x40,0) - }, -#endif - // HID - { - D_INTERFACE(HID_INTERFACE,1,3,0,0), - D_HIDREPORT(30), - D_ENDPOINT(USB_ENDPOINT_IN (HID_ENDPOINT_INT),USB_ENDPOINT_TYPE_INTERRUPT,0x40,0x40) - } -}; - diff --git a/hardware/arduino/avr/bootloaders/diskloader/src/USBDesc.h b/hardware/arduino/avr/bootloaders/diskloader/src/USBDesc.h deleted file mode 100644 index a970fa40a..000000000 --- a/hardware/arduino/avr/bootloaders/diskloader/src/USBDesc.h +++ /dev/null @@ -1,65 +0,0 @@ - - -/* Copyright (c) 2011, Peter Barrett -** -** Permission to use, copy, modify, and/or distribute this software for -** any purpose with or without fee is hereby granted, provided that the -** above copyright notice and this permission notice appear in all copies. -** -** THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL -** WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED -** WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR -** BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES -** OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, -** WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, -** ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS -** SOFTWARE. -*/ - - -#ifdef CDC_ENABLED - -#define CDC_ACM_INTERFACE 0 // CDC ACM -#define CDC_DATA_INTERFACE 1 // CDC Data -#define CDC_ENDPOINT_ACM 1 -#define CDC_ENDPOINT_OUT 2 -#define CDC_ENDPOINT_IN 3 - -#define HID_INTERFACE 2 // HID Interface -#define HID_ENDPOINT_INT 4 - -#define INTERFACE_COUNT 3 // 2 for cdc + 1 for hid - -#else - -#define HID_INTERFACE 2 // HID Interface -#define HID_ENDPOINT_INT 4 - -#define INTERFACE_COUNT 1 // 1 for hid - -#endif - -typedef struct -{ - ConfigDescriptor config; -#ifdef CDC_ENABLED - CDCDescriptor cdc; -#endif - HIDDescriptor hid; -} Config; - -extern Config USB_ConfigDescriptor PROGMEM; -extern DeviceDescriptor USB_DeviceDescriptor PROGMEM; -extern DeviceDescriptor USB_DeviceDescriptorA PROGMEM; - -extern const u16 STRING_LANGUAGE[2] PROGMEM; -extern const u16 STRING_IPRODUCT[28] PROGMEM; -extern const u16 STRING_IMANUFACTURER[12] PROGMEM; -extern const u16 STRING_SERIAL[13] PROGMEM; - -#define IMANUFACTURER 1 -#define IPRODUCT 2 -#define ISERIAL 3 - -#define CDC_TX CDC_ENDPOINT_IN -#define CDC_RX CDC_ENDPOINT_OUT \ No newline at end of file diff --git a/hardware/arduino/avr/cores/arduino/Arduino.h b/hardware/arduino/avr/cores/arduino/Arduino.h index bfec9437e..830c9952f 100755 --- a/hardware/arduino/avr/cores/arduino/Arduino.h +++ b/hardware/arduino/avr/cores/arduino/Arduino.h @@ -20,6 +20,7 @@ extern "C"{ #define INPUT 0x0 #define OUTPUT 0x1 +#define INPUT_PULLUP 0x2 #define true 0x1 #define false 0x0 diff --git a/hardware/arduino/avr/cores/arduino/CDC.cpp b/hardware/arduino/avr/cores/arduino/CDC.cpp index 14a0eaee7..1ee3a488a 100644 --- a/hardware/arduino/avr/cores/arduino/CDC.cpp +++ b/hardware/arduino/avr/cores/arduino/CDC.cpp @@ -23,12 +23,20 @@ #if defined(USBCON) #ifdef CDC_ENABLED -void Reboot() +#if (RAMEND < 1000) +#define SERIAL_BUFFER_SIZE 16 +#else +#define SERIAL_BUFFER_SIZE 64 +#endif + +struct ring_buffer { - USB.detach(); - cli(); - asm volatile("jmp 0x7800"); // jump to bootloader - DiskLoader takes up last 2 kB -} + unsigned char buffer[SERIAL_BUFFER_SIZE]; + volatile int head; + volatile int tail; +}; + +ring_buffer cdc_rx_buffer = { { 0 }, 0, 0}; typedef struct { @@ -92,9 +100,28 @@ bool WEAK CDC_Setup(Setup& setup) if (CDC_SET_CONTROL_LINE_STATE == r) { - if (0 != _usbLineInfo.lineState && 1200 == _usbLineInfo.dwDTERate) // auto-reset is triggered when the port, already open at 1200 bps, is closed - Reboot(); _usbLineInfo.lineState = setup.wValueL; + + // auto-reset into the bootloader is triggered when the port, already + // open at 1200 bps, is closed. this is the signal to start the watchdog + // with a relatively long period so it can finish housekeeping tasks + // like servicing endpoints before the sketch ends + if (1200 == _usbLineInfo.dwDTERate) { + // We check DTR state to determine if host port is open (bit 0 of lineState). + if ((_usbLineInfo.lineState & 0x01) == 0) { + *(uint16_t *)0x0800 = 0x7777; + wdt_enable(WDTO_120MS); + } else { + // Most OSs do some intermediate steps when configuring ports and DTR can + // twiggle more than once before stabilizing. + // To avoid spurious resets we set the watchdog to 250ms and eventually + // cancel if DTR goes back high. + + wdt_disable(); + wdt_reset(); + *(uint16_t *)0x0800 = 0x0; + } + } return true; } } @@ -111,33 +138,49 @@ void Serial_::end(void) { } -int Serial_::available(void) +void Serial_::accept(void) { - u8 avail = USB_Available(CDC_RX); - if (_serialPeek != -1) - avail++; - return avail; + ring_buffer *buffer = &cdc_rx_buffer; + int c = USB_Recv(CDC_RX); + int i = (unsigned int)(buffer->head+1) % SERIAL_BUFFER_SIZE; + + // if we should be storing the received character into the location + // just before the tail (meaning that the head would advance to the + // current location of the tail), we're about to overflow the buffer + // and so we don't write the character or advance the head. + if (i != buffer->tail) { + buffer->buffer[buffer->head] = c; + buffer->head = i; + } +} + +int Serial_::available(void) +{ + ring_buffer *buffer = &cdc_rx_buffer; + return (unsigned int)(SERIAL_BUFFER_SIZE + buffer->head - buffer->tail) % SERIAL_BUFFER_SIZE; } -// peek is nasty int Serial_::peek(void) { - if (_serialPeek == -1) - _serialPeek = read(); - return _serialPeek; + ring_buffer *buffer = &cdc_rx_buffer; + if (buffer->head == buffer->tail) { + return -1; + } else { + return buffer->buffer[buffer->tail]; + } } int Serial_::read(void) { - int c; - if (_serialPeek != -1) - { - c = _serialPeek; - _serialPeek = -1; + ring_buffer *buffer = &cdc_rx_buffer; + // if the head isn't ahead of the tail, we don't have any characters + if (buffer->head == buffer->tail) { + return -1; } else { - c = USB_Recv(CDC_RX); - } - return c; + unsigned char c = buffer->buffer[buffer->tail]; + buffer->tail = (unsigned int)(buffer->tail + 1) % SERIAL_BUFFER_SIZE; + return c; + } } void Serial_::flush(void) @@ -169,7 +212,22 @@ size_t Serial_::write(uint8_t c) return 0; } +// This operator is a convenient way for a sketch to check whether the +// port has actually been configured and opened by the host (as opposed +// to just being connected to the host). It can be used, for example, in +// setup() before printing to ensure that an application on the host is +// actually ready to receive and display the data. +// We add a short delay before returning to fix a bug observed by Federico +// where the port is configured (lineState != 0) but not quite opened. +Serial_::operator bool() { + bool result = false; + if (_usbLineInfo.lineState > 0) + result = true; + delay(10); + return result; +} + Serial_ Serial; #endif -#endif /* if defined(USBCON) */ \ No newline at end of file +#endif /* if defined(USBCON) */ diff --git a/hardware/arduino/avr/cores/arduino/HID.cpp b/hardware/arduino/avr/cores/arduino/HID.cpp index 8ed156666..ac6360844 100644 --- a/hardware/arduino/avr/cores/arduino/HID.cpp +++ b/hardware/arduino/avr/cores/arduino/HID.cpp @@ -144,7 +144,6 @@ u8 _hid_protocol = 1; u8 _hid_idle = 1; #define WEAK __attribute__ ((weak)) -#define WEAK int WEAK HID_GetInterface(u8* interfaceNum) { @@ -202,7 +201,15 @@ bool WEAK HID_Setup(Setup& setup) //================================================================================ // Mouse -Mouse_::Mouse_() : _buttons(0) +Mouse_::Mouse_(void) : _buttons(0) +{ +} + +void Mouse_::begin(void) +{ +} + +void Mouse_::end(void) { } @@ -245,7 +252,7 @@ void Mouse_::release(uint8_t b) bool Mouse_::isPressed(uint8_t b) { - if (b & _buttons > 0) + if ((b & _buttons) > 0) return true; return false; } @@ -254,7 +261,15 @@ bool Mouse_::isPressed(uint8_t b) //================================================================================ // Keyboard -Keyboard_::Keyboard_() : _keyMap(0) +Keyboard_::Keyboard_(void) +{ +} + +void Keyboard_::begin(void) +{ +} + +void Keyboard_::end(void) { } @@ -263,11 +278,6 @@ void Keyboard_::sendReport(KeyReport* keys) HID_SendReport(2,keys,sizeof(KeyReport)); } -void Keyboard_::setKeyMap(KeyMap* keyMap) -{ - _keyMap = keyMap; -} - extern const uint8_t _asciimap[128] PROGMEM; @@ -406,41 +416,105 @@ const uint8_t _asciimap[128] = }; uint8_t USBPutChar(uint8_t c); -size_t Keyboard_::write(uint8_t c) + +// press() adds the specified key (printing, non-printing, or modifier) +// to the persistent key report and sends the report. Because of the way +// USB HID works, the host acts like the key remains pressed until we +// call release(), releaseAll(), or otherwise clear the report and resend. +size_t Keyboard_::press(uint8_t k) { - // Keydown - { - KeyReport keys = {0}; - if (_keyMap) - _keyMap->charToKey(c,&keys); - else - { - if (c >= 128) { - setWriteError(); - return 0; - } - c = pgm_read_byte(_asciimap + c); - if (!c) { - setWriteError(); - return 0; - } - if (c & 0x80) - { - keys.modifiers |= KEY_MODIFIER_LEFT_SHIFT; - c &= 0x7F; - } - keys.keys[0] = c; + uint8_t i; + if (k >= 136) { // it's a non-printing key (not a modifier) + k = k - 136; + } else if (k >= 128) { // it's a modifier key + _keyReport.modifiers |= (1<<(k-128)); + k = 0; + } else { // it's a printing key + k = pgm_read_byte(_asciimap + k); + if (!k) { + setWriteError(); + return 0; + } + if (k & 0x80) { // it's a capital letter or other character reached with shift + _keyReport.modifiers |= 0x02; // the left shift modifier + k &= 0x7F; } - sendReport(&keys); } - // Keyup - { - KeyReport keys = {0}; - sendReport(&keys); + + // Add k to the key report only if it's not already present + // and if there is an empty slot. + if (_keyReport.keys[0] != k && _keyReport.keys[1] != k && + _keyReport.keys[2] != k && _keyReport.keys[3] != k && + _keyReport.keys[4] != k && _keyReport.keys[5] != k) { + + for (i=0; i<6; i++) { + if (_keyReport.keys[i] == 0x00) { + _keyReport.keys[i] = k; + break; + } + } + if (i == 6) { + setWriteError(); + return 0; + } } + sendReport(&_keyReport); return 1; } +// release() takes the specified key out of the persistent key report and +// sends the report. This tells the OS the key is no longer pressed and that +// it shouldn't be repeated any more. +size_t Keyboard_::release(uint8_t k) +{ + uint8_t i; + if (k >= 136) { // it's a non-printing key (not a modifier) + k = k - 136; + } else if (k >= 128) { // it's a modifier key + _keyReport.modifiers &= ~(1<<(k-128)); + k = 0; + } else { // it's a printing key + k = pgm_read_byte(_asciimap + k); + if (!k) { + return 0; + } + if (k & 0x80) { // it's a capital letter or other character reached with shift + _keyReport.modifiers &= ~(0x02); // the left shift modifier + k &= 0x7F; + } + } + + // Test the key report to see if k is present. Clear it if it exists. + // Check all positions in case the key is present more than once (which it shouldn't be) + for (i=0; i<6; i++) { + if (0 != k && _keyReport.keys[i] == k) { + _keyReport.keys[i] = 0x00; + } + } + + sendReport(&_keyReport); + return 1; +} + +void Keyboard_::releaseAll(void) +{ + _keyReport.keys[0] = 0; + _keyReport.keys[1] = 0; + _keyReport.keys[2] = 0; + _keyReport.keys[3] = 0; + _keyReport.keys[4] = 0; + _keyReport.keys[5] = 0; + _keyReport.modifiers = 0; + sendReport(&_keyReport); +} + +size_t Keyboard_::write(uint8_t c) +{ + uint8_t p = press(c); // Keydown + uint8_t r = release(c); // Keyup + return (p); // just return the result of press() since release() almost always returns 1 +} + #endif #endif /* if defined(USBCON) */ \ No newline at end of file diff --git a/hardware/arduino/avr/cores/arduino/HardwareSerial.cpp b/hardware/arduino/avr/cores/arduino/HardwareSerial.cpp index 1b1fa71d8..f40ddee06 100644 --- a/hardware/arduino/avr/cores/arduino/HardwareSerial.cpp +++ b/hardware/arduino/avr/cores/arduino/HardwareSerial.cpp @@ -46,8 +46,8 @@ struct ring_buffer { unsigned char buffer[SERIAL_BUFFER_SIZE]; - volatile int head; - volatile int tail; + volatile unsigned int head; + volatile unsigned int tail; }; #if defined(USBCON) @@ -398,6 +398,10 @@ size_t HardwareSerial::write(uint8_t c) return 1; } +HardwareSerial::operator bool() { + return true; +} + // Preinstantiate Objects ////////////////////////////////////////////////////// #if defined(UBRRH) && defined(UBRRL) diff --git a/hardware/arduino/avr/cores/arduino/HardwareSerial.h b/hardware/arduino/avr/cores/arduino/HardwareSerial.h index 176abe1e2..bf4924c6d 100644 --- a/hardware/arduino/avr/cores/arduino/HardwareSerial.h +++ b/hardware/arduino/avr/cores/arduino/HardwareSerial.h @@ -57,6 +57,7 @@ class HardwareSerial : public Stream virtual void flush(void); virtual size_t write(uint8_t); using Print::write; // pull in write(str) and write(buf, size) from Print + operator bool(); }; #if defined(UBRRH) || defined(UBRR0H) diff --git a/hardware/arduino/avr/cores/arduino/Print.cpp b/hardware/arduino/avr/cores/arduino/Print.cpp index ff9b15459..711251c8a 100755 --- a/hardware/arduino/avr/cores/arduino/Print.cpp +++ b/hardware/arduino/avr/cores/arduino/Print.cpp @@ -41,7 +41,7 @@ size_t Print::write(const uint8_t *buffer, size_t size) size_t Print::print(const __FlashStringHelper *ifsh) { - const prog_char *p = (const prog_char *)ifsh; + const char PROGMEM *p = (const char PROGMEM *)ifsh; size_t n = 0; while (1) { unsigned char c = pgm_read_byte(p++); @@ -226,6 +226,9 @@ size_t Print::printFloat(double number, uint8_t digits) { size_t n = 0; + if (isnan(number)) return print("nan"); + if (isinf(number)) return print("inf"); + // Handle negative numbers if (number < 0.0) { diff --git a/hardware/arduino/avr/cores/arduino/Print.h b/hardware/arduino/avr/cores/arduino/Print.h index 1af6b723f..dc7615087 100755 --- a/hardware/arduino/avr/cores/arduino/Print.h +++ b/hardware/arduino/avr/cores/arduino/Print.h @@ -46,7 +46,10 @@ class Print void clearWriteError() { setWriteError(0); } virtual size_t write(uint8_t) = 0; - size_t write(const char *str) { return write((const uint8_t *)str, strlen(str)); } + size_t write(const char *str) { + if (str == NULL) return 0; + return write((const uint8_t *)str, strlen(str)); + } virtual size_t write(const uint8_t *buffer, size_t size); size_t print(const __FlashStringHelper *); diff --git a/hardware/arduino/avr/cores/arduino/Stream.cpp b/hardware/arduino/avr/cores/arduino/Stream.cpp index 5fad8dd67..aafb7fcf9 100644 --- a/hardware/arduino/avr/cores/arduino/Stream.cpp +++ b/hardware/arduino/avr/cores/arduino/Stream.cpp @@ -99,25 +99,27 @@ bool Stream::findUntil(char *target, size_t targetLen, char *terminator, size_t size_t index = 0; // maximum target string length is 64k bytes! size_t termIndex = 0; int c; - + if( *target == 0) - return true; // return true if target is a null string + return true; // return true if target is a null string while( (c = timedRead()) > 0){ + + if(c != target[index]) + index = 0; // reset index if any char does not match + if( c == target[index]){ - //////Serial.print("found "); Serial.write(c); Serial.print("index now"); Serial.println(index+1); + //////Serial.print("found "); Serial.write(c); Serial.print("index now"); Serial.println(index+1); if(++index >= targetLen){ // return true if all chars in the target match return true; } } - else{ - index = 0; // reset index if any char does not match - } + if(termLen > 0 && c == terminator[termIndex]){ - if(++termIndex >= termLen) - return false; // return false if terminate string found before target string + if(++termIndex >= termLen) + return false; // return false if terminate string found before target string } else - termIndex = 0; + termIndex = 0; } return false; } @@ -242,3 +244,27 @@ size_t Stream::readBytesUntil(char terminator, char *buffer, size_t length) return index; // return number of characters, not including null terminator } +String Stream::readString() +{ + String ret; + int c = timedRead(); + while (c >= 0) + { + ret += (char)c; + c = timedRead(); + } + return ret; +} + +String Stream::readStringUntil(char terminator) +{ + String ret; + int c = timedRead(); + while (c >= 0 && c != terminator) + { + ret += (char)c; + c = timedRead(); + } + return ret; +} + diff --git a/hardware/arduino/avr/cores/arduino/Stream.h b/hardware/arduino/avr/cores/arduino/Stream.h index 13f11bee0..58bbf752f 100644 --- a/hardware/arduino/avr/cores/arduino/Stream.h +++ b/hardware/arduino/avr/cores/arduino/Stream.h @@ -82,6 +82,8 @@ class Stream : public Print // returns the number of characters placed in the buffer (0 means no valid data found) // Arduino String functions to be added here + String readString(); + String readStringUntil(char terminator); protected: long parseInt(char skipChar); // as above but the given skipChar is ignored diff --git a/hardware/arduino/avr/cores/arduino/USBAPI.h b/hardware/arduino/avr/cores/arduino/USBAPI.h index 26a203227..eb2e5937d 100644 --- a/hardware/arduino/avr/cores/arduino/USBAPI.h +++ b/hardware/arduino/avr/cores/arduino/USBAPI.h @@ -9,17 +9,17 @@ //================================================================================ // USB -class USB_ +class USBDevice_ { public: - USB_(); + USBDevice_(); bool configured(); void attach(); void detach(); // Serial port goes down too... void poll(); }; -extern USB_ USB; +extern USBDevice_ USBDevice; //================================================================================ //================================================================================ @@ -27,15 +27,20 @@ extern USB_ USB; class Serial_ : public Stream { +private: + ring_buffer *_cdc_rx_buffer; public: void begin(uint16_t baud_count); void end(void); virtual int available(void); + virtual void accept(void); virtual int peek(void); virtual int read(void); virtual void flush(void); virtual size_t write(uint8_t); + using Print::write; // pull in write(str) and write(buf, size) from Print + operator bool(); }; extern Serial_ Serial; @@ -54,12 +59,14 @@ private: uint8_t _buttons; void buttons(uint8_t b); public: - Mouse_(); + Mouse_(void); + void begin(void); + void end(void); void click(uint8_t b = MOUSE_LEFT); void move(signed char x, signed char y, signed char wheel = 0); void press(uint8_t b = MOUSE_LEFT); // press LEFT by default void release(uint8_t b = MOUSE_LEFT); // release LEFT by default - bool isPressed(uint8_t b = MOUSE_ALL); // check all buttons by default + bool isPressed(uint8_t b = MOUSE_LEFT); // check LEFT by default }; extern Mouse_ Mouse; @@ -67,14 +74,42 @@ extern Mouse_ Mouse; //================================================================================ // Keyboard -#define KEY_MODIFIER_LEFT_CTRL 0x01 -#define KEY_MODIFIER_LEFT_SHIFT 0x02 -#define KEY_MODIFIER_LEFT_ALT 0x04 -#define KEY_MODIFIER_LEFT_GUI 0x08 -#define KEY_MODIFIER_RIGHT_CTRL 0x010 -#define KEY_MODIFIER_RIGHT_SHIFT 0x020 -#define KEY_MODIFIER_RIGHT_ALT 0x040 -#define KEY_MODIFIER_RIGHT_GUI 0x080 +#define KEY_LEFT_CTRL 0x80 +#define KEY_LEFT_SHIFT 0x81 +#define KEY_LEFT_ALT 0x82 +#define KEY_LEFT_GUI 0x83 +#define KEY_RIGHT_CTRL 0x84 +#define KEY_RIGHT_SHIFT 0x85 +#define KEY_RIGHT_ALT 0x86 +#define KEY_RIGHT_GUI 0x87 + +#define KEY_UP_ARROW 0xDA +#define KEY_DOWN_ARROW 0xD9 +#define KEY_LEFT_ARROW 0xD8 +#define KEY_RIGHT_ARROW 0xD7 +#define KEY_BACKSPACE 0xB2 +#define KEY_TAB 0xB3 +#define KEY_RETURN 0xB0 +#define KEY_ESC 0xB1 +#define KEY_INSERT 0xD1 +#define KEY_DELETE 0xD4 +#define KEY_PAGE_UP 0xD3 +#define KEY_PAGE_DOWN 0xD6 +#define KEY_HOME 0xD2 +#define KEY_END 0xD5 +#define KEY_CAPS_LOCK 0xC1 +#define KEY_F1 0xC2 +#define KEY_F2 0xC3 +#define KEY_F3 0xC4 +#define KEY_F4 0xC5 +#define KEY_F5 0xC6 +#define KEY_F6 0xC7 +#define KEY_F7 0xC8 +#define KEY_F8 0xC9 +#define KEY_F9 0xCA +#define KEY_F10 0xCB +#define KEY_F11 0xCC +#define KEY_F12 0xCD // Low level key report: up to 6 keys and shift, ctrl etc at once typedef struct @@ -84,24 +119,19 @@ typedef struct uint8_t keys[6]; } KeyReport; -// Map a character into a key report -// Called from Print to map text to keycodes -class KeyMap -{ -public: - virtual void charToKey(int c, KeyReport* keyReport) = 0; -}; - -// class Keyboard_ : public Print { private: - KeyMap* _keyMap; + KeyReport _keyReport; void sendReport(KeyReport* keys); - void setKeyMap(KeyMap* keyMap); public: - Keyboard_(); - virtual size_t write(uint8_t); + Keyboard_(void); + void begin(void); + void end(void); + virtual size_t write(uint8_t k); + virtual size_t press(uint8_t k); + virtual size_t release(uint8_t k); + virtual void releaseAll(void); }; extern Keyboard_ Keyboard; diff --git a/hardware/arduino/avr/cores/arduino/USBCore.cpp b/hardware/arduino/avr/cores/arduino/USBCore.cpp index 4c71b34d4..6766be61a 100644 --- a/hardware/arduino/avr/cores/arduino/USBCore.cpp +++ b/hardware/arduino/avr/cores/arduino/USBCore.cpp @@ -51,16 +51,20 @@ const u16 STRING_LANGUAGE[2] = { const u16 STRING_IPRODUCT[17] = { (3<<8) | (2+2*16), -#if USB_PID == USB_PID_LEONARDO +#if USB_PID == 0x8036 'A','r','d','u','i','n','o',' ','L','e','o','n','a','r','d','o' -#elif USB_PID == USB_PID_MICRO - 'A','r','d','u','i','n','o',' ','M','i','c','r','o',' ',' ',' ' +#else + 'U','S','B',' ','I','O',' ','B','o','a','r','d',' ',' ',' ',' ' #endif }; const u16 STRING_IMANUFACTURER[12] = { (3<<8) | (2+2*11), +#if USB_VID == 0x2341 'A','r','d','u','i','n','o',' ','L','L','C' +#else + 'U','n','k','n','o','w','n',' ',' ',' ',' ' +#endif }; #ifdef CDC_ENABLED @@ -230,7 +234,7 @@ int USB_Recv(u8 ep, void* d, int len) n = len; u8* dst = (u8*)d; while (n--) - *dst++ = USBD_Recv8(); + *dst++ = Recv8(); if (len && !FifoByteCount()) // release empty buffer ReleaseRX(); @@ -599,6 +603,8 @@ ISR(USB_GEN_vect) { #ifdef CDC_ENABLED USB_Flush(CDC_TX); // Send a tx frame if found + while (USB_Available(CDC_RX)) // Handle received bytes (if any) + Serial.accept(); #endif // check whether the one-shot period has elapsed. if so, turn off the LED @@ -621,13 +627,13 @@ u8 USBConnected() //======================================================================= //======================================================================= -USB_ USB; +USBDevice_ USBDevice; -USB_::USB_() +USBDevice_::USBDevice_() { } -void USB_::attach() +void USBDevice_::attach() { _usbConfiguration = 0; UHWCON = 0x01; // power internal reg @@ -635,6 +641,12 @@ void USB_::attach() PLLCSR = 0x12; // Need 16 MHz xtal while (!(PLLCSR & (1<= len || fromIndex < 0) return -1; + if (fromIndex >= len) return -1; char tempchar = buffer[fromIndex + 1]; buffer[fromIndex + 1] = '\0'; char* temp = strrchr( buffer, ch ); @@ -516,7 +516,7 @@ int String::lastIndexOf(const String &s2) const int String::lastIndexOf(const String &s2, unsigned int fromIndex) const { - if (s2.len == 0 || len == 0 || s2.len > len || fromIndex < 0) return -1; + if (s2.len == 0 || len == 0 || s2.len > len) return -1; if (fromIndex >= len) fromIndex = len - 1; int found = -1; for (char *p = buffer; p <= buffer + fromIndex; p++) { diff --git a/hardware/arduino/avr/cores/arduino/main.cpp b/hardware/arduino/avr/cores/arduino/main.cpp old mode 100755 new mode 100644 index 34450f46d..3d4e079d2 --- a/hardware/arduino/avr/cores/arduino/main.cpp +++ b/hardware/arduino/avr/cores/arduino/main.cpp @@ -5,7 +5,7 @@ int main(void) init(); #if defined(USBCON) - USB.attach(); + USBDevice.attach(); #endif setup(); diff --git a/hardware/arduino/avr/cores/arduino/wiring.c b/hardware/arduino/avr/cores/arduino/wiring.c old mode 100755 new mode 100644 index e7f7cdef2..ac8bb6f9b --- a/hardware/arduino/avr/cores/arduino/wiring.c +++ b/hardware/arduino/avr/cores/arduino/wiring.c @@ -278,12 +278,21 @@ void init() sbi(TCCR3B, CS30); sbi(TCCR3A, WGM30); // put timer 3 in 8-bit phase correct pwm mode #endif - + +#if defined(TCCR4A) && defined(TCCR4B) && defined(TCCR4D) /* beginning of timer4 block for 32U4 and similar */ + sbi(TCCR4B, CS42); // set timer4 prescale factor to 64 + sbi(TCCR4B, CS41); + sbi(TCCR4B, CS40); + sbi(TCCR4D, WGM40); // put timer 4 in phase- and frequency-correct PWM mode + sbi(TCCR4A, PWM4A); // enable PWM mode for comparator OCR4A + sbi(TCCR4C, PWM4D); // enable PWM mode for comparator OCR4D +#else /* beginning of timer4 block for ATMEGA1280 and ATMEGA2560 */ #if defined(TCCR4B) && defined(CS41) && defined(WGM40) sbi(TCCR4B, CS41); // set timer 4 prescale factor to 64 sbi(TCCR4B, CS40); sbi(TCCR4A, WGM40); // put timer 4 in 8-bit phase correct pwm mode #endif +#endif /* end timer4 block for ATMEGA1280/2560 and similar */ #if defined(TCCR5B) && defined(CS51) && defined(WGM50) sbi(TCCR5B, CS51); // set timer 5 prescale factor to 64 diff --git a/hardware/arduino/avr/cores/arduino/wiring_analog.c b/hardware/arduino/avr/cores/arduino/wiring_analog.c index 902b15362..0e9881f6a 100644 --- a/hardware/arduino/avr/cores/arduino/wiring_analog.c +++ b/hardware/arduino/avr/cores/arduino/wiring_analog.c @@ -45,6 +45,8 @@ int analogRead(uint8_t pin) if (pin >= 54) pin -= 54; // allow for channel or pin numbers #elif defined(__AVR_ATmega32U4__) if (pin >= 18) pin -= 18; // allow for channel or pin numbers +#elif defined(__AVR_ATmega1284__) + if (pin >= 24) pin -= 24; // allow for channel or pin numbers #else if (pin >= 14) pin -= 14; // allow for channel or pin numbers #endif @@ -204,14 +206,17 @@ void analogWrite(uint8_t pin, int val) break; #endif - #if defined(TCCR4A) && defined(COM4A1) + #if defined(TCCR4A) case TIMER4A: - // connect pwm to pin on timer 4, channel A + //connect pwm to pin on timer 4, channel A sbi(TCCR4A, COM4A1); - OCR4A = val; // set pwm duty + #if defined(COM4A0) // only used on 32U4 + cbi(TCCR4A, COM4A0); + #endif + OCR4A = val; // set pwm duty break; #endif - + #if defined(TCCR4A) && defined(COM4B1) case TIMER4B: // connect pwm to pin on timer 4, channel B @@ -228,14 +233,18 @@ void analogWrite(uint8_t pin, int val) break; #endif - #if defined(TCCR4A) && defined(COM4D1) - case TIMER4D: + #if defined(TCCR4C) && defined(COM4D1) + case TIMER4D: // connect pwm to pin on timer 4, channel D - sbi(TCCR4A, COM4D1); - OCR4D = val; // set pwm duty + sbi(TCCR4C, COM4D1); + #if defined(COM4D0) // only used on 32U4 + cbi(TCCR4C, COM4D0); + #endif + OCR4D = val; // set pwm duty break; #endif + #if defined(TCCR5A) && defined(COM5A1) case TIMER5A: // connect pwm to pin on timer 5, channel A @@ -270,3 +279,4 @@ void analogWrite(uint8_t pin, int val) } } } + diff --git a/hardware/arduino/avr/cores/arduino/wiring_digital.c b/hardware/arduino/avr/cores/arduino/wiring_digital.c old mode 100755 new mode 100644 index 97ef1343d..be323b1df --- a/hardware/arduino/avr/cores/arduino/wiring_digital.c +++ b/hardware/arduino/avr/cores/arduino/wiring_digital.c @@ -32,17 +32,25 @@ void pinMode(uint8_t pin, uint8_t mode) { uint8_t bit = digitalPinToBitMask(pin); uint8_t port = digitalPinToPort(pin); - volatile uint8_t *reg; + volatile uint8_t *reg, *out; if (port == NOT_A_PIN) return; // JWS: can I let the optimizer do this? reg = portModeRegister(port); + out = portOutputRegister(port); if (mode == INPUT) { uint8_t oldSREG = SREG; cli(); *reg &= ~bit; + *out &= ~bit; + SREG = oldSREG; + } else if (mode == INPUT_PULLUP) { + uint8_t oldSREG = SREG; + cli(); + *reg &= ~bit; + *out |= bit; SREG = oldSREG; } else { uint8_t oldSREG = SREG; @@ -107,13 +115,17 @@ static void turnOffPWM(uint8_t timer) #if defined(TCCR4A) && defined(COM4A1) case TIMER4A: cbi(TCCR4A, COM4A1); break; - #endif + #endif #if defined(TCCR4A) && defined(COM4B1) case TIMER4B: cbi(TCCR4A, COM4B1); break; #endif #if defined(TCCR4A) && defined(COM4C1) case TIMER4C: cbi(TCCR4A, COM4C1); break; - #endif + #endif + #if defined(TCCR4C) && defined(COM4D1) + case TIMER4D: cbi(TCCR4C, COM4D1); break; + #endif + #if defined(TCCR5A) case TIMER5A: cbi(TCCR5A, COM5A1); break; case TIMER5B: cbi(TCCR5A, COM5B1); break; diff --git a/hardware/arduino/avr/cores/arduino/wiring_private.h b/hardware/arduino/avr/cores/arduino/wiring_private.h index f0ceb0cc4..026ce1a01 100755 --- a/hardware/arduino/avr/cores/arduino/wiring_private.h +++ b/hardware/arduino/avr/cores/arduino/wiring_private.h @@ -56,6 +56,8 @@ extern "C"{ #define EXTERNAL_NUM_INTERRUPTS 8 #elif defined(__AVR_ATmega1284P__) #define EXTERNAL_NUM_INTERRUPTS 3 +#elif defined(__AVR_ATmega32U4__) +#define EXTERNAL_NUM_INTERRUPTS 4 #else #define EXTERNAL_NUM_INTERRUPTS 2 #endif diff --git a/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino b/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino index 88e3488e9..0709b2d4c 100644 --- a/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino +++ b/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_read/eeprom_read.ino @@ -14,7 +14,11 @@ byte value; void setup() { + // initialize serial and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } } void loop() diff --git a/hardware/arduino/avr/libraries/Ethernet/Dhcp.cpp b/hardware/arduino/avr/libraries/Ethernet/Dhcp.cpp index 62bbfebc0..e4d27f722 100755 --- a/hardware/arduino/avr/libraries/Ethernet/Dhcp.cpp +++ b/hardware/arduino/avr/libraries/Ethernet/Dhcp.cpp @@ -11,13 +11,33 @@ int DhcpClass::beginWithDHCP(uint8_t *mac, unsigned long timeout, unsigned long responseTimeout) { - uint8_t dhcp_state = STATE_DHCP_START; - uint8_t messageType = 0; - - // zero out _dhcpMacAddr, _dhcpSubnetMask, _dhcpGatewayIp, _dhcpLocalIp, _dhcpDhcpServerIp, _dhcpDnsServerIp - memset(_dhcpMacAddr, 0, 26); + _dhcpLeaseTime=0; + _dhcpT1=0; + _dhcpT2=0; + _lastCheck=0; + _timeout = timeout; + _responseTimeout = responseTimeout; + + // zero out _dhcpMacAddr + memset(_dhcpMacAddr, 0, 6); + reset_DHCP_lease(); memcpy((void*)_dhcpMacAddr, (void*)mac, 6); + _dhcp_state = STATE_DHCP_START; + return request_DHCP_lease(); +} + +void DhcpClass::reset_DHCP_lease(){ + // zero out _dhcpSubnetMask, _dhcpGatewayIp, _dhcpLocalIp, _dhcpDhcpServerIp, _dhcpDnsServerIp + memset(_dhcpLocalIp, 0, 20); +} + +//return:0 on error, 1 if request is sent and response is received +int DhcpClass::request_DHCP_lease(){ + + uint8_t messageType = 0; + + // Pick an initial transaction ID _dhcpTransactionId = random(1UL, 2000UL); @@ -35,55 +55,75 @@ int DhcpClass::beginWithDHCP(uint8_t *mac, unsigned long timeout, unsigned long unsigned long startTime = millis(); - while(dhcp_state != STATE_DHCP_LEASED) + while(_dhcp_state != STATE_DHCP_LEASED) { - if(dhcp_state == STATE_DHCP_START) + if(_dhcp_state == STATE_DHCP_START) { _dhcpTransactionId++; send_DHCP_MESSAGE(DHCP_DISCOVER, ((millis() - startTime) / 1000)); - dhcp_state = STATE_DHCP_DISCOVER; + _dhcp_state = STATE_DHCP_DISCOVER; } - else if(dhcp_state == STATE_DHCP_DISCOVER) + else if(_dhcp_state == STATE_DHCP_REREQUEST){ + _dhcpTransactionId++; + send_DHCP_MESSAGE(DHCP_REQUEST, ((millis() - startTime)/1000)); + _dhcp_state = STATE_DHCP_REQUEST; + } + else if(_dhcp_state == STATE_DHCP_DISCOVER) { uint32_t respId; - messageType = parseDHCPResponse(responseTimeout, respId); + messageType = parseDHCPResponse(_responseTimeout, respId); if(messageType == DHCP_OFFER) { // We'll use the transaction ID that the offer came with, // rather than the one we were up to _dhcpTransactionId = respId; send_DHCP_MESSAGE(DHCP_REQUEST, ((millis() - startTime) / 1000)); - dhcp_state = STATE_DHCP_REQUEST; + _dhcp_state = STATE_DHCP_REQUEST; } } - else if(dhcp_state == STATE_DHCP_REQUEST) + else if(_dhcp_state == STATE_DHCP_REQUEST) { uint32_t respId; - messageType = parseDHCPResponse(responseTimeout, respId); + messageType = parseDHCPResponse(_responseTimeout, respId); if(messageType == DHCP_ACK) { - dhcp_state = STATE_DHCP_LEASED; + _dhcp_state = STATE_DHCP_LEASED; result = 1; + //use default lease time if we didn't get it + if(_dhcpLeaseTime == 0){ + _dhcpLeaseTime = DEFAULT_LEASE; + } + //calculate T1 & T2 if we didn't get it + if(_dhcpT1 == 0){ + //T1 should be 50% of _dhcpLeaseTime + _dhcpT1 = _dhcpLeaseTime >> 1; + } + if(_dhcpT2 == 0){ + //T2 should be 87.5% (7/8ths) of _dhcpLeaseTime + _dhcpT2 = _dhcpT1 << 1; + } + _renewInSec = _dhcpT1; + _rebindInSec = _dhcpT2; } else if(messageType == DHCP_NAK) - dhcp_state = STATE_DHCP_START; + _dhcp_state = STATE_DHCP_START; } if(messageType == 255) { messageType = 0; - dhcp_state = STATE_DHCP_START; + _dhcp_state = STATE_DHCP_START; } - if(result != 1 && ((millis() - startTime) > timeout)) + if(result != 1 && ((millis() - startTime) > _timeout)) break; } // We're done with the socket now _dhcpUdpSocket.stop(); _dhcpTransactionId++; - + return result; } @@ -302,8 +342,26 @@ uint8_t DhcpClass::parseDHCPResponse(unsigned long responseTimeout, uint32_t& tr } } break; - + + case dhcpT1value : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read((uint8_t*)&_dhcpT1, sizeof(_dhcpT1)); + _dhcpT1 = ntohl(_dhcpT1); + break; + + case dhcpT2value : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read((uint8_t*)&_dhcpT2, sizeof(_dhcpT2)); + _dhcpT2 = ntohl(_dhcpT2); + break; + case dhcpIPaddrLeaseTime : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read((uint8_t*)&_dhcpLeaseTime, sizeof(_dhcpLeaseTime)); + _dhcpLeaseTime = ntohl(_dhcpLeaseTime); + _renewInSec = _dhcpLeaseTime; + break; + default : opt_len = _dhcpUdpSocket.read(); // Skip over the rest of this option @@ -322,6 +380,68 @@ uint8_t DhcpClass::parseDHCPResponse(unsigned long responseTimeout, uint32_t& tr return type; } + +/* + returns: + 0/DHCP_CHECK_NONE: nothing happened + 1/DHCP_CHECK_RENEW_FAIL: renew failed + 2/DHCP_CHECK_RENEW_OK: renew success + 3/DHCP_CHECK_REBIND_FAIL: rebind fail + 4/DHCP_CHECK_REBIND_OK: rebind success +*/ +int DhcpClass::checkLease(){ + //this uses a signed / unsigned trick to deal with millis overflow + unsigned long now = millis(); + signed long snow = (long)now; + int rc=DHCP_CHECK_NONE; + if (_lastCheck != 0){ + signed long factor; + //calc how many ms past the timeout we are + factor = snow - (long)_secTimeout; + //if on or passed the timeout, reduce the counters + if ( factor >= 0 ){ + //next timeout should be now plus 1000 ms minus parts of second in factor + _secTimeout = snow + 1000 - factor % 1000; + //how many seconds late are we, minimum 1 + factor = factor / 1000 +1; + + //reduce the counters by that mouch + //if we can assume that the cycle time (factor) is fairly constant + //and if the remainder is less than cycle time * 2 + //do it early instead of late + if(_renewInSec < factor*2 ) + _renewInSec = 0; + else + _renewInSec -= factor; + + if(_rebindInSec < factor*2 ) + _rebindInSec = 0; + else + _rebindInSec -= factor; + } + + //if we have a lease but should renew, do it + if (_dhcp_state == STATE_DHCP_LEASED && _renewInSec <=0){ + _dhcp_state = STATE_DHCP_REREQUEST; + rc = 1 + request_DHCP_lease(); + } + + //if we have a lease or is renewing but should bind, do it + if( (_dhcp_state == STATE_DHCP_LEASED || _dhcp_state == STATE_DHCP_START) && _rebindInSec <=0){ + //this should basically restart completely + _dhcp_state = STATE_DHCP_START; + reset_DHCP_lease(); + rc = 3 + request_DHCP_lease(); + } + } + else{ + _secTimeout = snow + 1000; + } + + _lastCheck = now; + return rc; +} + IPAddress DhcpClass::getLocalIp() { return IPAddress(_dhcpLocalIp); diff --git a/hardware/arduino/avr/libraries/Ethernet/Dhcp.h b/hardware/arduino/avr/libraries/Ethernet/Dhcp.h index 149876d79..4a47936f0 100755 --- a/hardware/arduino/avr/libraries/Ethernet/Dhcp.h +++ b/hardware/arduino/avr/libraries/Ethernet/Dhcp.h @@ -45,6 +45,13 @@ #define MAX_DHCP_OPT 16 #define HOST_NAME "WIZnet" +#define DEFAULT_LEASE (900) //default lease time in seconds + +#define DHCP_CHECK_NONE (0) +#define DHCP_CHECK_RENEW_FAIL (1) +#define DHCP_CHECK_RENEW_OK (2) +#define DHCP_CHECK_REBIND_FAIL (3) +#define DHCP_CHECK_REBIND_OK (4) enum { @@ -139,8 +146,19 @@ private: uint8_t _dhcpGatewayIp[4]; uint8_t _dhcpDhcpServerIp[4]; uint8_t _dhcpDnsServerIp[4]; + uint32_t _dhcpLeaseTime; + uint32_t _dhcpT1, _dhcpT2; + signed long _renewInSec; + signed long _rebindInSec; + signed long _lastCheck; + unsigned long _timeout; + unsigned long _responseTimeout; + unsigned long _secTimeout; + uint8_t _dhcp_state; EthernetUDP _dhcpUdpSocket; + int request_DHCP_lease(); + void reset_DHCP_lease(); void presend_DHCP(); void send_DHCP_MESSAGE(uint8_t, uint16_t); void printByte(char *, uint8_t); @@ -154,6 +172,7 @@ public: IPAddress getDnsServerIp(); int beginWithDHCP(uint8_t *, unsigned long timeout = 60000, unsigned long responseTimeout = 4000); + int checkLease(); }; #endif diff --git a/hardware/arduino/avr/libraries/Ethernet/Ethernet.cpp b/hardware/arduino/avr/libraries/Ethernet/Ethernet.cpp index c298f3d17..5d28f71f9 100644 --- a/hardware/arduino/avr/libraries/Ethernet/Ethernet.cpp +++ b/hardware/arduino/avr/libraries/Ethernet/Ethernet.cpp @@ -10,7 +10,8 @@ uint16_t EthernetClass::_server_port[MAX_SOCK_NUM] = { int EthernetClass::begin(uint8_t *mac_address) { - DhcpClass dhcp; + _dhcp = new DhcpClass(); + // Initialise the basic info W5100.init(); @@ -18,15 +19,15 @@ int EthernetClass::begin(uint8_t *mac_address) W5100.setIPAddress(IPAddress(0,0,0,0).raw_address()); // Now try to get our config info from a DHCP server - int ret = dhcp.beginWithDHCP(mac_address); + int ret = _dhcp->beginWithDHCP(mac_address); if(ret == 1) { // We've successfully found a DHCP server and got our configuration info, so set things // accordingly - W5100.setIPAddress(dhcp.getLocalIp().raw_address()); - W5100.setGatewayIp(dhcp.getGatewayIp().raw_address()); - W5100.setSubnetMask(dhcp.getSubnetMask().raw_address()); - _dnsServerAddress = dhcp.getDnsServerIp(); + W5100.setIPAddress(_dhcp->getLocalIp().raw_address()); + W5100.setGatewayIp(_dhcp->getGatewayIp().raw_address()); + W5100.setSubnetMask(_dhcp->getSubnetMask().raw_address()); + _dnsServerAddress = _dhcp->getDnsServerIp(); } return ret; @@ -66,6 +67,31 @@ void EthernetClass::begin(uint8_t *mac, IPAddress local_ip, IPAddress dns_server _dnsServerAddress = dns_server; } +int EthernetClass::maintain(){ + int rc = DHCP_CHECK_NONE; + if(_dhcp != NULL){ + //we have a pointer to dhcp, use it + rc = _dhcp->checkLease(); + switch ( rc ){ + case DHCP_CHECK_NONE: + //nothing done + break; + case DHCP_CHECK_RENEW_OK: + case DHCP_CHECK_REBIND_OK: + //we might have got a new IP. + W5100.setIPAddress(_dhcp->getLocalIp().raw_address()); + W5100.setGatewayIp(_dhcp->getGatewayIp().raw_address()); + W5100.setSubnetMask(_dhcp->getSubnetMask().raw_address()); + _dnsServerAddress = _dhcp->getDnsServerIp(); + break; + default: + //this is actually a error, it will retry though + break; + } + } + return rc; +} + IPAddress EthernetClass::localIP() { IPAddress ret; diff --git a/hardware/arduino/avr/libraries/Ethernet/Ethernet.h b/hardware/arduino/avr/libraries/Ethernet/Ethernet.h index c916ddae5..2a07ff35f 100644 --- a/hardware/arduino/avr/libraries/Ethernet/Ethernet.h +++ b/hardware/arduino/avr/libraries/Ethernet/Ethernet.h @@ -6,12 +6,14 @@ #include "IPAddress.h" #include "EthernetClient.h" #include "EthernetServer.h" +#include "Dhcp.h" #define MAX_SOCK_NUM 4 class EthernetClass { private: IPAddress _dnsServerAddress; + DhcpClass* _dhcp; public: static uint8_t _state[MAX_SOCK_NUM]; static uint16_t _server_port[MAX_SOCK_NUM]; @@ -23,6 +25,7 @@ public: void begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dns_server); void begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dns_server, IPAddress gateway); void begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dns_server, IPAddress gateway, IPAddress subnet); + int maintain(); IPAddress localIP(); IPAddress subnetMask(); diff --git a/hardware/arduino/avr/libraries/Ethernet/EthernetClient.cpp b/hardware/arduino/avr/libraries/Ethernet/EthernetClient.cpp index a77a62beb..9885efb78 100644 --- a/hardware/arduino/avr/libraries/Ethernet/EthernetClient.cpp +++ b/hardware/arduino/avr/libraries/Ethernet/EthernetClient.cpp @@ -41,7 +41,7 @@ int EthernetClient::connect(IPAddress ip, uint16_t port) { for (int i = 0; i < MAX_SOCK_NUM; i++) { uint8_t s = W5100.readSnSR(i); - if (s == SnSR::CLOSED || s == SnSR::FIN_WAIT) { + if (s == SnSR::CLOSED || s == SnSR::FIN_WAIT || s == SnSR::CLOSE_WAIT) { _sock = i; break; } diff --git a/hardware/arduino/avr/libraries/Ethernet/EthernetUdp.cpp b/hardware/arduino/avr/libraries/Ethernet/EthernetUdp.cpp index 9c752fcb6..37600529f 100644 --- a/hardware/arduino/avr/libraries/Ethernet/EthernetUdp.cpp +++ b/hardware/arduino/avr/libraries/Ethernet/EthernetUdp.cpp @@ -52,15 +52,16 @@ uint8_t EthernetUDP::begin(uint16_t port) { return 0; _port = port; + _remaining = 0; socket(_sock, SnMR::UDP, _port, 0); return 1; } -/* Is data available in rx buffer? Returns 0 if no, number of available bytes if yes. - * returned value includes 8 byte UDP header!*/ +/* return number of bytes available in the current packet, + will return zero if parsePacket hasn't been called yet */ int EthernetUDP::available() { - return W5100.getRXReceivedSize(_sock); + return _remaining; } /* Release any resources being used by this EthernetUDP instance */ @@ -116,11 +117,14 @@ size_t EthernetUDP::write(const uint8_t *buffer, size_t size) int EthernetUDP::parsePacket() { - if (available() > 0) + // discard any remaining bytes in the last packet + flush(); + + if (W5100.getRXReceivedSize(_sock) > 0) { //HACK - hand-parse the UDP packet using TCP recv method uint8_t tmpBuf[8]; - int ret =0; + int ret =0; //read 8 header bytes and get IP and port from it ret = recv(_sock,tmpBuf,8); if (ret > 0) @@ -128,8 +132,11 @@ int EthernetUDP::parsePacket() _remoteIP = tmpBuf; _remotePort = tmpBuf[4]; _remotePort = (_remotePort << 8) + tmpBuf[5]; + _remaining = tmpBuf[6]; + _remaining = (_remaining << 8) + tmpBuf[7]; + // When we get here, any remaining bytes are the data - ret = available(); + ret = _remaining; } return ret; } @@ -140,34 +147,58 @@ int EthernetUDP::parsePacket() int EthernetUDP::read() { uint8_t byte; - if (recv(_sock, &byte, 1) > 0) + + if ((_remaining > 0) && (recv(_sock, &byte, 1) > 0)) { // We read things without any problems + _remaining--; return byte; } + // If we get here, there's no data available return -1; } int EthernetUDP::read(unsigned char* buffer, size_t len) { - /* In the readPacket that copes with truncating packets, the buffer was - filled with this code. Not sure why it loops round reading out a byte - at a time. - int i; - for(i=0;i<(int)bufLen;i++) { - recv(_sock,tmpBuf,1); - buf[i]=tmpBuf[0]; + + if (_remaining > 0) + { + + int got; + + if (_remaining <= len) + { + // data should fit in the buffer + got = recv(_sock, buffer, _remaining); + } + else + { + // too much data for the buffer, + // grab as much as will fit + got = recv(_sock, buffer, len); + } + + if (got > 0) + { + _remaining -= got; + return got; + } + } - */ - return recv(_sock, buffer, len); + + // If we get here, there's no data available or recv failed + return -1; + } int EthernetUDP::peek() { uint8_t b; - // Unlike recv, peek doesn't check to see if there's any data available, so we must - if (!available()) + // Unlike recv, peek doesn't check to see if there's any data available, so we must. + // If the user hasn't called parsePacket yet then return nothing otherwise they + // may get the UDP header + if (!_remaining) return -1; ::peek(_sock, &b); return b; @@ -175,7 +206,11 @@ int EthernetUDP::peek() void EthernetUDP::flush() { - while (available()) + // could this fail (loop endlessly) if _remaining > 0 and recv in read fails? + // should only occur if recv fails after telling us the data is there, lets + // hope the w5100 always behaves :) + + while (_remaining) { read(); } diff --git a/hardware/arduino/avr/libraries/Ethernet/EthernetUdp.h b/hardware/arduino/avr/libraries/Ethernet/EthernetUdp.h index 9a2b653e6..8a6b7ab5a 100644 --- a/hardware/arduino/avr/libraries/Ethernet/EthernetUdp.h +++ b/hardware/arduino/avr/libraries/Ethernet/EthernetUdp.h @@ -48,6 +48,7 @@ private: IPAddress _remoteIP; // remote IP address for the incoming packet whilst it's being processed uint16_t _remotePort; // remote port for the incoming packet whilst it's being processed uint16_t _offset; // offset into the packet being sent + uint16_t _remaining; // remaining bytes of incoming packet yet to be processed public: EthernetUDP(); // Constructor diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/ChatServer/ChatServer.ino b/hardware/arduino/avr/libraries/Ethernet/examples/ChatServer/ChatServer.ino index 9f819fd5a..d50e5a657 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/ChatServer/ChatServer.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/ChatServer/ChatServer.ino @@ -12,7 +12,7 @@ created 18 Dec 2009 by David A. Mellis - modified 10 August 2010 + modified 9 Apr 2012 by Tom Igoe */ @@ -23,41 +23,57 @@ // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network. // gateway and subnet are optional: -byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; IPAddress ip(192,168,1, 177); IPAddress gateway(192,168,1, 1); IPAddress subnet(255, 255, 0, 0); + // telnet defaults to port 23 EthernetServer server(23); -boolean gotAMessage = false; // whether or not you got a message from the client yet +boolean alreadyConnected = false; // whether or not the client was connected previously void setup() { // initialize the ethernet device Ethernet.begin(mac, ip, gateway, subnet); // start listening for clients server.begin(); - // open the serial port + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + Serial.print("Chat server address:"); + Serial.println(Ethernet.localIP()); } void loop() { // wait for a new client: EthernetClient client = server.available(); - + // when the client sends the first byte, say hello: if (client) { - if (!gotAMessage) { + if (!alreadyConnected) { + // clead out the input buffer: + client.flush(); Serial.println("We have a new client"); client.println("Hello, client!"); - gotAMessage = true; + alreadyConnected = true; + } + + if (client.available() > 0) { + // read the bytes incoming from the client: + char thisChar = client.read(); + // echo the bytes back to the client: + server.write(thisChar); + // echo the bytes to the server as well: + Serial.write(thisChar); } - - // read the bytes incoming from the client: - char thisChar = client.read(); - // echo the bytes back to the client: - server.write(thisChar); - // echo the bytes to the server as well: - Serial.print(thisChar); } } + + + diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/CosmClient/CosmClient.ino b/hardware/arduino/avr/libraries/Ethernet/examples/CosmClient/CosmClient.ino new file mode 100644 index 000000000..22815afb8 --- /dev/null +++ b/hardware/arduino/avr/libraries/Ethernet/examples/CosmClient/CosmClient.ino @@ -0,0 +1,159 @@ +/* + Cosm sensor client + + This sketch connects an analog sensor to Cosm (http://www.cosm.com) + using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or + the Adafruit Ethernet shield, either one will work, as long as it's got + a Wiznet Ethernet module on board. + + This example has been updated to use version 2.0 of the cosm.com API. + To make it work, create a feed with a datastream, and give it the ID + sensor1. Or change the code below to match your feed. + + + Circuit: + * Analog sensor attached to analog in 0 + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 15 March 2010 + updated 14 May 2012 + by Tom Igoe with input from Usman Haque and Joe Saavedra + +http://arduino.cc/en/Tutorial/CosmClient + This code is in the public domain. + + */ + +#include +#include + +#define APIKEY "YOUR API KEY GOES HERE" // replace your Cosm api key here +#define FEEDID 00000 // replace your feed ID +#define USERAGENT "My Project" // user agent is the project name + +// assign a MAC address for the ethernet controller. +// Newer Ethernet shields have a MAC address printed on a sticker on the shield +// fill in your address here: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; + +// fill in an available IP address on your network here, +// for manual configuration: +IPAddress ip(10,0,1,20); + +// initialize the library instance: +EthernetClient client; + +// if you don't want to use DNS (and reduce your sketch size) +// use the numeric IP instead of the name for the server: +//IPAddress server(216,52,233,121); // numeric IP for api.cosm.com +char server[] = "api.cosm.com"; // name address for cosm API + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10*1000; //delay between updates to cosm.com + +void setup() { + // start serial port: + Serial.begin(9600); + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // DHCP failed, so use a fixed IP address: + Ethernet.begin(mac, ip); + } +} + +void loop() { + // read the analog sensor: + int sensorReading = analogRead(A0); + + // if there's incoming data from the net connection. + // send it out the serial port. This is for debugging + // purposes only: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if there's no net connection, but there was one last time + // through the loop, then stop the client: + if (!client.connected() && lastConnected) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + + // if you're not connected, and ten seconds have passed since + // your last connection, then connect again and send data: + if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + sendData(sensorReading); + } + // store the state of the connection for next time through + // the loop: + lastConnected = client.connected(); +} + +// this method makes a HTTP connection to the server: +void sendData(int thisData) { + // if there's a successful connection: + if (client.connect(server, 80)) { + Serial.println("connecting..."); + // send the HTTP PUT request: + client.print("PUT /v2/feeds/"); + client.print(FEEDID); + client.println(".csv HTTP/1.1"); + client.println("Host: api.cosm.com"); + client.print("X-ApiKey: "); + client.println(APIKEY); + client.print("User-Agent: "); + client.println(USERAGENT); + client.print("Content-Length: "); + + // calculate the length of the sensor reading in bytes: + // 8 bytes for "sensor1," + number of digits of the data: + int thisLength = 8 + getLength(thisData); + client.println(thisLength); + + // last pieces of the HTTP PUT request: + client.println("Content-Type: text/csv"); + client.println("Connection: close"); + client.println(); + + // here's the actual content of the PUT request: + client.print("sensor1,"); + client.println(thisData); + + } + else { + // if you couldn't make a connection: + Serial.println("connection failed"); + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + // note the time that the connection was made or attempted: + lastConnectionTime = millis(); +} + + +// This method calculates the number of digits in the +// sensor reading. Since each digit of the ASCII decimal +// representation is a byte, the number of digits equals +// the number of bytes: + +int getLength(int someValue) { + // there's at least one byte: + int digits = 1; + // continually divide the value by ten, + // adding one to the digit count for each + // time you divide, until you're at 0: + int dividend = someValue /10; + while (dividend > 0) { + dividend = dividend /10; + digits++; + } + // return the number of digits: + return digits; +} + diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino b/hardware/arduino/avr/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino new file mode 100644 index 000000000..05b549b10 --- /dev/null +++ b/hardware/arduino/avr/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino @@ -0,0 +1,146 @@ +/* + Cosm sensor client with Strings + + This sketch connects an analog sensor to Cosm (http://www.cosm.com) + using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or + the Adafruit Ethernet shield, either one will work, as long as it's got + a Wiznet Ethernet module on board. + + This example has been updated to use version 2.0 of the Cosm.com API. + To make it work, create a feed with two datastreams, and give them the IDs + sensor1 and sensor2. Or change the code below to match your feed. + + This example uses the String library, which is part of the Arduino core from + version 0019. + + Circuit: + * Analog sensor attached to analog in 0 + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 15 March 2010 + updated 14 May 2012 + by Tom Igoe with input from Usman Haque and Joe Saavedra + + http://arduino.cc/en/Tutorial/CosmClientString + This code is in the public domain. + + */ + +#include +#include + + +#define APIKEY "YOUR API KEY GOES HERE" // replace your Cosm api key here +#define FEEDID 00000 // replace your feed ID +#define USERAGENT "My Project" // user agent is the project name + +// assign a MAC address for the ethernet controller. +// fill in your address here: + byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; + +// fill in an available IP address on your network here, +// for manual configuration: +IPAddress ip(10,0,1,20); + +// initialize the library instance: +EthernetClient client; + +// if you don't want to use DNS (and reduce your sketch size) +// use the numeric IP instead of the name for the server: +//IPAddress server(216,52,233,121); // numeric IP for api.cosm.com +char server[] = "api.cosm.com"; // name address for Cosm API + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10*1000; //delay between updates to Cosm.com + +void setup() { + // start serial port: + Serial.begin(9600); + // give the ethernet module time to boot up: + delay(1000); + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // DHCP failed, so use a fixed IP address: + Ethernet.begin(mac, ip); + } +} + +void loop() { + // read the analog sensor: + int sensorReading = analogRead(A0); + // convert the data to a String to send it: + + String dataString = "sensor1,"; + dataString += sensorReading; + + // you can append multiple readings to this String if your + // Cosm feed is set up to handle multiple values: + int otherSensorReading = analogRead(A1); + dataString += "\nsensor2,"; + dataString += otherSensorReading; + + // if there's incoming data from the net connection. + // send it out the serial port. This is for debugging + // purposes only: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if there's no net connection, but there was one last time + // through the loop, then stop the client: + if (!client.connected() && lastConnected) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + + // if you're not connected, and ten seconds have passed since + // your last connection, then connect again and send data: + if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + sendData(dataString); + } + // store the state of the connection for next time through + // the loop: + lastConnected = client.connected(); +} + +// this method makes a HTTP connection to the server: +void sendData(String thisData) { + // if there's a successful connection: + if (client.connect(server, 80)) { + Serial.println("connecting..."); + // send the HTTP PUT request: + client.print("PUT /v2/feeds/"); + client.print(FEEDID); + client.println(".csv HTTP/1.1"); + client.println("Host: api.cosm.com"); + client.print("X-ApiKey: "); + client.println(APIKEY); + client.print("User-Agent: "); + client.println(USERAGENT); + client.print("Content-Length: "); + client.println(thisData.length()); + + // last pieces of the HTTP PUT request: + client.println("Content-Type: text/csv"); + client.println("Connection: close"); + client.println(); + + // here's the actual content of the PUT request: + client.println(thisData); + } + else { + // if you couldn't make a connection: + Serial.println("connection failed"); + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + // note the time that the connection was made or attempted: + lastConnectionTime = millis(); +} + diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino b/hardware/arduino/avr/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino index 630dd1711..5eaaf24d1 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino @@ -9,6 +9,7 @@ * Ethernet shield attached to pins 10, 11, 12, 13 created 12 April 2011 + modified 9 Apr 2012 by Tom Igoe */ @@ -27,8 +28,13 @@ byte mac[] = { EthernetClient client; void setup() { - // start the serial library: + // Open serial communications and wait for port to open: Serial.begin(9600); + // this check is only needed on the Leonardo: + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + // start the Ethernet connection: if (Ethernet.begin(mac) == 0) { Serial.println("Failed to configure Ethernet using DHCP"); diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino b/hardware/arduino/avr/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino index 50820542c..09cbd4354 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino @@ -12,6 +12,7 @@ * Ethernet shield attached to pins 10, 11, 12, 13 created 21 May 2011 + modified 9 Apr 2012 by Tom Igoe Based on ChatServer example by David A. Mellis @@ -34,8 +35,14 @@ EthernetServer server(23); boolean gotAMessage = false; // whether or not you got a message from the client yet void setup() { - // open the serial port + // Open serial communications and wait for port to open: Serial.begin(9600); + // this check is only needed on the Leonardo: + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // start the Ethernet connection: Serial.println("Trying to get an IP address using DHCP"); if (Ethernet.begin(mac) == 0) { diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/DnsWebClient/DnsWebClient.ino b/hardware/arduino/avr/libraries/Ethernet/examples/DnsWebClient/DnsWebClient.ino index 5c7a53a65..c14abf403 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/DnsWebClient/DnsWebClient.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/DnsWebClient/DnsWebClient.ino @@ -9,7 +9,7 @@ created 18 Dec 2009 by David A. Mellis - modified 12 April 2011 + modified 9 Apr 2012 by Tom Igoe, based on work by Adrian McEwen */ @@ -28,8 +28,13 @@ char serverName[] = "www.google.com"; EthernetClient client; void setup() { - // start the serial library: + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // start the Ethernet connection: if (Ethernet.begin(mac) == 0) { Serial.println("Failed to configure Ethernet using DHCP"); diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/PachubeClient/PachubeClient.ino b/hardware/arduino/avr/libraries/Ethernet/examples/PachubeClient/PachubeClient.ino index a169443b5..dfd2d4010 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/PachubeClient/PachubeClient.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/PachubeClient/PachubeClient.ino @@ -6,15 +6,20 @@ the Adafruit Ethernet shield, either one will work, as long as it's got a Wiznet Ethernet module on board. + This example has been updated to use version 2.0 of the Pachube.com API. + To make it work, create a feed with a datastream, and give it the ID + sensor1. Or change the code below to match your feed. + + Circuit: * Analog sensor attached to analog in 0 * Ethernet shield attached to pins 10, 11, 12, 13 created 15 March 2010 - updated 26 Oct 2011 - by Tom Igoe + modified 9 Apr 2012 + by Tom Igoe with input from Usman Haque and Joe Saavedra - http://www.tigoe.net/pcomp/code/category/arduinowiring/873 +http://arduino.cc/en/Tutorial/PachubeClient This code is in the public domain. */ @@ -22,6 +27,10 @@ #include #include +#define APIKEY "YOUR API KEY GOES HERE" // replace your pachube api key here +#define FEEDID 00000 // replace your feed ID +#define USERAGENT "My Project" // user agent is the project name + // assign a MAC address for the ethernet controller. // Newer Ethernet shields have a MAC address printed on a sticker on the shield // fill in your address here: @@ -34,26 +43,27 @@ IPAddress ip(10,0,1,20); // initialize the library instance: EthernetClient client; -long lastConnectionTime = 0; // last time you connected to the server, in milliseconds -boolean lastConnected = false; // state of the connection last time through the main loop -const int postingInterval = 10000; //delay between updates to Pachube.com +// if you don't want to use DNS (and reduce your sketch size) +// use the numeric IP instead of the name for the server: +IPAddress server(216,52,233,122); // numeric IP for api.pachube.com +//char server[] = "api.pachube.com"; // name address for pachube API + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10*1000; //delay between updates to Pachube.com void setup() { - // start serial port: + // Open serial communications and wait for port to open: Serial.begin(9600); - // start the Ethernet connection: - if (Ethernet.begin(mac) == 0) { - Serial.println("Failed to configure Ethernet using DHCP"); - // no point in carrying on, so do nothing forevermore: - for(;;) - ; + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only } - // give the ethernet module time to boot up: - delay(1000); - // start the Ethernet connection: + + + // start the Ethernet connection: if (Ethernet.begin(mac) == 0) { Serial.println("Failed to configure Ethernet using DHCP"); - // Configure manually: + // DHCP failed, so use a fixed IP address: Ethernet.begin(mac, ip); } } @@ -91,34 +101,43 @@ void loop() { // this method makes a HTTP connection to the server: void sendData(int thisData) { // if there's a successful connection: - if (client.connect("www.pachube.com", 80)) { + if (client.connect(server, 80)) { Serial.println("connecting..."); - // send the HTTP PUT request. - // fill in your feed address here: - client.print("PUT /api/YOUR_FEED_HERE.csv HTTP/1.1\n"); - client.print("Host: www.pachube.com\n"); - // fill in your Pachube API key here: - client.print("X-PachubeApiKey: YOUR_KEY_HERE\n"); + // send the HTTP PUT request: + client.print("PUT /v2/feeds/"); + client.print(FEEDID); + client.println(".csv HTTP/1.1"); + client.println("Host: api.pachube.com"); + client.print("X-PachubeApiKey: "); + client.println(APIKEY); + client.print("User-Agent: "); + client.println(USERAGENT); client.print("Content-Length: "); // calculate the length of the sensor reading in bytes: - int thisLength = getLength(thisData); - client.println(thisLength, DEC); + // 8 bytes for "sensor1," + number of digits of the data: + int thisLength = 8 + getLength(thisData); + client.println(thisLength); // last pieces of the HTTP PUT request: - client.print("Content-Type: text/csv\n"); - client.println("Connection: close\n"); + client.println("Content-Type: text/csv"); + client.println("Connection: close"); + client.println(); // here's the actual content of the PUT request: - client.println(thisData, DEC); - - // note the time that the connection was made: - lastConnectionTime = millis(); + client.print("sensor1,"); + client.println(thisData); + } else { // if you couldn't make a connection: Serial.println("connection failed"); + Serial.println(); + Serial.println("disconnecting."); + client.stop(); } + // note the time that the connection was made or attempted: + lastConnectionTime = millis(); } diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino b/hardware/arduino/avr/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino index 4a03100f2..2a96e9f86 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino @@ -1,11 +1,15 @@ /* - Pachube sensor client with Strings + Cosm sensor client with Strings - This sketch connects an analog sensor to Pachube (http://www.pachube.com) + This sketch connects an analog sensor to Cosm (http://www.cosm.com) using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or the Adafruit Ethernet shield, either one will work, as long as it's got a Wiznet Ethernet module on board. + This example has been updated to use version 2.0 of the Cosm.com API. + To make it work, create a feed with two datastreams, and give them the IDs + sensor1 and sensor2. Or change the code below to match your feed. + This example uses the String library, which is part of the Arduino core from version 0019. @@ -14,9 +18,10 @@ * Ethernet shield attached to pins 10, 11, 12, 13 created 15 March 2010 - updated 26 Oct 2011 - by Tom Igoe + modified 9 Apr 2012 + by Tom Igoe with input from Usman Haque and Joe Saavedra + http://arduino.cc/en/Tutorial/CosmClientString This code is in the public domain. */ @@ -24,10 +29,17 @@ #include #include + +/#define APIKEY "YOUR API KEY GOES HERE" // replace your Cosm api key here +#define FEEDID 00000 // replace your feed ID +#define USERAGENT "My Project" // user agent is the project name + + // assign a MAC address for the ethernet controller. // fill in your address here: -byte mac[] = { + byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; + // fill in an available IP address on your network here, // for manual configuration: IPAddress ip(10,0,1,20); @@ -35,19 +47,29 @@ IPAddress ip(10,0,1,20); // initialize the library instance: EthernetClient client; -long lastConnectionTime = 0; // last time you connected to the server, in milliseconds -boolean lastConnected = false; // state of the connection last time through the main loop -const int postingInterval = 10000; //delay between updates to Pachube.com +// if you don't want to use DNS (and reduce your sketch size) +// use the numeric IP instead of the name for the server: +IPAddress server(216,52,233,121); // numeric IP for api.cosm.com +//char server[] = "api.cosm.com"; // name address for Cosm API + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10*1000; //delay between updates to Cosm.com void setup() { - // start serial port: + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // give the ethernet module time to boot up: delay(1000); // start the Ethernet connection: if (Ethernet.begin(mac) == 0) { Serial.println("Failed to configure Ethernet using DHCP"); - // Configure manually: + // DHCP failed, so use a fixed IP address: Ethernet.begin(mac, ip); } } @@ -56,13 +78,15 @@ void loop() { // read the analog sensor: int sensorReading = analogRead(A0); // convert the data to a String to send it: - String dataString = String(sensorReading); + + String dataString = "sensor1,"; + dataString += sensorReading; // you can append multiple readings to this String if your - // pachube feed is set up to handle multiple values: + // Cosm feed is set up to handle multiple values: int otherSensorReading = analogRead(A1); - dataString += ","; - dataString += String(otherSensorReading); + dataString += "\nsensor2,"; + dataString += otherSensorReading; // if there's incoming data from the net connection. // send it out the serial port. This is for debugging @@ -81,7 +105,7 @@ void loop() { } // if you're not connected, and ten seconds have passed since - // your last connection, then connect again and send data: + // your last connection, then connect again and send data: if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { sendData(dataString); } @@ -93,29 +117,36 @@ void loop() { // this method makes a HTTP connection to the server: void sendData(String thisData) { // if there's a successful connection: - if (client.connect("www.pachube.com", 80)) { + if (client.connect(server, 80)) { Serial.println("connecting..."); - // send the HTTP PUT request. - // fill in your feed address here: - client.print("PUT /api/YOUR_FEED_HERE.csv HTTP/1.1\n"); - client.print("Host: www.pachube.com\n"); - // fill in your Pachube API key here: - client.print("X-PachubeApiKey: YOUR_KEY_HERE\n"); + // send the HTTP PUT request: + client.print("PUT /v2/feeds/"); + client.print(FEEDID); + client.println(".csv HTTP/1.1"); + client.println("Host: api.cosm.com"); + client.print("X-CosmApiKey: "); + client.println(APIKEY); + client.print("User-Agent: "); + client.println(USERAGENT); client.print("Content-Length: "); - client.println(thisData.length(), DEC); + client.println(thisData.length()); // last pieces of the HTTP PUT request: - client.print("Content-Type: text/csv\n"); - client.println("Connection: close\n"); + client.println("Content-Type: text/csv"); + client.println("Connection: close"); + client.println(); // here's the actual content of the PUT request: client.println(thisData); - - // note the time that the connection was made: - lastConnectionTime = millis(); } else { // if you couldn't make a connection: Serial.println("connection failed"); + Serial.println(); + Serial.println("disconnecting."); + client.stop(); } + // note the time that the connection was made or attempted: + lastConnectionTime = millis(); } + diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino b/hardware/arduino/avr/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino index 5cf1ad875..345712564 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino @@ -13,6 +13,7 @@ * Ethernet shield attached to pins 10, 11, 12, 13 created 14 Sep 2010 + modified 9 Apr 2012 by Tom Igoe */ @@ -38,8 +39,13 @@ EthernetClient client; void setup() { // start the Ethernet connection: Ethernet.begin(mac, ip); - // start the serial library: + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // give the Ethernet shield a second to initialize: delay(1000); Serial.println("connecting..."); diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/TwitterClient/TwitterClient.ino b/hardware/arduino/avr/libraries/Ethernet/examples/TwitterClient/TwitterClient.ino index f113e17b9..3587d72d3 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/TwitterClient/TwitterClient.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/TwitterClient/TwitterClient.ino @@ -14,9 +14,10 @@ version 0019. Circuit: - * Ethernet shield attached to pins 10, 11, 12, 13 + * Ethernet shield attached to pins 10, 11, 12, 13 created 21 May 2011 + modified 9 Apr 2012 by Tom Igoe This code is in the public domain. @@ -35,12 +36,12 @@ IPAddress ip(192,168,1,20); // initialize the library instance: EthernetClient client; -const int requestInterval = 60000; // delay between requests +const unsigned long requestInterval = 60000; // delay between requests char serverName[] = "api.twitter.com"; // twitter URL boolean requested; // whether you've made a request since connecting -long lastAttemptTime = 0; // last time you connected to the server, in milliseconds +unsigned long lastAttemptTime = 0; // last time you connected to the server, in milliseconds String currentLine = ""; // string to hold the text from server String tweet = ""; // string to hold the tweet @@ -51,13 +52,22 @@ void setup() { currentLine.reserve(256); tweet.reserve(150); -// initialize serial: + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // attempt a DHCP connection: + Serial.println("Attempting to get an IP address using DHCP:"); if (!Ethernet.begin(mac)) { // if DHCP fails, start with a hard-coded address: + Serial.println("failed to get an IP address using DHCP, trying manually"); Ethernet.begin(mac, ip); } + Serial.print("My address:"); + Serial.println(Ethernet.localIP()); // connect to Twitter: connectToServer(); } @@ -114,7 +124,7 @@ void connectToServer() { Serial.println("connecting to server..."); if (client.connect(serverName, 80)) { Serial.println("making HTTP request..."); - // make HTTP GET request to twitter: + // make HTTP GET request to twitter: client.println("GET /1/statuses/user_timeline.xml?screen_name=arduino&count=1 HTTP/1.1"); client.println("HOST: api.twitter.com"); client.println(); @@ -122,3 +132,4 @@ void connectToServer() { // note the time of this connect attempt: lastAttemptTime = millis(); } + diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino b/hardware/arduino/avr/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino index b4e24b8ce..93ffe3991 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino @@ -9,7 +9,7 @@ created 4 Sep 2010 by Michael Margolis - modified 17 Sep 2010 + modified 9 Apr 2012 by Tom Igoe This code is in the public domain. @@ -38,7 +38,12 @@ EthernetUDP Udp; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + // start Ethernet and UDP if (Ethernet.begin(mac) == 0) { diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/WebClient/WebClient.ino b/hardware/arduino/avr/libraries/Ethernet/examples/WebClient/WebClient.ino index 18068541f..5d5d7f20b 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/WebClient/WebClient.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/WebClient/WebClient.ino @@ -8,6 +8,7 @@ * Ethernet shield attached to pins 10, 11, 12, 13 created 18 Dec 2009 + modified 9 Apr 2012 by David A. Mellis */ @@ -26,8 +27,12 @@ IPAddress server(173,194,33,104); // Google EthernetClient client; void setup() { - // start the serial library: + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + // start the Ethernet connection: if (Ethernet.begin(mac) == 0) { Serial.println("Failed to configure Ethernet using DHCP"); diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino b/hardware/arduino/avr/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino new file mode 100644 index 000000000..e0f06c439 --- /dev/null +++ b/hardware/arduino/avr/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino @@ -0,0 +1,110 @@ +/* + Repeating Web client + + This sketch connects to a a web server and makes a request + using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or + the Adafruit Ethernet shield, either one will work, as long as it's got + a Wiznet Ethernet module on board. + + This example uses DNS, by assigning the Ethernet client with a MAC address, + IP address, and DNS address. + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 19 Apr 2012 + by Tom Igoe + + http://arduino.cc/en/Tutorial/WebClientRepeating + This code is in the public domain. + + */ + +#include +#include + +// assign a MAC address for the ethernet controller. +// fill in your address here: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; +// fill in an available IP address on your network here, +// for manual configuration: +IPAddress ip(10,0,0,20); + +// fill in your Domain Name Server address here: +IPAddress myDns(1,1,1,1); + +// initialize the library instance: +EthernetClient client; + +char server[] = "www.arduino.cc"; + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 60*1000; // delay between updates, in milliseconds + +void setup() { + // start serial port: + Serial.begin(9600); + // give the ethernet module time to boot up: + delay(1000); + // start the Ethernet connection using a fixed IP address and DNS server: + Ethernet.begin(mac, ip, myDns); + // print the Ethernet board/shield's IP address: + Serial.print("My IP address: "); + Serial.println(Ethernet.localIP()); +} + +void loop() { + // if there's incoming data from the net connection. + // send it out the serial port. This is for debugging + // purposes only: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if there's no net connection, but there was one last time + // through the loop, then stop the client: + if (!client.connected() && lastConnected) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + + // if you're not connected, and ten seconds have passed since + // your last connection, then connect again and send data: + if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + httpRequest(); + } + // store the state of the connection for next time through + // the loop: + lastConnected = client.connected(); +} + +// this method makes a HTTP connection to the server: +void httpRequest() { + // if there's a successful connection: + if (client.connect(server, 80)) { + Serial.println("connecting..."); + // send the HTTP PUT request: + client.println("GET /latest.txt HTTP/1.1"); + client.println("Host: www.arduino.cc"); + client.println("User-Agent: arduino-ethernet"); + client.println("Connection: close"); + client.println(); + + // note the time that the connection was made: + lastConnectionTime = millis(); + } + else { + // if you couldn't make a connection: + Serial.println("connection failed"); + Serial.println("disconnecting."); + client.stop(); + } +} + + + + diff --git a/hardware/arduino/avr/libraries/Ethernet/examples/WebServer/WebServer.ino b/hardware/arduino/avr/libraries/Ethernet/examples/WebServer/WebServer.ino index 6837f8320..ce8dbb1b0 100644 --- a/hardware/arduino/avr/libraries/Ethernet/examples/WebServer/WebServer.ino +++ b/hardware/arduino/avr/libraries/Ethernet/examples/WebServer/WebServer.ino @@ -10,7 +10,7 @@ created 18 Dec 2009 by David A. Mellis - modified 4 Sep 2010 + modified 9 Apr 2012 by Tom Igoe */ @@ -20,7 +20,8 @@ // Enter a MAC address and IP address for your controller below. // The IP address will be dependent on your local network: -byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; IPAddress ip(192,168,1, 177); // Initialize the Ethernet server library @@ -28,23 +29,33 @@ IPAddress ip(192,168,1, 177); // (port 80 is default for HTTP): EthernetServer server(80); -void setup() -{ +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // start the Ethernet connection and the server: Ethernet.begin(mac, ip); server.begin(); + Serial.print("server is at "); + Serial.println(Ethernet.localIP()); } -void loop() -{ + +void loop() { // listen for incoming clients EthernetClient client = server.available(); if (client) { + Serial.println("new client"); // an http request ends with a blank line boolean currentLineIsBlank = true; while (client.connected()) { if (client.available()) { char c = client.read(); + Serial.write(c); // if you've gotten to the end of the line (received a newline // character) and the line is blank, the http request has ended, // so you can send a reply @@ -52,16 +63,22 @@ void loop() // send a standard http response header client.println("HTTP/1.1 200 OK"); client.println("Content-Type: text/html"); + client.println("Connnection: close"); client.println(); - + client.println(""); + client.println(""); + // add a meta refresh tag, so the browser pulls again every 5 seconds: + client.println(""); // output the value of each analog input pin for (int analogChannel = 0; analogChannel < 6; analogChannel++) { + int sensorReading = analogRead(analogChannel); client.print("analog input "); client.print(analogChannel); client.print(" is "); - client.print(analogRead(analogChannel)); - client.println("
"); + client.print(sensorReading); + client.println("
"); } + client.println(""); break; } if (c == '\n') { @@ -78,5 +95,7 @@ void loop() delay(1); // close the connection: client.stop(); + Serial.println("client disonnected"); } } + diff --git a/hardware/arduino/avr/libraries/Ethernet/utility/w5100.h b/hardware/arduino/avr/libraries/Ethernet/utility/w5100.h index 153aedbc6..8dccd9f29 100755 --- a/hardware/arduino/avr/libraries/Ethernet/utility/w5100.h +++ b/hardware/arduino/avr/libraries/Ethernet/utility/w5100.h @@ -327,7 +327,11 @@ private: inline static void initSS() { DDRB |= _BV(4); }; inline static void setSS() { PORTB &= ~_BV(4); }; inline static void resetSS() { PORTB |= _BV(4); }; -#elif defined(__AVR_ATmega32U4__) || defined(__AVR_AT90USB1286__) || defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB162__) +#elif defined(__AVR_ATmega32U4__) + inline static void initSS() { DDRB |= _BV(6); }; + inline static void setSS() { PORTB &= ~_BV(6); }; + inline static void resetSS() { PORTB |= _BV(6); }; +#elif defined(__AVR_AT90USB1286__) || defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB162__) inline static void initSS() { DDRB |= _BV(0); }; inline static void setSS() { PORTB &= ~_BV(0); }; inline static void resetSS() { PORTB |= _BV(0); }; diff --git a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino index 27123ad4c..1127d8f15 100644 --- a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino +++ b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Autoscroll/Autoscroll.ino @@ -32,7 +32,8 @@ This example code is in the public domain. - http://www.arduino.cc/en/Tutorial/LiquidCrystal + http://arduino.cc/en/Tutorial/LiquidCrystalAutoscroll + */ // include the library code: diff --git a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Blink/Blink.ino b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Blink/Blink.ino index e4104242e..9667b5d6f 100644 --- a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Blink/Blink.ino +++ b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Blink/Blink.ino @@ -32,7 +32,7 @@ This example code is in the public domain. - http://www.arduino.cc/en/Tutorial/LiquidCrystal + http://arduino.cc/en/Tutorial/LiquidCrystalBlink */ diff --git a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Cursor/Cursor.ino b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Cursor/Cursor.ino index 28e2a6a22..05862a49f 100644 --- a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Cursor/Cursor.ino +++ b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Cursor/Cursor.ino @@ -33,7 +33,8 @@ This example code is in the public domain. - http://www.arduino.cc/en/Tutorial/LiquidCrystal + http://arduino.cc/en/Tutorial/LiquidCrystalCursor + */ // include the library code: diff --git a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Display/Display.ino b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Display/Display.ino index b000731a4..a85effb44 100644 --- a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Display/Display.ino +++ b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Display/Display.ino @@ -33,7 +33,8 @@ This example code is in the public domain. - http://www.arduino.cc/en/Tutorial/LiquidCrystal + http://arduino.cc/en/Tutorial/LiquidCrystalDisplay + */ // include the library code: diff --git a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Scroll/Scroll.ino b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Scroll/Scroll.ino index 71e5e8cce..0d6d8dcf8 100644 --- a/hardware/arduino/avr/libraries/LiquidCrystal/examples/Scroll/Scroll.ino +++ b/hardware/arduino/avr/libraries/LiquidCrystal/examples/Scroll/Scroll.ino @@ -33,7 +33,8 @@ This example code is in the public domain. - http://www.arduino.cc/en/Tutorial/LiquidCrystal + http://arduino.cc/en/Tutorial/LiquidCrystalScroll + */ // include the library code: diff --git a/hardware/arduino/avr/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.ino b/hardware/arduino/avr/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.ino index 9727cee03..a6f8f40bc 100644 --- a/hardware/arduino/avr/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.ino +++ b/hardware/arduino/avr/libraries/LiquidCrystal/examples/SerialDisplay/SerialDisplay.ino @@ -32,7 +32,7 @@ This example code is in the public domain. - http://www.arduino.cc/en/Tutorial/LiquidCrystal + http://arduino.cc/en/Tutorial/LiquidCrystalSerial */ // include the library code: diff --git a/hardware/arduino/avr/libraries/LiquidCrystal/examples/TextDirection/TextDirection.ino b/hardware/arduino/avr/libraries/LiquidCrystal/examples/TextDirection/TextDirection.ino index 51bab1fb5..cabd8ea8f 100644 --- a/hardware/arduino/avr/libraries/LiquidCrystal/examples/TextDirection/TextDirection.ino +++ b/hardware/arduino/avr/libraries/LiquidCrystal/examples/TextDirection/TextDirection.ino @@ -32,7 +32,7 @@ This example code is in the public domain. - http://www.arduino.cc/en/Tutorial/LiquidCrystal + http://arduino.cc/en/Tutorial/LiquidCrystalTextDirection */ @@ -49,7 +49,6 @@ void setup() { lcd.begin(16, 2); // turn on the cursor: lcd.cursor(); - Serial.begin(9600); } void loop() { diff --git a/hardware/arduino/avr/libraries/LiquidCrystal/examples/setCursor/setCursor.ino b/hardware/arduino/avr/libraries/LiquidCrystal/examples/setCursor/setCursor.ino index 3c4edf3c4..e45c49181 100644 --- a/hardware/arduino/avr/libraries/LiquidCrystal/examples/setCursor/setCursor.ino +++ b/hardware/arduino/avr/libraries/LiquidCrystal/examples/setCursor/setCursor.ino @@ -32,7 +32,8 @@ This example code is in the public domain. - http://www.arduino.cc/en/Tutorial/LiquidCrystal + http://arduino.cc/en/Tutorial/LiquidCrystalSetCursor + */ // include the library code: diff --git a/hardware/arduino/avr/libraries/SD/examples/CardInfo/CardInfo.ino b/hardware/arduino/avr/libraries/SD/examples/CardInfo/CardInfo.ino index fb2f6c3ca..0c2dfc5e2 100644 --- a/hardware/arduino/avr/libraries/SD/examples/CardInfo/CardInfo.ino +++ b/hardware/arduino/avr/libraries/SD/examples/CardInfo/CardInfo.ino @@ -16,7 +16,7 @@ created 28 Mar 2011 by Limor Fried - modified 16 Mar 2011 + modified 9 Apr 2012 by Tom Igoe */ // include the SD library: @@ -35,7 +35,13 @@ const int chipSelect = 4; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + Serial.print("\nInitializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. // Note that even if it's not used as the CS pin, the hardware SS pin diff --git a/hardware/arduino/avr/libraries/SD/examples/Datalogger/Datalogger.ino b/hardware/arduino/avr/libraries/SD/examples/Datalogger/Datalogger.ino index 73d81af7b..a7f85eeaf 100644 --- a/hardware/arduino/avr/libraries/SD/examples/Datalogger/Datalogger.ino +++ b/hardware/arduino/avr/libraries/SD/examples/Datalogger/Datalogger.ino @@ -13,7 +13,7 @@ ** CS - pin 4 created 24 Nov 2010 - updated 2 Dec 2010 + modified 9 Apr 2012 by Tom Igoe This example code is in the public domain. @@ -30,7 +30,13 @@ const int chipSelect = 4; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + Serial.print("Initializing SD card..."); // make sure that the default chip select pin is set to // output, even if you don't use it: diff --git a/hardware/arduino/avr/libraries/SD/examples/DumpFile/DumpFile.ino b/hardware/arduino/avr/libraries/SD/examples/DumpFile/DumpFile.ino index 961717fc9..d83089af6 100644 --- a/hardware/arduino/avr/libraries/SD/examples/DumpFile/DumpFile.ino +++ b/hardware/arduino/avr/libraries/SD/examples/DumpFile/DumpFile.ino @@ -12,6 +12,9 @@ ** CS - pin 4 created 22 December 2010 + by Limor Fried + modified 9 Apr 2012 + by Tom Igoe This example code is in the public domain. @@ -27,7 +30,13 @@ const int chipSelect = 4; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + Serial.print("Initializing SD card..."); // make sure that the default chip select pin is set to // output, even if you don't use it: diff --git a/hardware/arduino/avr/libraries/SD/examples/Files/Files.ino b/hardware/arduino/avr/libraries/SD/examples/Files/Files.ino index 5ed9fea4e..a15b8626d 100644 --- a/hardware/arduino/avr/libraries/SD/examples/Files/Files.ino +++ b/hardware/arduino/avr/libraries/SD/examples/Files/Files.ino @@ -11,7 +11,7 @@ created Nov 2010 by David A. Mellis - updated 2 Dec 2010 + modified 9 Apr 2012 by Tom Igoe This example code is in the public domain. @@ -23,7 +23,13 @@ File myFile; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + Serial.print("Initializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. // Note that even if it's not used as the CS pin, the hardware SS pin diff --git a/hardware/arduino/avr/libraries/SD/examples/ReadWrite/ReadWrite.ino b/hardware/arduino/avr/libraries/SD/examples/ReadWrite/ReadWrite.ino index 995721800..5805fc8d6 100644 --- a/hardware/arduino/avr/libraries/SD/examples/ReadWrite/ReadWrite.ino +++ b/hardware/arduino/avr/libraries/SD/examples/ReadWrite/ReadWrite.ino @@ -11,7 +11,7 @@ created Nov 2010 by David A. Mellis - updated 2 Dec 2010 + modified 9 Apr 2012 by Tom Igoe This example code is in the public domain. @@ -24,7 +24,13 @@ File myFile; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + Serial.print("Initializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. // Note that even if it's not used as the CS pin, the hardware SS pin diff --git a/hardware/arduino/avr/libraries/SD/examples/listfiles/listfiles.ino b/hardware/arduino/avr/libraries/SD/examples/listfiles/listfiles.ino index b2435a2c6..876c3f865 100644 --- a/hardware/arduino/avr/libraries/SD/examples/listfiles/listfiles.ino +++ b/hardware/arduino/avr/libraries/SD/examples/listfiles/listfiles.ino @@ -11,7 +11,7 @@ created Nov 2010 by David A. Mellis - updated 2 Dec 2010 + modified 9 Apr 2012 by Tom Igoe This example code is in the public domain. @@ -23,7 +23,13 @@ File root; void setup() { + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + Serial.print("Initializing SD card..."); // On the Ethernet Shield, CS is pin 4. It's set as an output by default. // Note that even if it's not used as the CS pin, the hardware SS pin diff --git a/hardware/arduino/avr/libraries/SD/utility/Sd2PinMap.h b/hardware/arduino/avr/libraries/SD/utility/Sd2PinMap.h index 4bd75a35d..1c76dd3a4 100644 --- a/hardware/arduino/avr/libraries/SD/utility/Sd2PinMap.h +++ b/hardware/arduino/avr/libraries/SD/utility/Sd2PinMap.h @@ -166,44 +166,43 @@ static const pin_map_t digitalPinMap[] = { }; //------------------------------------------------------------------------------ #elif defined(__AVR_ATmega32U4__) -// Teensy 2.0 +// Leonardo // Two Wire (aka I2C) ports -uint8_t const SDA_PIN = 6; -uint8_t const SCL_PIN = 5; +uint8_t const SDA_PIN = 2; +uint8_t const SCL_PIN = 3; // SPI port -uint8_t const SS_PIN = 0; -uint8_t const MOSI_PIN = 2; -uint8_t const MISO_PIN = 3; -uint8_t const SCK_PIN = 1; +uint8_t const SS_PIN = 17; +uint8_t const MOSI_PIN = 16; +uint8_t const MISO_PIN = 14; +uint8_t const SCK_PIN = 15; static const pin_map_t digitalPinMap[] = { - {&DDRB, &PINB, &PORTB, 0}, // B0 0 - {&DDRB, &PINB, &PORTB, 1}, // B1 1 - {&DDRB, &PINB, &PORTB, 2}, // B2 2 - {&DDRB, &PINB, &PORTB, 3}, // B3 3 - {&DDRB, &PINB, &PORTB, 7}, // B7 4 - {&DDRD, &PIND, &PORTD, 0}, // D0 5 - {&DDRD, &PIND, &PORTD, 1}, // D1 6 - {&DDRD, &PIND, &PORTD, 2}, // D2 7 - {&DDRD, &PIND, &PORTD, 3}, // D3 8 - {&DDRC, &PINC, &PORTC, 6}, // C6 9 - {&DDRC, &PINC, &PORTC, 7}, // C7 10 - {&DDRD, &PIND, &PORTD, 6}, // D6 11 - {&DDRD, &PIND, &PORTD, 7}, // D7 12 - {&DDRB, &PINB, &PORTB, 4}, // B4 13 - {&DDRB, &PINB, &PORTB, 5}, // B5 14 - {&DDRB, &PINB, &PORTB, 6}, // B6 15 - {&DDRF, &PINF, &PORTF, 7}, // F7 16 - {&DDRF, &PINF, &PORTF, 6}, // F6 17 - {&DDRF, &PINF, &PORTF, 5}, // F5 18 - {&DDRF, &PINF, &PORTF, 4}, // F4 19 - {&DDRF, &PINF, &PORTF, 1}, // F1 20 - {&DDRF, &PINF, &PORTF, 0}, // F0 21 - {&DDRD, &PIND, &PORTD, 4}, // D4 22 - {&DDRD, &PIND, &PORTD, 5}, // D5 23 - {&DDRE, &PINE, &PORTE, 6} // E6 24 + {&DDRD, &PIND, &PORTD, 2}, // D2 0 + {&DDRD, &PIND, &PORTD, 3}, // D3 1 + {&DDRD, &PIND, &PORTD, 1}, // D1 2 + {&DDRD, &PIND, &PORTD, 0}, // D0 3 + {&DDRD, &PIND, &PORTD, 4}, // D4 4 + {&DDRC, &PINC, &PORTC, 6}, // C6 5 + {&DDRD, &PIND, &PORTD, 7}, // D7 6 + {&DDRE, &PINE, &PORTE, 6}, // E6 7 + {&DDRB, &PINB, &PORTB, 4}, // B4 8 + {&DDRB, &PINB, &PORTB, 5}, // B5 9 + {&DDRB, &PINB, &PORTB, 6}, // B6 10 + {&DDRB, &PINB, &PORTB, 7}, // B7 11 + {&DDRD, &PIND, &PORTD, 6}, // D6 12 + {&DDRC, &PINC, &PORTC, 7}, // C7 13 + {&DDRB, &PINB, &PORTB, 3}, // B3 14 + {&DDRB, &PINB, &PORTB, 1}, // B1 15 + {&DDRB, &PINB, &PORTB, 2}, // B2 16 + {&DDRB, &PINB, &PORTB, 0}, // B0 17 + {&DDRF, &PINF, &PORTF, 7}, // F7 18 + {&DDRF, &PINF, &PORTF, 6}, // F6 19 + {&DDRF, &PINF, &PORTF, 5}, // F5 20 + {&DDRF, &PINF, &PORTF, 4}, // F4 21 + {&DDRF, &PINF, &PORTF, 1}, // F1 22 + {&DDRF, &PINF, &PORTF, 0}, // F0 23 }; //------------------------------------------------------------------------------ #elif defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__) diff --git a/hardware/arduino/avr/libraries/SD/utility/SdFatUtil.h b/hardware/arduino/avr/libraries/SD/utility/SdFatUtil.h index 283fcb21a..7d6b4104f 100644 --- a/hardware/arduino/avr/libraries/SD/utility/SdFatUtil.h +++ b/hardware/arduino/avr/libraries/SD/utility/SdFatUtil.h @@ -56,7 +56,7 @@ static UNUSEDOK int FreeRam(void) { * \param[in] str Pointer to string stored in flash memory. */ static NOINLINE void SerialPrint_P(PGM_P str) { - for (uint8_t c; (c = pgm_read_byte(str)); str++) Serial.print(c); + for (uint8_t c; (c = pgm_read_byte(str)); str++) Serial.write(c); } //------------------------------------------------------------------------------ /** diff --git a/hardware/arduino/avr/libraries/SPI/SPI.cpp b/hardware/arduino/avr/libraries/SPI/SPI.cpp index 42915df1e..5e48073f7 100644 --- a/hardware/arduino/avr/libraries/SPI/SPI.cpp +++ b/hardware/arduino/avr/libraries/SPI/SPI.cpp @@ -14,27 +14,32 @@ SPIClass SPI; void SPIClass::begin() { - // Set direction register for SCK and MOSI pin. - // MISO pin automatically overrides to INPUT. + + // Set SS to high so a connected chip will be "deselected" by default + digitalWrite(SS, HIGH); + // When the SS pin is set as OUTPUT, it can be used as // a general purpose output port (it doesn't influence // SPI operations). - - pinMode(SCK, OUTPUT); - pinMode(MOSI, OUTPUT); pinMode(SS, OUTPUT); - - digitalWrite(SCK, LOW); - digitalWrite(MOSI, LOW); - digitalWrite(SS, HIGH); - // Warning: if the SS pin ever becomes a LOW INPUT then SPI - // automatically switches to Slave, so the data direction of + // Warning: if the SS pin ever becomes a LOW INPUT then SPI + // automatically switches to Slave, so the data direction of // the SS pin MUST be kept as OUTPUT. SPCR |= _BV(MSTR); SPCR |= _BV(SPE); + + // Set direction register for SCK and MOSI pin. + // MISO pin automatically overrides to INPUT. + // By doing this AFTER enabling SPI, we avoid accidentally + // clocking in a single bit since the lines go directly + // from "input" to SPI control. + // http://code.google.com/p/arduino/issues/detail?id=888 + pinMode(SCK, OUTPUT); + pinMode(MOSI, OUTPUT); } + void SPIClass::end() { SPCR &= ~_BV(SPE); } diff --git a/hardware/arduino/avr/libraries/Servo/Servo.cpp b/hardware/arduino/avr/libraries/Servo/Servo.cpp index acac29a86..a71643323 100755 --- a/hardware/arduino/avr/libraries/Servo/Servo.cpp +++ b/hardware/arduino/avr/libraries/Servo/Servo.cpp @@ -89,7 +89,7 @@ static inline void handle_interrupts(timer16_Sequence_t timer, volatile uint16_t } else { // finished all channels so wait for the refresh period to expire before starting over - if( (unsigned)*TCNTn < (usToTicks(REFRESH_INTERVAL) + 4) ) // allow a few ticks to ensure the next OCR1A not missed + if( ((unsigned)*TCNTn) + 4 < usToTicks(REFRESH_INTERVAL) ) // allow a few ticks to ensure the next OCR1A not missed *OCRnA = (unsigned int)usToTicks(REFRESH_INTERVAL); else *OCRnA = *TCNTn + 4; // at least REFRESH_INTERVAL has elapsed @@ -298,7 +298,7 @@ void Servo::writeMicroseconds(int value) { // calculate and store the values for the given channel byte channel = this->servoIndex; - if( (channel >= 0) && (channel < MAX_SERVOS) ) // ensure channel is valid + if( (channel < MAX_SERVOS) ) // ensure channel is valid { if( value < SERVO_MIN() ) // ensure pulse width is valid value = SERVO_MIN(); diff --git a/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino b/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino index 1f535bdef..6101bb1ad 100644 --- a/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino +++ b/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino @@ -1,10 +1,43 @@ +/* + Software serial multple serial test + + Receives from the hardware serial, sends to software serial. + Receives from software serial, sends to hardware serial. + + The circuit: + * RX is digital pin 10 (connect to TX of other device) + * TX is digital pin 11 (connect to RX of other device) + + Note: + Not all pins on the Mega and Mega 2560 support change interrupts, + so only the following can be used for RX: + 10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69 + + Not all pins on the Leonardo support change interrupts, + so only the following can be used for RX: + 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI). + + created back in the mists of time + modified 25 May 2012 + by Tom Igoe + based on Mikal Hart's example + + This example code is in the public domain. + + */ #include -SoftwareSerial mySerial(2, 3); +SoftwareSerial mySerial(10, 11); // RX, TX void setup() { + // Open serial communications and wait for port to open: Serial.begin(57600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + Serial.println("Goodnight moon!"); // set the data rate for the SoftwareSerial port @@ -19,3 +52,4 @@ void loop() // run over and over if (Serial.available()) mySerial.write(Serial.read()); } + diff --git a/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino b/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino index e870c6fc1..d607ee622 100644 --- a/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino +++ b/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino @@ -16,7 +16,17 @@ * First serial device's TX attached to digital pin 2, RX to pin 3 * Second serial device's TX attached to digital pin 4, RX to pin 5 + Note: + Not all pins on the Mega and Mega 2560 support change interrupts, + so only the following can be used for RX: + 10, 11, 12, 13, 50, 51, 52, 53, 62, 63, 64, 65, 66, 67, 68, 69 + + Not all pins on the Leonardo support change interrupts, + so only the following can be used for RX: + 8, 9, 10, 11, 14 (MISO), 15 (SCK), 16 (MOSI). + created 18 Apr. 2011 + modified 25 May 2012 by Tom Igoe based on Mikal Hart's twoPortRXExample @@ -25,16 +35,21 @@ */ #include -// software serial #1: TX = digital pin 2, RX = digital pin 3 -SoftwareSerial portOne(2, 3); +// software serial #1: TX = digital pin 10, RX = digital pin 11 +SoftwareSerial portOne(10,11); -// software serial #2: TX = digital pin 4, RX = digital pin 5 -SoftwareSerial portTwo(4, 5); +// software serial #2: TX = digital pin 8, RX = digital pin 9 +// on the Mega, use other pins instead, since 8 and 9 don't work on the Mega +SoftwareSerial portTwo(8,9); void setup() { - // Start the hardware serial port + // Open serial communications and wait for port to open: Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + // Start each software serial port portOne.begin(9600); diff --git a/hardware/arduino/avr/libraries/Stepper/examples/stepper_speedControl/stepper_speedControl.ino b/hardware/arduino/avr/libraries/Stepper/examples/stepper_speedControl/stepper_speedControl.ino index dbd0f7f02..1a67a55ea 100644 --- a/hardware/arduino/avr/libraries/Stepper/examples/stepper_speedControl/stepper_speedControl.ino +++ b/hardware/arduino/avr/libraries/Stepper/examples/stepper_speedControl/stepper_speedControl.ino @@ -26,11 +26,10 @@ const int stepsPerRevolution = 200; // change this to fit the number of steps p // initialize the stepper library on pins 8 through 11: Stepper myStepper(stepsPerRevolution, 8,9,10,11); -int stepCount = 0; // number of steps the motor has taken +int stepCount = 0; // number of steps the motor has taken void setup() { - // initialize the serial port: - Serial.begin(9600); + // nothing to do inside the setup } void loop() { diff --git a/hardware/arduino/avr/libraries/Wire/Wire.cpp b/hardware/arduino/avr/libraries/Wire/Wire.cpp index d83f4789e..4e7a17c47 100755 --- a/hardware/arduino/avr/libraries/Wire/Wire.cpp +++ b/hardware/arduino/avr/libraries/Wire/Wire.cpp @@ -15,6 +15,8 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + Modified 2012 by Todd Krein (todd@krein.org) to implement repeated starts */ extern "C" { @@ -73,14 +75,14 @@ void TwoWire::begin(int address) begin((uint8_t)address); } -uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity) +uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity, uint8_t sendStop) { // clamp to buffer length if(quantity > BUFFER_LENGTH){ quantity = BUFFER_LENGTH; } // perform blocking read into buffer - uint8_t read = twi_readFrom(address, rxBuffer, quantity); + uint8_t read = twi_readFrom(address, rxBuffer, quantity, sendStop); // set rx buffer iterator vars rxBufferIndex = 0; rxBufferLength = read; @@ -88,9 +90,19 @@ uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity) return read; } +uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity) +{ + return requestFrom((uint8_t)address, (uint8_t)quantity, (uint8_t)true); +} + uint8_t TwoWire::requestFrom(int address, int quantity) { - return requestFrom((uint8_t)address, (uint8_t)quantity); + return requestFrom((uint8_t)address, (uint8_t)quantity, (uint8_t)true); +} + +uint8_t TwoWire::requestFrom(int address, int quantity, int sendStop) +{ + return requestFrom((uint8_t)address, (uint8_t)quantity, (uint8_t)sendStop); } void TwoWire::beginTransmission(uint8_t address) @@ -109,10 +121,23 @@ void TwoWire::beginTransmission(int address) beginTransmission((uint8_t)address); } -uint8_t TwoWire::endTransmission(void) +// +// Originally, 'endTransmission' was an f(void) function. +// It has been modified to take one parameter indicating +// whether or not a STOP should be performed on the bus. +// Calling endTransmission(false) allows a sketch to +// perform a repeated start. +// +// WARNING: Nothing in the library keeps track of whether +// the bus tenure has been properly ended with a STOP. It +// is very possible to leave the bus in a hung state if +// no call to endTransmission(true) is made. Some I2C +// devices will behave oddly if they do not see a STOP. +// +uint8_t TwoWire::endTransmission(uint8_t sendStop) { // transmit buffer (blocking) - int8_t ret = twi_writeTo(txAddress, txBuffer, txBufferLength, 1); + int8_t ret = twi_writeTo(txAddress, txBuffer, txBufferLength, 1, sendStop); // reset tx buffer iterator vars txBufferIndex = 0; txBufferLength = 0; @@ -121,6 +146,14 @@ uint8_t TwoWire::endTransmission(void) return ret; } +// This provides backwards compatibility with the original +// definition, and expected behaviour, of endTransmission +// +uint8_t TwoWire::endTransmission(void) +{ + return endTransmission(true); +} + // must be called in: // slave tx event callback // or after beginTransmission(address) diff --git a/hardware/arduino/avr/libraries/Wire/Wire.h b/hardware/arduino/avr/libraries/Wire/Wire.h index 9ea4afd30..a93d0f5bb 100755 --- a/hardware/arduino/avr/libraries/Wire/Wire.h +++ b/hardware/arduino/avr/libraries/Wire/Wire.h @@ -15,6 +15,8 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + Modified 2012 by Todd Krein (todd@krein.org) to implement repeated starts */ #ifndef TwoWire_h @@ -50,8 +52,11 @@ class TwoWire : public Stream void beginTransmission(uint8_t); void beginTransmission(int); uint8_t endTransmission(void); + uint8_t endTransmission(uint8_t); uint8_t requestFrom(uint8_t, uint8_t); + uint8_t requestFrom(uint8_t, uint8_t, uint8_t); uint8_t requestFrom(int, int); + uint8_t requestFrom(int, int, int); virtual size_t write(uint8_t); virtual size_t write(const uint8_t *, size_t); virtual int available(void); diff --git a/hardware/arduino/avr/libraries/Wire/utility/twi.c b/hardware/arduino/avr/libraries/Wire/utility/twi.c index d80114b6e..6b2db3cdc 100644 --- a/hardware/arduino/avr/libraries/Wire/utility/twi.c +++ b/hardware/arduino/avr/libraries/Wire/utility/twi.c @@ -15,6 +15,8 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + Modified 2012 by Todd Krein (todd@krein.org) to implement repeated starts */ #include @@ -37,14 +39,16 @@ #include "twi.h" static volatile uint8_t twi_state; -static uint8_t twi_slarw; +static volatile uint8_t twi_slarw; +static volatile uint8_t twi_sendStop; // should the transaction end with a stop +static volatile uint8_t twi_inRepStart; // in the middle of a repeated start static void (*twi_onSlaveTransmit)(void); static void (*twi_onSlaveReceive)(uint8_t*, int); static uint8_t twi_masterBuffer[TWI_BUFFER_LENGTH]; static volatile uint8_t twi_masterBufferIndex; -static uint8_t twi_masterBufferLength; +static volatile uint8_t twi_masterBufferLength; static uint8_t twi_txBuffer[TWI_BUFFER_LENGTH]; static volatile uint8_t twi_txBufferIndex; @@ -65,6 +69,8 @@ void twi_init(void) { // initialize state twi_state = TWI_READY; + twi_sendStop = true; // default value + twi_inRepStart = false; // activate internal pullups for twi. digitalWrite(SDA, 1); @@ -103,9 +109,10 @@ void twi_setAddress(uint8_t address) * Input address: 7bit i2c device address * data: pointer to byte array * length: number of bytes to read into array + * sendStop: Boolean indicating whether to send a stop at the end * Output number of bytes read */ -uint8_t twi_readFrom(uint8_t address, uint8_t* data, uint8_t length) +uint8_t twi_readFrom(uint8_t address, uint8_t* data, uint8_t length, uint8_t sendStop) { uint8_t i; @@ -119,6 +126,7 @@ uint8_t twi_readFrom(uint8_t address, uint8_t* data, uint8_t length) continue; } twi_state = TWI_MRX; + twi_sendStop = sendStop; // reset error state (0xFF.. no error occured) twi_error = 0xFF; @@ -135,8 +143,20 @@ uint8_t twi_readFrom(uint8_t address, uint8_t* data, uint8_t length) twi_slarw = TW_READ; twi_slarw |= address << 1; - // send start condition - TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWEA) | _BV(TWINT) | _BV(TWSTA); + if (true == twi_inRepStart) { + // if we're in the repeated start state, then we've already sent the start, + // (@@@ we hope), and the TWI statemachine is just waiting for the address byte. + // We need to remove ourselves from the repeated start state before we enable interrupts, + // since the ISR is ASYNC, and we could get confused if we hit the ISR before cleaning + // up. Also, don't enable the START interrupt. There may be one pending from the + // repeated start that we sent outselves, and that would really confuse things. + twi_inRepStart = false; // remember, we're dealing with an ASYNC ISR + TWDR = twi_slarw; + TWCR = _BV(TWINT) | _BV(TWEA) | _BV(TWEN) | _BV(TWIE); // enable INTs, but not START + } + else + // send start condition + TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWEA) | _BV(TWINT) | _BV(TWSTA); // wait for read operation to complete while(TWI_MRX == twi_state){ @@ -162,13 +182,14 @@ uint8_t twi_readFrom(uint8_t address, uint8_t* data, uint8_t length) * data: pointer to byte array * length: number of bytes in array * wait: boolean indicating to wait for write or not + * sendStop: boolean indicating whether or not to send a stop at the end * Output 0 .. success * 1 .. length to long for buffer * 2 .. address send, NACK received * 3 .. data send, NACK received * 4 .. other twi error (lost bus arbitration, bus error, ..) */ -uint8_t twi_writeTo(uint8_t address, uint8_t* data, uint8_t length, uint8_t wait) +uint8_t twi_writeTo(uint8_t address, uint8_t* data, uint8_t length, uint8_t wait, uint8_t sendStop) { uint8_t i; @@ -182,6 +203,7 @@ uint8_t twi_writeTo(uint8_t address, uint8_t* data, uint8_t length, uint8_t wait continue; } twi_state = TWI_MTX; + twi_sendStop = sendStop; // reset error state (0xFF.. no error occured) twi_error = 0xFF; @@ -198,8 +220,23 @@ uint8_t twi_writeTo(uint8_t address, uint8_t* data, uint8_t length, uint8_t wait twi_slarw = TW_WRITE; twi_slarw |= address << 1; - // send start condition - TWCR = _BV(TWEN) | _BV(TWIE) | _BV(TWEA) | _BV(TWINT) | _BV(TWSTA); + // if we're in a repeated start, then we've already sent the START + // in the ISR. Don't do it again. + // + if (true == twi_inRepStart) { + // if we're in the repeated start state, then we've already sent the start, + // (@@@ we hope), and the TWI statemachine is just waiting for the address byte. + // We need to remove ourselves from the repeated start state before we enable interrupts, + // since the ISR is ASYNC, and we could get confused if we hit the ISR before cleaning + // up. Also, don't enable the START interrupt. There may be one pending from the + // repeated start that we sent outselves, and that would really confuse things. + twi_inRepStart = false; // remember, we're dealing with an ASYNC ISR + TWDR = twi_slarw; + TWCR = _BV(TWINT) | _BV(TWEA) | _BV(TWEN) | _BV(TWIE); // enable INTs, but not START + } + else + // send start condition + TWCR = _BV(TWINT) | _BV(TWEA) | _BV(TWEN) | _BV(TWIE) | _BV(TWSTA); // enable INTs // wait for write operation to complete while(wait && (TWI_MTX == twi_state)){ @@ -343,7 +380,16 @@ SIGNAL(TWI_vect) TWDR = twi_masterBuffer[twi_masterBufferIndex++]; twi_reply(1); }else{ - twi_stop(); + if (twi_sendStop) + twi_stop(); + else { + twi_inRepStart = true; // we're gonna send the START + // don't enable the interrupt. We'll generate the start, but we + // avoid handling the interrupt until we're in the next transaction, + // at the point where we would normally issue the start. + TWCR = _BV(TWINT) | _BV(TWSTA)| _BV(TWEN) ; + twi_state = TWI_READY; + } } break; case TW_MT_SLA_NACK: // address sent, nack received @@ -374,6 +420,17 @@ SIGNAL(TWI_vect) case TW_MR_DATA_NACK: // data received, nack sent // put final byte into buffer twi_masterBuffer[twi_masterBufferIndex++] = TWDR; + if (twi_sendStop) + twi_stop(); + else { + twi_inRepStart = true; // we're gonna send the START + // don't enable the interrupt. We'll generate the start, but we + // avoid handling the interrupt until we're in the next transaction, + // at the point where we would normally issue the start. + TWCR = _BV(TWINT) | _BV(TWSTA)| _BV(TWEN) ; + twi_state = TWI_READY; + } + break; case TW_MR_SLA_NACK: // address sent, nack received twi_stop(); break; diff --git a/hardware/arduino/avr/libraries/Wire/utility/twi.h b/hardware/arduino/avr/libraries/Wire/utility/twi.h index 831b9282a..652659339 100755 --- a/hardware/arduino/avr/libraries/Wire/utility/twi.h +++ b/hardware/arduino/avr/libraries/Wire/utility/twi.h @@ -40,8 +40,8 @@ void twi_init(void); void twi_setAddress(uint8_t); - uint8_t twi_readFrom(uint8_t, uint8_t*, uint8_t); - uint8_t twi_writeTo(uint8_t, uint8_t*, uint8_t, uint8_t); + uint8_t twi_readFrom(uint8_t, uint8_t*, uint8_t, uint8_t); + uint8_t twi_writeTo(uint8_t, uint8_t*, uint8_t, uint8_t, uint8_t); uint8_t twi_transmit(const uint8_t*, uint8_t); void twi_attachSlaveRxEvent( void (*)(uint8_t*, int) ); void twi_attachSlaveTxEvent( void (*)(void) ); diff --git a/hardware/arduino/avr/platform.txt b/hardware/arduino/avr/platform.txt index c47cd8ba2..557b2d3af 100644 --- a/hardware/arduino/avr/platform.txt +++ b/hardware/arduino/avr/platform.txt @@ -6,12 +6,12 @@ name=Arduino # Default "compiler.path" is correct, change only if you want to overidde the initial value #compiler.path={ide.path}/tools/avr/bin/.. compiler.c.cmd=avr-gcc -compiler.c.flags=-c -g -Os -w -ffunction-sections -fdata-sections +compiler.c.flags=-c -g -Os -w -ffunction-sections -fdata-sections -MMD compiler.c.elf.flags=-Os -Wl,--gc-sections compiler.c.elf.cmd=avr-gcc compiler.S.flags=-c -g -assembler-with-cpp compiler.cpp.cmd=avr-g++ -compiler.cpp.flags=-c -g -Os -w -fno-exceptions -ffunction-sections -fdata-sections +compiler.cpp.flags=-c -g -Os -w -fno-exceptions -ffunction-sections -fdata-sections -MMD compiler.ar.cmd=avr-ar compiler.ar.flags=rcs compiler.objcopy.cmd=avr-objcopy @@ -20,48 +20,56 @@ compiler.elf2hex.flags=-O ihex -R .eeprom compiler.elf2hex.cmd=avr-objcopy compiler.ldflags= compiler.size.cmd=avr-size +# this can be overriden in boards.txt +build.extra_flags= # AVR compile patterns # -------------------- ## Compile c files -recipe.c.o.pattern={compiler.path}{compiler.c.cmd} {compiler.c.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {includes} {source_file} -o {object_file} +recipe.c.o.pattern="{compiler.path}{compiler.c.cmd}" {compiler.c.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {build.extra_flags} {includes} "{source_file}" -o "{object_file}" ## Compile c++ files -recipe.cpp.o.pattern={compiler.path}{compiler.cpp.cmd} {compiler.cpp.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {includes} {source_file} -o {object_file} +recipe.cpp.o.pattern="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {build.extra_flags} {includes} "{source_file}" -o "{object_file}" ## Create archives -recipe.ar.pattern={compiler.path}{compiler.ar.cmd} {compiler.ar.flags} {build.path}/{archive_file} {object_file} +recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} "{build.path}/{archive_file}" "{object_file}" ## Combine gc-sections, archives, and objects -recipe.c.combine.pattern={compiler.path}{compiler.c.elf.cmd} {compiler.c.elf.flags} -mmcu={build.mcu} -o {build.path}/{build.project_name}.elf {object_files} {build.path}/{archive_file} -L{build.path} -lm +recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mmcu={build.mcu} -o "{build.path}/{build.project_name}.elf" {object_files} "{build.path}/{archive_file}" "-L{build.path}" -lm ## Create eeprom -recipe.objcopy.eep.pattern={compiler.path}{compiler.objcopy.cmd} {compiler.objcopy.eep.flags} {build.path}/{build.project_name}.elf {build.path}/{build.project_name}.eep +recipe.objcopy.eep.pattern="{compiler.path}{compiler.objcopy.cmd}" {compiler.objcopy.eep.flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.eep" ## Create hex -recipe.objcopy.hex.pattern={compiler.path}{compiler.elf2hex.cmd} {compiler.elf2hex.flags} {build.path}/{build.project_name}.elf {build.path}/{build.project_name}.hex +recipe.objcopy.hex.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.hex" ## Compute size -recipe.size.pattern={compiler.path}{compiler.size.cmd} -A {build.path}/{build.project_name}.hex +recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.hex" recipe.size.regex=Total\s+([0-9]+).* # AVR Uploader/Programmers tools # ------------------- -tools.avrdude.cmd=avrdude -tools.avrdude.path={runtime.ide.path}/hardware/tools -tools.avrdude.config.path={path}/avrdude.conf +tools.avrdude.cmd.path={runtime.ide.path}/hardware/tools/avr/bin/avrdude +tools.avrdude.config.path={runtime.ide.path}/hardware/tools/avr/etc/avrdude.conf +tools.avrdude.cmd.path.linux={runtime.ide.path}/hardware/tools/avrdude +tools.avrdude.config.path.linux={runtime.ide.path}/hardware/tools/avrdude.conf tools.avrdude.upload.params.verbose=-v -v -v -v tools.avrdude.upload.params.quiet=-q -q -tools.avrdude.upload.pattern={path}/{cmd} -C{config.path} {upload.verbose} -p{build.mcu} -c{upload.protocol} -P{serial.port} -b{upload.speed} -D -Uflash:w:{build.path}/{build.project_name}.hex:i +tools.avrdude.upload.pattern="{cmd.path}" "-C{config.path}" {upload.verbose} -p{build.mcu} -c{upload.protocol} -P{serial.port} -b{upload.speed} -D "-Uflash:w:{build.path}/{build.project_name}.hex:i" tools.avrdude.program.params.verbose=-v -v -v -v tools.avrdude.program.params.quiet=-q -q -tools.avrdude.program.pattern={path}/{cmd} -C{config.path} {program.verbose} -p{build.mcu} -c{protocol} {program.extra_params} -Uflash:w:{build.path}/{build.project_name}.hex:i +tools.avrdude.program.pattern="{cmd.path}" "-C{config.path}" {program.verbose} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{build.path}/{build.project_name}.hex:i" + +tools.avrdude.erase.params.verbose=-v -v -v -v +tools.avrdude.erase.params.quiet=-q -q +tools.avrdude.erase.pattern="{cmd.path}" "-C{config.path}" {erase.verbose} -p{build.mcu} -c{protocol} {program.extra_params} -e -Ulock:w:{bootloader.unlock_bits}:m -Uefuse:w:{bootloader.extended_fuses}:m -Uhfuse:w:{bootloader.high_fuses}:m -Ulfuse:w:{bootloader.low_fuses}:m tools.avrdude.bootloader.params.verbose=-v -v -v -v tools.avrdude.bootloader.params.quiet=-q -q -tools.avrdude.bootloader.pattern={path}/{cmd} -C{config.path} {bootloader.verbose} -p{build.mcu} -c{protocol} {program.extra_params} {bootloader.params} +tools.avrdude.bootloader.pattern="{cmd.path}" "-C{config.path}" {bootloader.verbose} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{runtime.ide.path}/hardware/arduino/avr/bootloaders/{bootloader.file}:i" -Ulock:w:{bootloader.lock_bits}:m + diff --git a/hardware/arduino/avr/variants/leonardo/pins_arduino.h b/hardware/arduino/avr/variants/leonardo/pins_arduino.h index 15afb4e04..9f770d6ce 100644 --- a/hardware/arduino/avr/variants/leonardo/pins_arduino.h +++ b/hardware/arduino/avr/variants/leonardo/pins_arduino.h @@ -27,37 +27,40 @@ #include -#define ARDUINO_MODEL_USB_PID 0x0034 - #define TX_RX_LED_INIT DDRD |= (1<<5), DDRB |= (1<<0) #define TXLED0 PORTD |= (1<<5) #define TXLED1 PORTD &= ~(1<<5) #define RXLED0 PORTB |= (1<<0) #define RXLED1 PORTB &= ~(1<<0) -const static uint8_t SDA = 2; -const static uint8_t SCL = 3; +static const uint8_t SDA = 2; +static const uint8_t SCL = 3; // Map SPI port to 'new' pins D14..D17 -const static uint8_t SS = 17; -const static uint8_t MOSI = 16; -const static uint8_t MISO = 14; -const static uint8_t SCK = 15; +static const uint8_t SS = 17; +static const uint8_t MOSI = 16; +static const uint8_t MISO = 14; +static const uint8_t SCK = 15; // Mapping of analog pins as digital I/O // A6-A11 share with digital pins -const static uint8_t A0 = 18; -const static uint8_t A1 = 19; -const static uint8_t A2 = 20; -const static uint8_t A3 = 21; -const static uint8_t A4 = 22; -const static uint8_t A5 = 23; -const static uint8_t A6 = 24; // D4 -const static uint8_t A7 = 25; // D6 -const static uint8_t A8 = 26; // D8 -const static uint8_t A9 = 27; // D9 -const static uint8_t A10 = 28; // D10 -const static uint8_t A11 = 29; // D12 +static const uint8_t A0 = 18; +static const uint8_t A1 = 19; +static const uint8_t A2 = 20; +static const uint8_t A3 = 21; +static const uint8_t A4 = 22; +static const uint8_t A5 = 23; +static const uint8_t A6 = 24; // D4 +static const uint8_t A7 = 25; // D6 +static const uint8_t A8 = 26; // D8 +static const uint8_t A9 = 27; // D9 +static const uint8_t A10 = 28; // D10 +static const uint8_t A11 = 29; // D12 + +#define digitalPinToPCICR(p) ((((p) >= 8 && (p) <= 11) || ((p) >= 14 && (p) <= 17) || ((p) >= A8 && (p) <= A10)) ? (&PCICR) : ((uint8_t *)0)) +#define digitalPinToPCICRbit(p) 0 +#define digitalPinToPCMSK(p) ((((p) >= 8 && (p) <= 11) || ((p) >= 14 && (p) <= 17) || ((p) >= A8 && (p) <= A10)) ? (&PCMSK0) : ((uint8_t *)0)) +#define digitalPinToPCMSKbit(p) ( ((p) >= 8 && (p) <= 11) ? (p) - 4 : ((p) == 14 ? 3 : ((p) == 15 ? 1 : ((p) == 16 ? 2 : ((p) == 17 ? 0 : (p - A8 + 4)))))) // __AVR_ATmega32U4__ has an unusual mapping of pins to channels extern const uint8_t PROGMEM analog_pin_to_channel_PGM[]; @@ -212,7 +215,7 @@ const uint8_t PROGMEM digital_pin_to_bit_mask_PGM[30] = { _BV(6), // D29 / D12 - A11 - PD6 }; -const uint8_t PROGMEM digital_pin_to_timer_PGM[18] = { +const uint8_t PROGMEM digital_pin_to_timer_PGM[16] = { NOT_ON_TIMER, NOT_ON_TIMER, NOT_ON_TIMER, diff --git a/hardware/arduino/avr/variants/mega/pins_arduino.h b/hardware/arduino/avr/variants/mega/pins_arduino.h index 57ec97f9c..5a9b4cb09 100644 --- a/hardware/arduino/avr/variants/mega/pins_arduino.h +++ b/hardware/arduino/avr/variants/mega/pins_arduino.h @@ -32,31 +32,31 @@ #define analogInputToDigitalPin(p) ((p < 16) ? (p) + 54 : -1) #define digitalPinHasPWM(p) (((p) >= 2 && (p) <= 13) || ((p) >= 44 && (p)<= 46)) -const static uint8_t SS = 53; -const static uint8_t MOSI = 51; -const static uint8_t MISO = 50; -const static uint8_t SCK = 52; +static const uint8_t SS = 53; +static const uint8_t MOSI = 51; +static const uint8_t MISO = 50; +static const uint8_t SCK = 52; -const static uint8_t SDA = 20; -const static uint8_t SCL = 21; -const static uint8_t LED_BUILTIN = 13; +static const uint8_t SDA = 20; +static const uint8_t SCL = 21; +static const uint8_t LED_BUILTIN = 13; -const static uint8_t A0 = 54; -const static uint8_t A1 = 55; -const static uint8_t A2 = 56; -const static uint8_t A3 = 57; -const static uint8_t A4 = 58; -const static uint8_t A5 = 59; -const static uint8_t A6 = 60; -const static uint8_t A7 = 61; -const static uint8_t A8 = 62; -const static uint8_t A9 = 63; -const static uint8_t A10 = 64; -const static uint8_t A11 = 65; -const static uint8_t A12 = 66; -const static uint8_t A13 = 67; -const static uint8_t A14 = 68; -const static uint8_t A15 = 69; +static const uint8_t A0 = 54; +static const uint8_t A1 = 55; +static const uint8_t A2 = 56; +static const uint8_t A3 = 57; +static const uint8_t A4 = 58; +static const uint8_t A5 = 59; +static const uint8_t A6 = 60; +static const uint8_t A7 = 61; +static const uint8_t A8 = 62; +static const uint8_t A9 = 63; +static const uint8_t A10 = 64; +static const uint8_t A11 = 65; +static const uint8_t A12 = 66; +static const uint8_t A13 = 67; +static const uint8_t A14 = 68; +static const uint8_t A15 = 69; // A majority of the pins are NOT PCINTs, SO BE WARNED (i.e. you cannot use them as receive pins) // Only pins available for RECEIVE (TRANSMIT can be on any pin): diff --git a/hardware/arduino/avr/variants/micro/pins_arduino.h b/hardware/arduino/avr/variants/micro/pins_arduino.h deleted file mode 100644 index c9f25eb12..000000000 --- a/hardware/arduino/avr/variants/micro/pins_arduino.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - pins_arduino.h - Pin definition functions for Arduino - Part of Arduino - http://www.arduino.cc/ - - Copyright (c) 2007 David A. Mellis - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General - Public License along with this library; if not, write to the - Free Software Foundation, Inc., 59 Temple Place, Suite 330, - Boston, MA 02111-1307 USA - - $Id: wiring.h 249 2007-02-03 16:52:51Z mellis $ -*/ - -#include "../leonardo/pins_arduino.h" -#undef ARDUINO_MODEL_USB_PID -#define ARDUINO_MODEL_USB_PID 0x0035 \ No newline at end of file diff --git a/hardware/arduino/avr/variants/standard/pins_arduino.h b/hardware/arduino/avr/variants/standard/pins_arduino.h index 6e774d462..30b426630 100644 --- a/hardware/arduino/avr/variants/standard/pins_arduino.h +++ b/hardware/arduino/avr/variants/standard/pins_arduino.h @@ -37,23 +37,23 @@ #define digitalPinHasPWM(p) ((p) == 3 || (p) == 5 || (p) == 6 || (p) == 9 || (p) == 10 || (p) == 11) #endif -const static uint8_t SS = 10; -const static uint8_t MOSI = 11; -const static uint8_t MISO = 12; -const static uint8_t SCK = 13; +static const uint8_t SS = 10; +static const uint8_t MOSI = 11; +static const uint8_t MISO = 12; +static const uint8_t SCK = 13; -const static uint8_t SDA = 18; -const static uint8_t SCL = 19; -const static uint8_t LED_BUILTIN = 13; +static const uint8_t SDA = 18; +static const uint8_t SCL = 19; +static const uint8_t LED_BUILTIN = 13; -const static uint8_t A0 = 14; -const static uint8_t A1 = 15; -const static uint8_t A2 = 16; -const static uint8_t A3 = 17; -const static uint8_t A4 = 18; -const static uint8_t A5 = 19; -const static uint8_t A6 = 20; -const static uint8_t A7 = 21; +static const uint8_t A0 = 14; +static const uint8_t A1 = 15; +static const uint8_t A2 = 16; +static const uint8_t A3 = 17; +static const uint8_t A4 = 18; +static const uint8_t A5 = 19; +static const uint8_t A6 = 20; +static const uint8_t A7 = 21; #define digitalPinToPCICR(p) (((p) >= 0 && (p) <= 21) ? (&PCICR) : ((uint8_t *)0)) #define digitalPinToPCICRbit(p) (((p) <= 7) ? 2 : (((p) <= 13) ? 0 : 1)) @@ -215,4 +215,4 @@ const uint8_t PROGMEM digital_pin_to_timer_PGM[] = { #endif -#endif \ No newline at end of file +#endif diff --git a/hardware/arduino/sam/cores/arduino/Client.h b/hardware/arduino/sam/cores/arduino/Client.h new file mode 100644 index 000000000..ea134838a --- /dev/null +++ b/hardware/arduino/sam/cores/arduino/Client.h @@ -0,0 +1,26 @@ +#ifndef client_h +#define client_h +#include "Print.h" +#include "Stream.h" +#include "IPAddress.h" + +class Client : public Stream { + +public: + virtual int connect(IPAddress ip, uint16_t port) =0; + virtual int connect(const char *host, uint16_t port) =0; + virtual size_t write(uint8_t) =0; + virtual size_t write(const uint8_t *buf, size_t size) =0; + virtual int available() = 0; + virtual int read() = 0; + virtual int read(uint8_t *buf, size_t size) = 0; + virtual int peek() = 0; + virtual void flush() = 0; + virtual void stop() = 0; + virtual uint8_t connected() = 0; + virtual operator bool() = 0; +protected: + uint8_t* rawIPAddress(IPAddress& addr) { return addr.raw_address(); }; +}; + +#endif diff --git a/hardware/arduino/sam/cores/arduino/IPAddress.cpp b/hardware/arduino/sam/cores/arduino/IPAddress.cpp new file mode 100644 index 000000000..fe3deb77a --- /dev/null +++ b/hardware/arduino/sam/cores/arduino/IPAddress.cpp @@ -0,0 +1,56 @@ + +#include +#include + +IPAddress::IPAddress() +{ + memset(_address, 0, sizeof(_address)); +} + +IPAddress::IPAddress(uint8_t first_octet, uint8_t second_octet, uint8_t third_octet, uint8_t fourth_octet) +{ + _address[0] = first_octet; + _address[1] = second_octet; + _address[2] = third_octet; + _address[3] = fourth_octet; +} + +IPAddress::IPAddress(uint32_t address) +{ + memcpy(_address, &address, sizeof(_address)); +} + +IPAddress::IPAddress(const uint8_t *address) +{ + memcpy(_address, address, sizeof(_address)); +} + +IPAddress& IPAddress::operator=(const uint8_t *address) +{ + memcpy(_address, address, sizeof(_address)); + return *this; +} + +IPAddress& IPAddress::operator=(uint32_t address) +{ + memcpy(_address, (const uint8_t *)&address, sizeof(_address)); + return *this; +} + +bool IPAddress::operator==(const uint8_t* addr) +{ + return memcmp(addr, _address, sizeof(_address)) == 0; +} + +size_t IPAddress::printTo(Print& p) const +{ + size_t n = 0; + for (int i =0; i < 3; i++) + { + n += p.print(_address[i], DEC); + n += p.print('.'); + } + n += p.print(_address[3], DEC); + return n; +} + diff --git a/hardware/arduino/sam/cores/arduino/IPAddress.h b/hardware/arduino/sam/cores/arduino/IPAddress.h new file mode 100644 index 000000000..2585aec0e --- /dev/null +++ b/hardware/arduino/sam/cores/arduino/IPAddress.h @@ -0,0 +1,76 @@ +/* + * + * MIT License: + * Copyright (c) 2011 Adrian McEwen + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + * adrianm@mcqn.com 1/1/2011 + */ + +#ifndef IPAddress_h +#define IPAddress_h + +#include + +// A class to make it easier to handle and pass around IP addresses + +class IPAddress : public Printable { +private: + uint8_t _address[4]; // IPv4 address + // Access the raw byte array containing the address. Because this returns a pointer + // to the internal structure rather than a copy of the address this function should only + // be used when you know that the usage of the returned uint8_t* will be transient and not + // stored. + uint8_t* raw_address() { return _address; }; + +public: + // Constructors + IPAddress(); + IPAddress(uint8_t first_octet, uint8_t second_octet, uint8_t third_octet, uint8_t fourth_octet); + IPAddress(uint32_t address); + IPAddress(const uint8_t *address); + + // Overloaded cast operator to allow IPAddress objects to be used where a pointer + // to a four-byte uint8_t array is expected + operator uint32_t() { return *((uint32_t*)_address); }; + bool operator==(const IPAddress& addr) { return (*((uint32_t*)_address)) == (*((uint32_t*)addr._address)); }; + bool operator==(const uint8_t* addr); + + // Overloaded index operator to allow getting and setting individual octets of the address + uint8_t operator[](int index) const { return _address[index]; }; + uint8_t& operator[](int index) { return _address[index]; }; + + // Overloaded copy operators to allow initialisation of IPAddress objects from other types + IPAddress& operator=(const uint8_t *address); + IPAddress& operator=(uint32_t address); + + virtual size_t printTo(Print& p) const; + + friend class EthernetClass; + friend class UDP; + friend class Client; + friend class Server; + friend class DhcpClass; + friend class DNSClient; +}; + +const IPAddress INADDR_NONE(0,0,0,0); + + +#endif diff --git a/hardware/arduino/sam/cores/arduino/Print.cpp b/hardware/arduino/sam/cores/arduino/Print.cpp index 123370f4d..4a21176cf 100644 --- a/hardware/arduino/sam/cores/arduino/Print.cpp +++ b/hardware/arduino/sam/cores/arduino/Print.cpp @@ -219,6 +219,9 @@ size_t Print::printFloat(double number, uint8_t digits) { size_t n = 0; + if (isnan(number)) return print("nan"); + if (isinf(number)) return print("inf"); + // Handle negative numbers if (number < 0.0) { diff --git a/hardware/arduino/sam/cores/arduino/Print.h b/hardware/arduino/sam/cores/arduino/Print.h index 1af6b723f..dc7615087 100644 --- a/hardware/arduino/sam/cores/arduino/Print.h +++ b/hardware/arduino/sam/cores/arduino/Print.h @@ -46,7 +46,10 @@ class Print void clearWriteError() { setWriteError(0); } virtual size_t write(uint8_t) = 0; - size_t write(const char *str) { return write((const uint8_t *)str, strlen(str)); } + size_t write(const char *str) { + if (str == NULL) return 0; + return write((const uint8_t *)str, strlen(str)); + } virtual size_t write(const uint8_t *buffer, size_t size); size_t print(const __FlashStringHelper *); diff --git a/hardware/arduino/sam/cores/arduino/Server.h b/hardware/arduino/sam/cores/arduino/Server.h new file mode 100644 index 000000000..9674c7626 --- /dev/null +++ b/hardware/arduino/sam/cores/arduino/Server.h @@ -0,0 +1,9 @@ +#ifndef server_h +#define server_h + +class Server : public Print { +public: + virtual void begin() =0; +}; + +#endif diff --git a/hardware/arduino/sam/cores/arduino/Stream.cpp b/hardware/arduino/sam/cores/arduino/Stream.cpp new file mode 100644 index 000000000..aafb7fcf9 --- /dev/null +++ b/hardware/arduino/sam/cores/arduino/Stream.cpp @@ -0,0 +1,270 @@ +/* + Stream.cpp - adds parsing methods to Stream class + Copyright (c) 2008 David A. Mellis. All right reserved. + + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public + License as published by the Free Software Foundation; either + version 2.1 of the License, or (at your option) any later version. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + Created July 2011 + parsing functions based on TextFinder library by Michael Margolis + */ + +#include "Arduino.h" +#include "Stream.h" + +#define PARSE_TIMEOUT 1000 // default number of milli-seconds to wait +#define NO_SKIP_CHAR 1 // a magic char not found in a valid ASCII numeric field + +// private method to read stream with timeout +int Stream::timedRead() +{ + int c; + _startMillis = millis(); + do { + c = read(); + if (c >= 0) return c; + } while(millis() - _startMillis < _timeout); + return -1; // -1 indicates timeout +} + +// private method to peek stream with timeout +int Stream::timedPeek() +{ + int c; + _startMillis = millis(); + do { + c = peek(); + if (c >= 0) return c; + } while(millis() - _startMillis < _timeout); + return -1; // -1 indicates timeout +} + +// returns peek of the next digit in the stream or -1 if timeout +// discards non-numeric characters +int Stream::peekNextDigit() +{ + int c; + while (1) { + c = timedPeek(); + if (c < 0) return c; // timeout + if (c == '-') return c; + if (c >= '0' && c <= '9') return c; + read(); // discard non-numeric + } +} + +// Public Methods +////////////////////////////////////////////////////////////// + +void Stream::setTimeout(unsigned long timeout) // sets the maximum number of milliseconds to wait +{ + _timeout = timeout; +} + + // find returns true if the target string is found +bool Stream::find(char *target) +{ + return findUntil(target, NULL); +} + +// reads data from the stream until the target string of given length is found +// returns true if target string is found, false if timed out +bool Stream::find(char *target, size_t length) +{ + return findUntil(target, length, NULL, 0); +} + +// as find but search ends if the terminator string is found +bool Stream::findUntil(char *target, char *terminator) +{ + return findUntil(target, strlen(target), terminator, strlen(terminator)); +} + +// reads data from the stream until the target string of the given length is found +// search terminated if the terminator string is found +// returns true if target string is found, false if terminated or timed out +bool Stream::findUntil(char *target, size_t targetLen, char *terminator, size_t termLen) +{ + size_t index = 0; // maximum target string length is 64k bytes! + size_t termIndex = 0; + int c; + + if( *target == 0) + return true; // return true if target is a null string + while( (c = timedRead()) > 0){ + + if(c != target[index]) + index = 0; // reset index if any char does not match + + if( c == target[index]){ + //////Serial.print("found "); Serial.write(c); Serial.print("index now"); Serial.println(index+1); + if(++index >= targetLen){ // return true if all chars in the target match + return true; + } + } + + if(termLen > 0 && c == terminator[termIndex]){ + if(++termIndex >= termLen) + return false; // return false if terminate string found before target string + } + else + termIndex = 0; + } + return false; +} + + +// returns the first valid (long) integer value from the current position. +// initial characters that are not digits (or the minus sign) are skipped +// function is terminated by the first character that is not a digit. +long Stream::parseInt() +{ + return parseInt(NO_SKIP_CHAR); // terminate on first non-digit character (or timeout) +} + +// as above but a given skipChar is ignored +// this allows format characters (typically commas) in values to be ignored +long Stream::parseInt(char skipChar) +{ + boolean isNegative = false; + long value = 0; + int c; + + c = peekNextDigit(); + // ignore non numeric leading characters + if(c < 0) + return 0; // zero returned if timeout + + do{ + if(c == skipChar) + ; // ignore this charactor + else if(c == '-') + isNegative = true; + else if(c >= '0' && c <= '9') // is c a digit? + value = value * 10 + c - '0'; + read(); // consume the character we got with peek + c = timedPeek(); + } + while( (c >= '0' && c <= '9') || c == skipChar ); + + if(isNegative) + value = -value; + return value; +} + + +// as parseInt but returns a floating point value +float Stream::parseFloat() +{ + return parseFloat(NO_SKIP_CHAR); +} + +// as above but the given skipChar is ignored +// this allows format characters (typically commas) in values to be ignored +float Stream::parseFloat(char skipChar){ + boolean isNegative = false; + boolean isFraction = false; + long value = 0; + char c; + float fraction = 1.0; + + c = peekNextDigit(); + // ignore non numeric leading characters + if(c < 0) + return 0; // zero returned if timeout + + do{ + if(c == skipChar) + ; // ignore + else if(c == '-') + isNegative = true; + else if (c == '.') + isFraction = true; + else if(c >= '0' && c <= '9') { // is c a digit? + value = value * 10 + c - '0'; + if(isFraction) + fraction *= 0.1; + } + read(); // consume the character we got with peek + c = timedPeek(); + } + while( (c >= '0' && c <= '9') || c == '.' || c == skipChar ); + + if(isNegative) + value = -value; + if(isFraction) + return value * fraction; + else + return value; +} + +// read characters from stream into buffer +// terminates if length characters have been read, or timeout (see setTimeout) +// returns the number of characters placed in the buffer +// the buffer is NOT null terminated. +// +size_t Stream::readBytes(char *buffer, size_t length) +{ + size_t count = 0; + while (count < length) { + int c = timedRead(); + if (c < 0) break; + *buffer++ = (char)c; + count++; + } + return count; +} + + +// as readBytes with terminator character +// terminates if length characters have been read, timeout, or if the terminator character detected +// returns the number of characters placed in the buffer (0 means no valid data found) + +size_t Stream::readBytesUntil(char terminator, char *buffer, size_t length) +{ + if (length < 1) return 0; + size_t index = 0; + while (index < length) { + int c = timedRead(); + if (c < 0 || c == terminator) break; + *buffer++ = (char)c; + index++; + } + return index; // return number of characters, not including null terminator +} + +String Stream::readString() +{ + String ret; + int c = timedRead(); + while (c >= 0) + { + ret += (char)c; + c = timedRead(); + } + return ret; +} + +String Stream::readStringUntil(char terminator) +{ + String ret; + int c = timedRead(); + while (c >= 0 && c != terminator) + { + ret += (char)c; + c = timedRead(); + } + return ret; +} + diff --git a/hardware/arduino/sam/cores/arduino/Stream.h b/hardware/arduino/sam/cores/arduino/Stream.h index aaa189f4d..58bbf752f 100644 --- a/hardware/arduino/sam/cores/arduino/Stream.h +++ b/hardware/arduino/sam/cores/arduino/Stream.h @@ -15,21 +15,82 @@ You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + + parsing functions based on TextFinder library by Michael Margolis */ #ifndef Stream_h #define Stream_h -#include +#include #include "Print.h" +// compatability macros for testing +/* +#define getInt() parseInt() +#define getInt(skipChar) parseInt(skipchar) +#define getFloat() parseFloat() +#define getFloat(skipChar) parseFloat(skipChar) +#define getString( pre_string, post_string, buffer, length) +readBytesBetween( pre_string, terminator, buffer, length) +*/ + class Stream : public Print { + private: + unsigned long _timeout; // number of milliseconds to wait for the next char before aborting timed read + unsigned long _startMillis; // used for timeout measurement + int timedRead(); // private method to read stream with timeout + int timedPeek(); // private method to peek stream with timeout + int peekNextDigit(); // returns the next numeric digit in the stream or -1 if timeout + public: virtual int available() = 0; virtual int read() = 0; virtual int peek() = 0; virtual void flush() = 0; + + Stream() {_timeout=1000;} + +// parsing methods + + void setTimeout(unsigned long timeout); // sets maximum milliseconds to wait for stream data, default is 1 second + + bool find(char *target); // reads data from the stream until the target string is found + // returns true if target string is found, false if timed out (see setTimeout) + + bool find(char *target, size_t length); // reads data from the stream until the target string of given length is found + // returns true if target string is found, false if timed out + + bool findUntil(char *target, char *terminator); // as find but search ends if the terminator string is found + + bool findUntil(char *target, size_t targetLen, char *terminate, size_t termLen); // as above but search ends if the terminate string is found + + + long parseInt(); // returns the first valid (long) integer value from the current position. + // initial characters that are not digits (or the minus sign) are skipped + // integer is terminated by the first character that is not a digit. + + float parseFloat(); // float version of parseInt + + size_t readBytes( char *buffer, size_t length); // read chars from stream into buffer + // terminates if length characters have been read or timeout (see setTimeout) + // returns the number of characters placed in the buffer (0 means no valid data found) + + size_t readBytesUntil( char terminator, char *buffer, size_t length); // as readBytes with terminator character + // terminates if length characters have been read, timeout, or if the terminator character detected + // returns the number of characters placed in the buffer (0 means no valid data found) + + // Arduino String functions to be added here + String readString(); + String readStringUntil(char terminator); + + protected: + long parseInt(char skipChar); // as above but the given skipChar is ignored + // as above but the given skipChar is ignored + // this allows format characters (typically commas) in values to be ignored + + float parseFloat(char skipChar); // as above but the given skipChar is ignored }; #endif diff --git a/hardware/arduino/sam/cores/arduino/USB/USBAPI.h b/hardware/arduino/sam/cores/arduino/USB/USBAPI.h index 592d3a0b1..de9889599 100644 --- a/hardware/arduino/sam/cores/arduino/USB/USBAPI.h +++ b/hardware/arduino/sam/cores/arduino/USB/USBAPI.h @@ -27,17 +27,17 @@ //================================================================================ // USB -class USB_ +class USBDevice_ { public: - USB_(); + USBDevice_(); bool configured(); bool attach(); bool detach(); // Serial port goes down too... void poll(); }; -extern USB_ USB; +extern USBDevice_ USBDevice; //================================================================================ //================================================================================ @@ -57,6 +57,7 @@ public: virtual int read(void); virtual void flush(void); virtual size_t write(uint8_t); + using Print::write; // pull in write(str) and write(buf, size) from Print operator bool(); }; extern Serial_ Serial; diff --git a/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp b/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp index 77eaee104..3b4a2ced4 100644 --- a/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp +++ b/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp @@ -536,9 +536,9 @@ uint32_t USBD_Connected(void) //======================================================================= //======================================================================= -USB_ USB; +USBDevice_ USBDevice; -USB_::USB_() +USBDevice_::USBDevice_() { UDD_SetStack(&USB_ISR); @@ -548,7 +548,7 @@ USB_::USB_() } } -bool USB_::attach(void) +bool USBDevice_::attach(void) { if (_usbInitialized != 0UL) { @@ -562,7 +562,7 @@ bool USB_::attach(void) } } -bool USB_::detach(void) +bool USBDevice_::detach(void) { if (_usbInitialized != 0UL) { @@ -577,11 +577,11 @@ bool USB_::detach(void) // Check for interrupts // TODO: VBUS detection -bool USB_::configured() +bool USBDevice_::configured() { return _usbConfiguration; } -void USB_::poll() +void USBDevice_::poll() { } diff --git a/hardware/arduino/sam/cores/arduino/Udp.h b/hardware/arduino/sam/cores/arduino/Udp.h new file mode 100644 index 000000000..dc5644b9d --- /dev/null +++ b/hardware/arduino/sam/cores/arduino/Udp.h @@ -0,0 +1,88 @@ +/* + * Udp.cpp: Library to send/receive UDP packets. + * + * NOTE: UDP is fast, but has some important limitations (thanks to Warren Gray for mentioning these) + * 1) UDP does not guarantee the order in which assembled UDP packets are received. This + * might not happen often in practice, but in larger network topologies, a UDP + * packet can be received out of sequence. + * 2) UDP does not guard against lost packets - so packets *can* disappear without the sender being + * aware of it. Again, this may not be a concern in practice on small local networks. + * For more information, see http://www.cafeaulait.org/course/week12/35.html + * + * MIT License: + * Copyright (c) 2008 Bjoern Hartmann + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + * bjoern@cs.stanford.edu 12/30/2008 + */ + +#ifndef udp_h +#define udp_h + +#include +#include + +class UDP : public Stream { + +public: + virtual uint8_t begin(uint16_t) =0; // initialize, start listening on specified port. Returns 1 if successful, 0 if there are no sockets available to use + virtual void stop() =0; // Finish with the UDP socket + + // Sending UDP packets + + // Start building up a packet to send to the remote host specific in ip and port + // Returns 1 if successful, 0 if there was a problem with the supplied IP address or port + virtual int beginPacket(IPAddress ip, uint16_t port) =0; + // Start building up a packet to send to the remote host specific in host and port + // Returns 1 if successful, 0 if there was a problem resolving the hostname or port + virtual int beginPacket(const char *host, uint16_t port) =0; + // Finish off this packet and send it + // Returns 1 if the packet was sent successfully, 0 if there was an error + virtual int endPacket() =0; + // Write a single byte into the packet + virtual size_t write(uint8_t) =0; + // Write size bytes from buffer into the packet + virtual size_t write(const uint8_t *buffer, size_t size) =0; + + // Start processing the next available incoming packet + // Returns the size of the packet in bytes, or 0 if no packets are available + virtual int parsePacket() =0; + // Number of bytes remaining in the current packet + virtual int available() =0; + // Read a single byte from the current packet + virtual int read() =0; + // Read up to len bytes from the current packet and place them into buffer + // Returns the number of bytes read, or 0 if none are available + virtual int read(unsigned char* buffer, size_t len) =0; + // Read up to len characters from the current packet and place them into buffer + // Returns the number of characters read, or 0 if none are available + virtual int read(char* buffer, size_t len) =0; + // Return the next byte from the current packet without moving on to the next byte + virtual int peek() =0; + virtual void flush() =0; // Finish reading the current packet + + // Return the IP address of the host who sent the current incoming packet + virtual IPAddress remoteIP() =0; + // Return the port of the host who sent the current incoming packet + virtual uint16_t remotePort() =0; +protected: + uint8_t* rawIPAddress(IPAddress& addr) { return addr.raw_address(); }; +}; + +#endif diff --git a/hardware/arduino/sam/cores/arduino/main.cpp b/hardware/arduino/sam/cores/arduino/main.cpp index 69f25f2a5..f28b6fd30 100644 --- a/hardware/arduino/sam/cores/arduino/main.cpp +++ b/hardware/arduino/sam/cores/arduino/main.cpp @@ -39,13 +39,16 @@ int main( void ) delay(1); - USB.attach(); +#if defined(USBCON) + USBDevice.attach(); +#endif setup(); for (;;) { loop(); + if (serialEventRun) serialEventRun(); } return 0; diff --git a/hardware/arduino/sam/cores/arduino/wiring_analog.c b/hardware/arduino/sam/cores/arduino/wiring_analog.c index 0cdc7893d..d5bf6dd2b 100644 --- a/hardware/arduino/sam/cores/arduino/wiring_analog.c +++ b/hardware/arduino/sam/cores/arduino/wiring_analog.c @@ -91,7 +91,7 @@ uint32_t analogRead(uint32_t ulPin) ; // Read the value - ulValue = adc12b_get_latest_value(ADC12B); + ulValue = adc12b_get_latest_value(ADC12B) >> 2; // Stop the ADC12B // adc12_stop( ADC12B ) ; // never do adc12_stop() else we have to reconfigure the ADC12B each time @@ -135,7 +135,7 @@ uint32_t analogRead(uint32_t ulPin) ; // Read the value - ulValue = adc_get_latest_value(ADC); + ulValue = adc_get_latest_value(ADC) >> 2; // Disable the corresponding channel adc_disable_channel(ADC, ulChannel); @@ -151,24 +151,34 @@ uint32_t analogRead(uint32_t ulPin) return ulValue; } -static void TC_SetRA(Tc *tc, uint32_t chan, uint32_t v ) +static void TC_SetRA(Tc *tc, uint32_t chan, uint32_t v) { tc->TC_CHANNEL[chan].TC_RA = v; } -static void TC_SetRB(Tc *tc, uint32_t chan, uint32_t v ) +static void TC_SetRB(Tc *tc, uint32_t chan, uint32_t v) { tc->TC_CHANNEL[chan].TC_RB = v; } -static void TC_SetRC(Tc *tc, uint32_t chan, uint32_t v ) +static void TC_SetRC(Tc *tc, uint32_t chan, uint32_t v) { tc->TC_CHANNEL[chan].TC_RC = v; } +static void TC_SetCMR_ChannelA(Tc *tc, uint32_t chan, uint32_t v) +{ + tc->TC_CHANNEL[chan].TC_CMR = (tc->TC_CHANNEL[chan].TC_CMR & 0xFFF0FFFF) | v; +} + +static void TC_SetCMR_ChannelB(Tc *tc, uint32_t chan, uint32_t v) +{ + tc->TC_CHANNEL[chan].TC_CMR = (tc->TC_CHANNEL[chan].TC_CMR & 0xF0FFFFFF) | v; +} + static uint8_t PWMEnabled = 0; static uint8_t pinEnabled[PINS_COUNT]; -static uint8_t TCChanEnabled[] = {0, 0, 0}; +static uint8_t TCChanEnabled[] = {0, 0, 0, 0, 0, 0, 0, 0, 0}; void analogOutputInit(void) { uint8_t i; @@ -254,38 +264,52 @@ void analogWrite(uint32_t ulPin, uint32_t ulValue) { } if ((attr & PIN_ATTR_TIMER) == PIN_ATTR_TIMER) { - // We use MCLK/2 => 96Mhz/2 => 48Mhz as clock. - // To get 1KHz we should use 48000 as TC - // 48Mhz/48000 = 1KHz + // We use MCLK/2 as clock. const uint32_t TC = VARIANT_MCK / 2 / TC_FREQUENCY; - // Map value to Timer ranges 0..255=>0..48000 + // Map value to Timer ranges 0..255 => 0..TC ulValue = ulValue * TC; ulValue = ulValue / TC_MAX_DUTY_CYCLE; // Setup Timer for this pin ETCChannel channel = g_APinDescription[ulPin].ulTCChannel; - static const uint32_t channelToChNo[] = { 0, 0, 1, 1, 2, 2 }; - static const uint32_t channelToAB[] = { 1, 0, 1, 0, 1, 0 }; + static const uint32_t channelToChNo[] = { 0, 0, 1, 1, 2, 2, 0, 0, 1, 1, 2, 2, 0, 0, 1, 1, 2, 2 }; + static const uint32_t channelToAB[] = { 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0 }; + static const Tc *channelToTC[] = { + TC0, TC0, TC0, TC0, TC0, TC0, + TC1, TC1, TC1, TC1, TC1, TC1, + TC2, TC2, TC2, TC2, TC2, TC2 }; + static const uint32_t channelToId[] = { 0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8 }; uint32_t chNo = channelToChNo[channel]; - uint32_t chA = channelToAB[channel]; + uint32_t chA = channelToAB[channel]; + Tc *chTC = channelToTC[channel]; + uint32_t interfaceID = channelToId[channel]; - if (!TCChanEnabled[chNo]) { - pmc_enable_periph_clk(TC_INTERFACE_ID + chNo); - TC_Configure(TC_INTERFACE, chNo, - TC_CMR_TCCLKS_TIMER_CLOCK1 | - TC_CMR_WAVE | - TC_CMR_WAVSEL_UP_RC | - TC_CMR_ACPA_CLEAR | // RA Compare Effect on OA: clear - TC_CMR_ACPC_SET | // RC Compare Effect on OA: set - TC_CMR_BCPB_CLEAR | // RB Compare Effect on OB: clear - TC_CMR_BCPC_SET); // RC Compare Effect on OB: set - TC_SetRC(TC_INTERFACE, chNo, TC); + if (!TCChanEnabled[interfaceID]) { + pmc_enable_periph_clk(TC_INTERFACE_ID + interfaceID); + TC_Configure(chTC, chNo, + TC_CMR_TCCLKS_TIMER_CLOCK1 | + TC_CMR_WAVE | // Waveform mode + TC_CMR_WAVSEL_UP_RC | // Counter running up and reset when equals to RC + TC_CMR_EEVT_XC0 | // Set external events from XC0 (this setup TIOB as output) + TC_CMR_ACPA_CLEAR | TC_CMR_ACPC_CLEAR | + TC_CMR_BCPB_CLEAR | TC_CMR_BCPC_CLEAR); + TC_SetRC(chTC, chNo, TC); + } + if (ulValue == 0) { + if (chA) + TC_SetCMR_ChannelA(chTC, chNo, TC_CMR_ACPA_CLEAR | TC_CMR_ACPC_CLEAR); + else + TC_SetCMR_ChannelB(chTC, chNo, TC_CMR_BCPB_CLEAR | TC_CMR_BCPC_CLEAR); + } else { + if (chA) { + TC_SetRA(chTC, chNo, ulValue); + TC_SetCMR_ChannelA(chTC, chNo, TC_CMR_ACPA_CLEAR | TC_CMR_ACPC_SET); + } else { + TC_SetRB(chTC, chNo, ulValue); + TC_SetCMR_ChannelB(chTC, chNo, TC_CMR_BCPB_CLEAR | TC_CMR_BCPC_SET); + } } - if (chA) - TC_SetRA(TC_INTERFACE, chNo, ulValue); - else - TC_SetRB(TC_INTERFACE, chNo, ulValue); if (!pinEnabled[ulPin]) { PIO_Configure(g_APinDescription[ulPin].pPort, g_APinDescription[ulPin].ulPinType, @@ -293,14 +317,14 @@ void analogWrite(uint32_t ulPin, uint32_t ulValue) { g_APinDescription[ulPin].ulPinConfiguration); pinEnabled[ulPin] = 1; } - if (!TCChanEnabled[chNo]) { - TC_Start(TC_INTERFACE, chNo); - TCChanEnabled[chNo] = 1; + if (!TCChanEnabled[interfaceID]) { + TC_Start(chTC, chNo); + TCChanEnabled[interfaceID] = 1; } return; } - // Default to digital write + // Defaults to digital write pinMode(ulPin, OUTPUT); if (ulValue < 128) digitalWrite(ulPin, LOW); diff --git a/hardware/arduino/sam/cores/arduino/wiring_constants.h b/hardware/arduino/sam/cores/arduino/wiring_constants.h index 0555d71b0..868d46dbd 100644 --- a/hardware/arduino/sam/cores/arduino/wiring_constants.h +++ b/hardware/arduino/sam/cores/arduino/wiring_constants.h @@ -28,6 +28,7 @@ extern "C"{ #define INPUT 0x0 #define OUTPUT 0x1 +#define INPUT_PULLUP 0x2 #define true 0x1 #define false 0x0 diff --git a/hardware/arduino/sam/cores/arduino/wiring_digital.c b/hardware/arduino/sam/cores/arduino/wiring_digital.c index bbd940d2e..ac6eb18b8 100644 --- a/hardware/arduino/sam/cores/arduino/wiring_digital.c +++ b/hardware/arduino/sam/cores/arduino/wiring_digital.c @@ -34,16 +34,35 @@ extern void pinMode( uint32_t ulPin, uint32_t ulMode ) case INPUT: /* Enable peripheral for clocking input */ pmc_enable_periph_clk( g_APinDescription[ulPin].ulPeripheralId ) ; - PIO_Configure( g_APinDescription[ulPin].pPort, PIO_INPUT, g_APinDescription[ulPin].ulPin, 0 ) ; + PIO_Configure( + g_APinDescription[ulPin].pPort, + PIO_INPUT, + g_APinDescription[ulPin].ulPin, + 0 ) ; + break ; + + case INPUT_PULLUP: + /* Enable peripheral for clocking input */ + pmc_enable_periph_clk( g_APinDescription[ulPin].ulPeripheralId ) ; + PIO_Configure( + g_APinDescription[ulPin].pPort, + PIO_INPUT, + g_APinDescription[ulPin].ulPin, + PIO_PULLUP ) ; break ; case OUTPUT: - /* if all pins are output, disable PIO Controller clocking, reduce power consomption */ + PIO_Configure( + g_APinDescription[ulPin].pPort, + PIO_OUTPUT_1, + g_APinDescription[ulPin].ulPin, + g_APinDescription[ulPin].ulPinConfiguration ) ; + + /* if all pins are output, disable PIO Controller clocking, reduce power consumption */ if ( g_APinDescription[ulPin].pPort->PIO_OSR == 0xffffffff ) { pmc_disable_periph_clk( g_APinDescription[ulPin].ulPeripheralId ) ; } - PIO_Configure( g_APinDescription[ulPin].pPort, PIO_OUTPUT_1, g_APinDescription[ulPin].ulPin, g_APinDescription[ulPin].ulPinConfiguration ) ; break ; default: diff --git a/hardware/arduino/sam/cores/arduino/wiring_shift.c b/hardware/arduino/sam/cores/arduino/wiring_shift.c index 30d3f43b6..302f0b5f9 100644 --- a/hardware/arduino/sam/cores/arduino/wiring_shift.c +++ b/hardware/arduino/sam/cores/arduino/wiring_shift.c @@ -22,7 +22,7 @@ extern "C"{ #endif -extern uint32_t shiftIn( uint32_t ulDataPin, uint32_t ulClockPin, uint32_t ulBitOrder ) +uint32_t shiftIn( uint32_t ulDataPin, uint32_t ulClockPin, uint32_t ulBitOrder ) { uint8_t value = 0 ; uint8_t i ; @@ -46,7 +46,7 @@ extern uint32_t shiftIn( uint32_t ulDataPin, uint32_t ulClockPin, uint32_t ulBit return value ; } -extern void shiftOut( uint32_t ulDataPin, uint32_t ulClockPin, uint32_t ulBitOrder, uint32_t ulVal ) +void shiftOut( uint32_t ulDataPin, uint32_t ulClockPin, uint32_t ulBitOrder, uint32_t ulVal ) { uint8_t i ; diff --git a/hardware/arduino/sam/libraries/Ethernet/Dhcp.cpp b/hardware/arduino/sam/libraries/Ethernet/Dhcp.cpp new file mode 100755 index 000000000..e4d27f722 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/Dhcp.cpp @@ -0,0 +1,479 @@ +// DHCP Library v0.3 - April 25, 2009 +// Author: Jordan Terrell - blog.jordanterrell.com + +#include "w5100.h" + +#include +#include +#include "Dhcp.h" +#include "Arduino.h" +#include "util.h" + +int DhcpClass::beginWithDHCP(uint8_t *mac, unsigned long timeout, unsigned long responseTimeout) +{ + _dhcpLeaseTime=0; + _dhcpT1=0; + _dhcpT2=0; + _lastCheck=0; + _timeout = timeout; + _responseTimeout = responseTimeout; + + // zero out _dhcpMacAddr + memset(_dhcpMacAddr, 0, 6); + reset_DHCP_lease(); + + memcpy((void*)_dhcpMacAddr, (void*)mac, 6); + _dhcp_state = STATE_DHCP_START; + return request_DHCP_lease(); +} + +void DhcpClass::reset_DHCP_lease(){ + // zero out _dhcpSubnetMask, _dhcpGatewayIp, _dhcpLocalIp, _dhcpDhcpServerIp, _dhcpDnsServerIp + memset(_dhcpLocalIp, 0, 20); +} + +//return:0 on error, 1 if request is sent and response is received +int DhcpClass::request_DHCP_lease(){ + + uint8_t messageType = 0; + + + + // Pick an initial transaction ID + _dhcpTransactionId = random(1UL, 2000UL); + _dhcpInitialTransactionId = _dhcpTransactionId; + + if (_dhcpUdpSocket.begin(DHCP_CLIENT_PORT) == 0) + { + // Couldn't get a socket + return 0; + } + + presend_DHCP(); + + int result = 0; + + unsigned long startTime = millis(); + + while(_dhcp_state != STATE_DHCP_LEASED) + { + if(_dhcp_state == STATE_DHCP_START) + { + _dhcpTransactionId++; + + send_DHCP_MESSAGE(DHCP_DISCOVER, ((millis() - startTime) / 1000)); + _dhcp_state = STATE_DHCP_DISCOVER; + } + else if(_dhcp_state == STATE_DHCP_REREQUEST){ + _dhcpTransactionId++; + send_DHCP_MESSAGE(DHCP_REQUEST, ((millis() - startTime)/1000)); + _dhcp_state = STATE_DHCP_REQUEST; + } + else if(_dhcp_state == STATE_DHCP_DISCOVER) + { + uint32_t respId; + messageType = parseDHCPResponse(_responseTimeout, respId); + if(messageType == DHCP_OFFER) + { + // We'll use the transaction ID that the offer came with, + // rather than the one we were up to + _dhcpTransactionId = respId; + send_DHCP_MESSAGE(DHCP_REQUEST, ((millis() - startTime) / 1000)); + _dhcp_state = STATE_DHCP_REQUEST; + } + } + else if(_dhcp_state == STATE_DHCP_REQUEST) + { + uint32_t respId; + messageType = parseDHCPResponse(_responseTimeout, respId); + if(messageType == DHCP_ACK) + { + _dhcp_state = STATE_DHCP_LEASED; + result = 1; + //use default lease time if we didn't get it + if(_dhcpLeaseTime == 0){ + _dhcpLeaseTime = DEFAULT_LEASE; + } + //calculate T1 & T2 if we didn't get it + if(_dhcpT1 == 0){ + //T1 should be 50% of _dhcpLeaseTime + _dhcpT1 = _dhcpLeaseTime >> 1; + } + if(_dhcpT2 == 0){ + //T2 should be 87.5% (7/8ths) of _dhcpLeaseTime + _dhcpT2 = _dhcpT1 << 1; + } + _renewInSec = _dhcpT1; + _rebindInSec = _dhcpT2; + } + else if(messageType == DHCP_NAK) + _dhcp_state = STATE_DHCP_START; + } + + if(messageType == 255) + { + messageType = 0; + _dhcp_state = STATE_DHCP_START; + } + + if(result != 1 && ((millis() - startTime) > _timeout)) + break; + } + + // We're done with the socket now + _dhcpUdpSocket.stop(); + _dhcpTransactionId++; + + return result; +} + +void DhcpClass::presend_DHCP() +{ +} + +void DhcpClass::send_DHCP_MESSAGE(uint8_t messageType, uint16_t secondsElapsed) +{ + uint8_t buffer[32]; + memset(buffer, 0, 32); + IPAddress dest_addr( 255, 255, 255, 255 ); // Broadcast address + + if (-1 == _dhcpUdpSocket.beginPacket(dest_addr, DHCP_SERVER_PORT)) + { + // FIXME Need to return errors + return; + } + + buffer[0] = DHCP_BOOTREQUEST; // op + buffer[1] = DHCP_HTYPE10MB; // htype + buffer[2] = DHCP_HLENETHERNET; // hlen + buffer[3] = DHCP_HOPS; // hops + + // xid + unsigned long xid = htonl(_dhcpTransactionId); + memcpy(buffer + 4, &(xid), 4); + + // 8, 9 - seconds elapsed + buffer[8] = ((secondsElapsed & 0xff00) >> 8); + buffer[9] = (secondsElapsed & 0x00ff); + + // flags + unsigned short flags = htons(DHCP_FLAGSBROADCAST); + memcpy(buffer + 10, &(flags), 2); + + // ciaddr: already zeroed + // yiaddr: already zeroed + // siaddr: already zeroed + // giaddr: already zeroed + + //put data in W5100 transmit buffer + _dhcpUdpSocket.write(buffer, 28); + + memset(buffer, 0, 32); // clear local buffer + + memcpy(buffer, _dhcpMacAddr, 6); // chaddr + + //put data in W5100 transmit buffer + _dhcpUdpSocket.write(buffer, 16); + + memset(buffer, 0, 32); // clear local buffer + + // leave zeroed out for sname && file + // put in W5100 transmit buffer x 6 (192 bytes) + + for(int i = 0; i < 6; i++) { + _dhcpUdpSocket.write(buffer, 32); + } + + // OPT - Magic Cookie + buffer[0] = (uint8_t)((MAGIC_COOKIE >> 24)& 0xFF); + buffer[1] = (uint8_t)((MAGIC_COOKIE >> 16)& 0xFF); + buffer[2] = (uint8_t)((MAGIC_COOKIE >> 8)& 0xFF); + buffer[3] = (uint8_t)(MAGIC_COOKIE& 0xFF); + + // OPT - message type + buffer[4] = dhcpMessageType; + buffer[5] = 0x01; + buffer[6] = messageType; //DHCP_REQUEST; + + // OPT - client identifier + buffer[7] = dhcpClientIdentifier; + buffer[8] = 0x07; + buffer[9] = 0x01; + memcpy(buffer + 10, _dhcpMacAddr, 6); + + // OPT - host name + buffer[16] = hostName; + buffer[17] = strlen(HOST_NAME) + 6; // length of hostname + last 3 bytes of mac address + strcpy((char*)&(buffer[18]), HOST_NAME); + + printByte((char*)&(buffer[24]), _dhcpMacAddr[3]); + printByte((char*)&(buffer[26]), _dhcpMacAddr[4]); + printByte((char*)&(buffer[28]), _dhcpMacAddr[5]); + + //put data in W5100 transmit buffer + _dhcpUdpSocket.write(buffer, 30); + + if(messageType == DHCP_REQUEST) + { + buffer[0] = dhcpRequestedIPaddr; + buffer[1] = 0x04; + buffer[2] = _dhcpLocalIp[0]; + buffer[3] = _dhcpLocalIp[1]; + buffer[4] = _dhcpLocalIp[2]; + buffer[5] = _dhcpLocalIp[3]; + + buffer[6] = dhcpServerIdentifier; + buffer[7] = 0x04; + buffer[8] = _dhcpDhcpServerIp[0]; + buffer[9] = _dhcpDhcpServerIp[1]; + buffer[10] = _dhcpDhcpServerIp[2]; + buffer[11] = _dhcpDhcpServerIp[3]; + + //put data in W5100 transmit buffer + _dhcpUdpSocket.write(buffer, 12); + } + + buffer[0] = dhcpParamRequest; + buffer[1] = 0x06; + buffer[2] = subnetMask; + buffer[3] = routersOnSubnet; + buffer[4] = dns; + buffer[5] = domainName; + buffer[6] = dhcpT1value; + buffer[7] = dhcpT2value; + buffer[8] = endOption; + + //put data in W5100 transmit buffer + _dhcpUdpSocket.write(buffer, 9); + + _dhcpUdpSocket.endPacket(); +} + +uint8_t DhcpClass::parseDHCPResponse(unsigned long responseTimeout, uint32_t& transactionId) +{ + uint8_t type = 0; + uint8_t opt_len = 0; + + unsigned long startTime = millis(); + + while(_dhcpUdpSocket.parsePacket() <= 0) + { + if((millis() - startTime) > responseTimeout) + { + return 255; + } + delay(50); + } + // start reading in the packet + RIP_MSG_FIXED fixedMsg; + _dhcpUdpSocket.read((uint8_t*)&fixedMsg, sizeof(RIP_MSG_FIXED)); + + if(fixedMsg.op == DHCP_BOOTREPLY && _dhcpUdpSocket.remotePort() == DHCP_SERVER_PORT) + { + transactionId = ntohl(fixedMsg.xid); + if(memcmp(fixedMsg.chaddr, _dhcpMacAddr, 6) != 0 || (transactionId < _dhcpInitialTransactionId) || (transactionId > _dhcpTransactionId)) + { + // Need to read the rest of the packet here regardless + _dhcpUdpSocket.flush(); + return 0; + } + + memcpy(_dhcpLocalIp, fixedMsg.yiaddr, 4); + + // Skip to the option part + // Doing this a byte at a time so we don't have to put a big buffer + // on the stack (as we don't have lots of memory lying around) + for (int i =0; i < (240 - (int)sizeof(RIP_MSG_FIXED)); i++) + { + _dhcpUdpSocket.read(); // we don't care about the returned byte + } + + while (_dhcpUdpSocket.available() > 0) + { + switch (_dhcpUdpSocket.read()) + { + case endOption : + break; + + case padOption : + break; + + case dhcpMessageType : + opt_len = _dhcpUdpSocket.read(); + type = _dhcpUdpSocket.read(); + break; + + case subnetMask : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read(_dhcpSubnetMask, 4); + break; + + case routersOnSubnet : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read(_dhcpGatewayIp, 4); + for (int i = 0; i < opt_len-4; i++) + { + _dhcpUdpSocket.read(); + } + break; + + case dns : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read(_dhcpDnsServerIp, 4); + for (int i = 0; i < opt_len-4; i++) + { + _dhcpUdpSocket.read(); + } + break; + + case dhcpServerIdentifier : + opt_len = _dhcpUdpSocket.read(); + if( *((uint32_t*)_dhcpDhcpServerIp) == 0 || + IPAddress(_dhcpDhcpServerIp) == _dhcpUdpSocket.remoteIP() ) + { + _dhcpUdpSocket.read(_dhcpDhcpServerIp, sizeof(_dhcpDhcpServerIp)); + } + else + { + // Skip over the rest of this option + while (opt_len--) + { + _dhcpUdpSocket.read(); + } + } + break; + + case dhcpT1value : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read((uint8_t*)&_dhcpT1, sizeof(_dhcpT1)); + _dhcpT1 = ntohl(_dhcpT1); + break; + + case dhcpT2value : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read((uint8_t*)&_dhcpT2, sizeof(_dhcpT2)); + _dhcpT2 = ntohl(_dhcpT2); + break; + + case dhcpIPaddrLeaseTime : + opt_len = _dhcpUdpSocket.read(); + _dhcpUdpSocket.read((uint8_t*)&_dhcpLeaseTime, sizeof(_dhcpLeaseTime)); + _dhcpLeaseTime = ntohl(_dhcpLeaseTime); + _renewInSec = _dhcpLeaseTime; + break; + + default : + opt_len = _dhcpUdpSocket.read(); + // Skip over the rest of this option + while (opt_len--) + { + _dhcpUdpSocket.read(); + } + break; + } + } + } + + // Need to skip to end of the packet regardless here + _dhcpUdpSocket.flush(); + + return type; +} + + +/* + returns: + 0/DHCP_CHECK_NONE: nothing happened + 1/DHCP_CHECK_RENEW_FAIL: renew failed + 2/DHCP_CHECK_RENEW_OK: renew success + 3/DHCP_CHECK_REBIND_FAIL: rebind fail + 4/DHCP_CHECK_REBIND_OK: rebind success +*/ +int DhcpClass::checkLease(){ + //this uses a signed / unsigned trick to deal with millis overflow + unsigned long now = millis(); + signed long snow = (long)now; + int rc=DHCP_CHECK_NONE; + if (_lastCheck != 0){ + signed long factor; + //calc how many ms past the timeout we are + factor = snow - (long)_secTimeout; + //if on or passed the timeout, reduce the counters + if ( factor >= 0 ){ + //next timeout should be now plus 1000 ms minus parts of second in factor + _secTimeout = snow + 1000 - factor % 1000; + //how many seconds late are we, minimum 1 + factor = factor / 1000 +1; + + //reduce the counters by that mouch + //if we can assume that the cycle time (factor) is fairly constant + //and if the remainder is less than cycle time * 2 + //do it early instead of late + if(_renewInSec < factor*2 ) + _renewInSec = 0; + else + _renewInSec -= factor; + + if(_rebindInSec < factor*2 ) + _rebindInSec = 0; + else + _rebindInSec -= factor; + } + + //if we have a lease but should renew, do it + if (_dhcp_state == STATE_DHCP_LEASED && _renewInSec <=0){ + _dhcp_state = STATE_DHCP_REREQUEST; + rc = 1 + request_DHCP_lease(); + } + + //if we have a lease or is renewing but should bind, do it + if( (_dhcp_state == STATE_DHCP_LEASED || _dhcp_state == STATE_DHCP_START) && _rebindInSec <=0){ + //this should basically restart completely + _dhcp_state = STATE_DHCP_START; + reset_DHCP_lease(); + rc = 3 + request_DHCP_lease(); + } + } + else{ + _secTimeout = snow + 1000; + } + + _lastCheck = now; + return rc; +} + +IPAddress DhcpClass::getLocalIp() +{ + return IPAddress(_dhcpLocalIp); +} + +IPAddress DhcpClass::getSubnetMask() +{ + return IPAddress(_dhcpSubnetMask); +} + +IPAddress DhcpClass::getGatewayIp() +{ + return IPAddress(_dhcpGatewayIp); +} + +IPAddress DhcpClass::getDhcpServerIp() +{ + return IPAddress(_dhcpDhcpServerIp); +} + +IPAddress DhcpClass::getDnsServerIp() +{ + return IPAddress(_dhcpDnsServerIp); +} + +void DhcpClass::printByte(char * buf, uint8_t n ) { + char *str = &buf[1]; + buf[0]='0'; + do { + unsigned long m = n; + n /= 16; + char c = m - 16 * n; + *str-- = c < 10 ? c + '0' : c + 'A' - 10; + } while(n); +} diff --git a/hardware/arduino/sam/libraries/Ethernet/Dhcp.h b/hardware/arduino/sam/libraries/Ethernet/Dhcp.h new file mode 100755 index 000000000..4a47936f0 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/Dhcp.h @@ -0,0 +1,178 @@ +// DHCP Library v0.3 - April 25, 2009 +// Author: Jordan Terrell - blog.jordanterrell.com + +#ifndef Dhcp_h +#define Dhcp_h + +#include "EthernetUdp.h" + +/* DHCP state machine. */ +#define STATE_DHCP_START 0 +#define STATE_DHCP_DISCOVER 1 +#define STATE_DHCP_REQUEST 2 +#define STATE_DHCP_LEASED 3 +#define STATE_DHCP_REREQUEST 4 +#define STATE_DHCP_RELEASE 5 + +#define DHCP_FLAGSBROADCAST 0x8000 + +/* UDP port numbers for DHCP */ +#define DHCP_SERVER_PORT 67 /* from server to client */ +#define DHCP_CLIENT_PORT 68 /* from client to server */ + +/* DHCP message OP code */ +#define DHCP_BOOTREQUEST 1 +#define DHCP_BOOTREPLY 2 + +/* DHCP message type */ +#define DHCP_DISCOVER 1 +#define DHCP_OFFER 2 +#define DHCP_REQUEST 3 +#define DHCP_DECLINE 4 +#define DHCP_ACK 5 +#define DHCP_NAK 6 +#define DHCP_RELEASE 7 +#define DHCP_INFORM 8 + +#define DHCP_HTYPE10MB 1 +#define DHCP_HTYPE100MB 2 + +#define DHCP_HLENETHERNET 6 +#define DHCP_HOPS 0 +#define DHCP_SECS 0 + +#define MAGIC_COOKIE 0x63825363 +#define MAX_DHCP_OPT 16 + +#define HOST_NAME "WIZnet" +#define DEFAULT_LEASE (900) //default lease time in seconds + +#define DHCP_CHECK_NONE (0) +#define DHCP_CHECK_RENEW_FAIL (1) +#define DHCP_CHECK_RENEW_OK (2) +#define DHCP_CHECK_REBIND_FAIL (3) +#define DHCP_CHECK_REBIND_OK (4) + +enum +{ + padOption = 0, + subnetMask = 1, + timerOffset = 2, + routersOnSubnet = 3, + /* timeServer = 4, + nameServer = 5,*/ + dns = 6, + /*logServer = 7, + cookieServer = 8, + lprServer = 9, + impressServer = 10, + resourceLocationServer = 11,*/ + hostName = 12, + /*bootFileSize = 13, + meritDumpFile = 14,*/ + domainName = 15, + /*swapServer = 16, + rootPath = 17, + extentionsPath = 18, + IPforwarding = 19, + nonLocalSourceRouting = 20, + policyFilter = 21, + maxDgramReasmSize = 22, + defaultIPTTL = 23, + pathMTUagingTimeout = 24, + pathMTUplateauTable = 25, + ifMTU = 26, + allSubnetsLocal = 27, + broadcastAddr = 28, + performMaskDiscovery = 29, + maskSupplier = 30, + performRouterDiscovery = 31, + routerSolicitationAddr = 32, + staticRoute = 33, + trailerEncapsulation = 34, + arpCacheTimeout = 35, + ethernetEncapsulation = 36, + tcpDefaultTTL = 37, + tcpKeepaliveInterval = 38, + tcpKeepaliveGarbage = 39, + nisDomainName = 40, + nisServers = 41, + ntpServers = 42, + vendorSpecificInfo = 43, + netBIOSnameServer = 44, + netBIOSdgramDistServer = 45, + netBIOSnodeType = 46, + netBIOSscope = 47, + xFontServer = 48, + xDisplayManager = 49,*/ + dhcpRequestedIPaddr = 50, + dhcpIPaddrLeaseTime = 51, + /*dhcpOptionOverload = 52,*/ + dhcpMessageType = 53, + dhcpServerIdentifier = 54, + dhcpParamRequest = 55, + /*dhcpMsg = 56, + dhcpMaxMsgSize = 57,*/ + dhcpT1value = 58, + dhcpT2value = 59, + /*dhcpClassIdentifier = 60,*/ + dhcpClientIdentifier = 61, + endOption = 255 +}; + +typedef struct _RIP_MSG_FIXED +{ + uint8_t op; + uint8_t htype; + uint8_t hlen; + uint8_t hops; + uint32_t xid; + uint16_t secs; + uint16_t flags; + uint8_t ciaddr[4]; + uint8_t yiaddr[4]; + uint8_t siaddr[4]; + uint8_t giaddr[4]; + uint8_t chaddr[6]; +}RIP_MSG_FIXED; + +class DhcpClass { +private: + uint32_t _dhcpInitialTransactionId; + uint32_t _dhcpTransactionId; + uint8_t _dhcpMacAddr[6]; + uint8_t _dhcpLocalIp[4]; + uint8_t _dhcpSubnetMask[4]; + uint8_t _dhcpGatewayIp[4]; + uint8_t _dhcpDhcpServerIp[4]; + uint8_t _dhcpDnsServerIp[4]; + uint32_t _dhcpLeaseTime; + uint32_t _dhcpT1, _dhcpT2; + signed long _renewInSec; + signed long _rebindInSec; + signed long _lastCheck; + unsigned long _timeout; + unsigned long _responseTimeout; + unsigned long _secTimeout; + uint8_t _dhcp_state; + EthernetUDP _dhcpUdpSocket; + + int request_DHCP_lease(); + void reset_DHCP_lease(); + void presend_DHCP(); + void send_DHCP_MESSAGE(uint8_t, uint16_t); + void printByte(char *, uint8_t); + + uint8_t parseDHCPResponse(unsigned long responseTimeout, uint32_t& transactionId); +public: + IPAddress getLocalIp(); + IPAddress getSubnetMask(); + IPAddress getGatewayIp(); + IPAddress getDhcpServerIp(); + IPAddress getDnsServerIp(); + + int beginWithDHCP(uint8_t *, unsigned long timeout = 60000, unsigned long responseTimeout = 4000); + int checkLease(); +}; + +#endif diff --git a/hardware/arduino/sam/libraries/Ethernet/Dns.cpp b/hardware/arduino/sam/libraries/Ethernet/Dns.cpp new file mode 100644 index 000000000..b3c1a9dc1 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/Dns.cpp @@ -0,0 +1,423 @@ +// Arduino DNS client for WizNet5100-based Ethernet shield +// (c) Copyright 2009-2010 MCQN Ltd. +// Released under Apache License, version 2.0 + +#include "w5100.h" +#include "EthernetUdp.h" +#include "util.h" + +#include "Dns.h" +#include +//#include +#include "Arduino.h" + + +#define SOCKET_NONE 255 +// Various flags and header field values for a DNS message +#define UDP_HEADER_SIZE 8 +#define DNS_HEADER_SIZE 12 +#define TTL_SIZE 4 +#define QUERY_FLAG (0) +#define RESPONSE_FLAG (1<<15) +#define QUERY_RESPONSE_MASK (1<<15) +#define OPCODE_STANDARD_QUERY (0) +#define OPCODE_INVERSE_QUERY (1<<11) +#define OPCODE_STATUS_REQUEST (2<<11) +#define OPCODE_MASK (15<<11) +#define AUTHORITATIVE_FLAG (1<<10) +#define TRUNCATION_FLAG (1<<9) +#define RECURSION_DESIRED_FLAG (1<<8) +#define RECURSION_AVAILABLE_FLAG (1<<7) +#define RESP_NO_ERROR (0) +#define RESP_FORMAT_ERROR (1) +#define RESP_SERVER_FAILURE (2) +#define RESP_NAME_ERROR (3) +#define RESP_NOT_IMPLEMENTED (4) +#define RESP_REFUSED (5) +#define RESP_MASK (15) +#define TYPE_A (0x0001) +#define CLASS_IN (0x0001) +#define LABEL_COMPRESSION_MASK (0xC0) +// Port number that DNS servers listen on +#define DNS_PORT 53 + +// Possible return codes from ProcessResponse +#define SUCCESS 1 +#define TIMED_OUT -1 +#define INVALID_SERVER -2 +#define TRUNCATED -3 +#define INVALID_RESPONSE -4 + +void DNSClient::begin(const IPAddress& aDNSServer) +{ + iDNSServer = aDNSServer; + iRequestId = 0; +} + + +int DNSClient::inet_aton(const char* aIPAddrString, IPAddress& aResult) +{ + // See if we've been given a valid IP address + const char* p =aIPAddrString; + while (*p && + ( (*p == '.') || (*p >= '0') || (*p <= '9') )) + { + p++; + } + + if (*p == '\0') + { + // It's looking promising, we haven't found any invalid characters + p = aIPAddrString; + int segment =0; + int segmentValue =0; + while (*p && (segment < 4)) + { + if (*p == '.') + { + // We've reached the end of a segment + if (segmentValue > 255) + { + // You can't have IP address segments that don't fit in a byte + return 0; + } + else + { + aResult[segment] = (byte)segmentValue; + segment++; + segmentValue = 0; + } + } + else + { + // Next digit + segmentValue = (segmentValue*10)+(*p - '0'); + } + p++; + } + // We've reached the end of address, but there'll still be the last + // segment to deal with + if ((segmentValue > 255) || (segment > 3)) + { + // You can't have IP address segments that don't fit in a byte, + // or more than four segments + return 0; + } + else + { + aResult[segment] = (byte)segmentValue; + return 1; + } + } + else + { + return 0; + } +} + +int DNSClient::getHostByName(const char* aHostname, IPAddress& aResult) +{ + int ret =0; + + // See if it's a numeric IP address + if (inet_aton(aHostname, aResult)) + { + // It is, our work here is done + return 1; + } + + // Check we've got a valid DNS server to use + if (iDNSServer == INADDR_NONE) + { + return INVALID_SERVER; + } + + // Find a socket to use + if (iUdp.begin(1024+(millis() & 0xF)) == 1) + { + // Try up to three times + int retries = 0; +// while ((retries < 3) && (ret <= 0)) + { + // Send DNS request + ret = iUdp.beginPacket(iDNSServer, DNS_PORT); + if (ret != 0) + { + // Now output the request data + ret = BuildRequest(aHostname); + if (ret != 0) + { + // And finally send the request + ret = iUdp.endPacket(); + if (ret != 0) + { + // Now wait for a response + int wait_retries = 0; + ret = TIMED_OUT; + while ((wait_retries < 3) && (ret == TIMED_OUT)) + { + ret = ProcessResponse(5000, aResult); + wait_retries++; + } + } + } + } + retries++; + } + + // We're done with the socket now + iUdp.stop(); + } + + return ret; +} + +uint16_t DNSClient::BuildRequest(const char* aName) +{ + // Build header + // 1 1 1 1 1 1 + // 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 + // +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + // | ID | + // +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + // |QR| Opcode |AA|TC|RD|RA| Z | RCODE | + // +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + // | QDCOUNT | + // +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + // | ANCOUNT | + // +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + // | NSCOUNT | + // +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + // | ARCOUNT | + // +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ + // As we only support one request at a time at present, we can simplify + // some of this header + iRequestId = millis(); // generate a random ID + uint16_t twoByteBuffer; + + // FIXME We should also check that there's enough space available to write to, rather + // FIXME than assume there's enough space (as the code does at present) + iUdp.write((uint8_t*)&iRequestId, sizeof(iRequestId)); + + twoByteBuffer = htons(QUERY_FLAG | OPCODE_STANDARD_QUERY | RECURSION_DESIRED_FLAG); + iUdp.write((uint8_t*)&twoByteBuffer, sizeof(twoByteBuffer)); + + twoByteBuffer = htons(1); // One question record + iUdp.write((uint8_t*)&twoByteBuffer, sizeof(twoByteBuffer)); + + twoByteBuffer = 0; // Zero answer records + iUdp.write((uint8_t*)&twoByteBuffer, sizeof(twoByteBuffer)); + + iUdp.write((uint8_t*)&twoByteBuffer, sizeof(twoByteBuffer)); + // and zero additional records + iUdp.write((uint8_t*)&twoByteBuffer, sizeof(twoByteBuffer)); + + // Build question + const char* start =aName; + const char* end =start; + uint8_t len; + // Run through the name being requested + while (*end) + { + // Find out how long this section of the name is + end = start; + while (*end && (*end != '.') ) + { + end++; + } + + if (end-start > 0) + { + // Write out the size of this section + len = end-start; + iUdp.write(&len, sizeof(len)); + // And then write out the section + iUdp.write((uint8_t*)start, end-start); + } + start = end+1; + } + + // We've got to the end of the question name, so + // terminate it with a zero-length section + len = 0; + iUdp.write(&len, sizeof(len)); + // Finally the type and class of question + twoByteBuffer = htons(TYPE_A); + iUdp.write((uint8_t*)&twoByteBuffer, sizeof(twoByteBuffer)); + + twoByteBuffer = htons(CLASS_IN); // Internet class of question + iUdp.write((uint8_t*)&twoByteBuffer, sizeof(twoByteBuffer)); + // Success! Everything buffered okay + return 1; +} + + +uint16_t DNSClient::ProcessResponse(uint16_t aTimeout, IPAddress& aAddress) +{ + uint32_t startTime = millis(); + + // Wait for a response packet + while(iUdp.parsePacket() <= 0) + { + if((millis() - startTime) > aTimeout) + return TIMED_OUT; + delay(50); + } + + // We've had a reply! + // Read the UDP header + uint8_t header[DNS_HEADER_SIZE]; // Enough space to reuse for the DNS header + // Check that it's a response from the right server and the right port + if ( (iDNSServer != iUdp.remoteIP()) || + (iUdp.remotePort() != DNS_PORT) ) + { + // It's not from who we expected + return INVALID_SERVER; + } + + // Read through the rest of the response + if (iUdp.available() < DNS_HEADER_SIZE) + { + return TRUNCATED; + } + iUdp.read(header, DNS_HEADER_SIZE); + + uint16_t header_flags = htons(*((uint16_t*)&header[2])); + // Check that it's a response to this request + if ( ( iRequestId != (*((uint16_t*)&header[0])) ) || + ((header_flags & QUERY_RESPONSE_MASK) != (uint16_t)RESPONSE_FLAG) ) + { + // Mark the entire packet as read + iUdp.flush(); + return INVALID_RESPONSE; + } + // Check for any errors in the response (or in our request) + // although we don't do anything to get round these + if ( (header_flags & TRUNCATION_FLAG) || (header_flags & RESP_MASK) ) + { + // Mark the entire packet as read + iUdp.flush(); + return -5; //INVALID_RESPONSE; + } + + // And make sure we've got (at least) one answer + uint16_t answerCount = htons(*((uint16_t*)&header[6])); + if (answerCount == 0 ) + { + // Mark the entire packet as read + iUdp.flush(); + return -6; //INVALID_RESPONSE; + } + + // Skip over any questions + for (uint16_t i =0; i < htons(*((uint16_t*)&header[4])); i++) + { + // Skip over the name + uint8_t len; + do + { + iUdp.read(&len, sizeof(len)); + if (len > 0) + { + // Don't need to actually read the data out for the string, just + // advance ptr to beyond it + while(len--) + { + iUdp.read(); // we don't care about the returned byte + } + } + } while (len != 0); + + // Now jump over the type and class + for (int i =0; i < 4; i++) + { + iUdp.read(); // we don't care about the returned byte + } + } + + // Now we're up to the bit we're interested in, the answer + // There might be more than one answer (although we'll just use the first + // type A answer) and some authority and additional resource records but + // we're going to ignore all of them. + + for (uint16_t i =0; i < answerCount; i++) + { + // Skip the name + uint8_t len; + do + { + iUdp.read(&len, sizeof(len)); + if ((len & LABEL_COMPRESSION_MASK) == 0) + { + // It's just a normal label + if (len > 0) + { + // And it's got a length + // Don't need to actually read the data out for the string, + // just advance ptr to beyond it + while(len--) + { + iUdp.read(); // we don't care about the returned byte + } + } + } + else + { + // This is a pointer to a somewhere else in the message for the + // rest of the name. We don't care about the name, and RFC1035 + // says that a name is either a sequence of labels ended with a + // 0 length octet or a pointer or a sequence of labels ending in + // a pointer. Either way, when we get here we're at the end of + // the name + // Skip over the pointer + iUdp.read(); // we don't care about the returned byte + // And set len so that we drop out of the name loop + len = 0; + } + } while (len != 0); + + // Check the type and class + uint16_t answerType; + uint16_t answerClass; + iUdp.read((uint8_t*)&answerType, sizeof(answerType)); + iUdp.read((uint8_t*)&answerClass, sizeof(answerClass)); + + // Ignore the Time-To-Live as we don't do any caching + for (int i =0; i < TTL_SIZE; i++) + { + iUdp.read(); // we don't care about the returned byte + } + + // And read out the length of this answer + // Don't need header_flags anymore, so we can reuse it here + iUdp.read((uint8_t*)&header_flags, sizeof(header_flags)); + + if ( (htons(answerType) == TYPE_A) && (htons(answerClass) == CLASS_IN) ) + { + if (htons(header_flags) != 4) + { + // It's a weird size + // Mark the entire packet as read + iUdp.flush(); + return -9;//INVALID_RESPONSE; + } + iUdp.read(aAddress.raw_address(), 4); + return SUCCESS; + } + else + { + // This isn't an answer type we're after, move onto the next one + for (uint16_t i =0; i < htons(header_flags); i++) + { + iUdp.read(); // we don't care about the returned byte + } + } + } + + // Mark the entire packet as read + iUdp.flush(); + + // If we get here then we haven't found an answer + return -10;//INVALID_RESPONSE; +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/Dns.h b/hardware/arduino/sam/libraries/Ethernet/Dns.h new file mode 100644 index 000000000..6bcb98ab9 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/Dns.h @@ -0,0 +1,41 @@ +// Arduino DNS client for WizNet5100-based Ethernet shield +// (c) Copyright 2009-2010 MCQN Ltd. +// Released under Apache License, version 2.0 + +#ifndef DNSClient_h +#define DNSClient_h + +#include + +class DNSClient +{ +public: + // ctor + void begin(const IPAddress& aDNSServer); + + /** Convert a numeric IP address string into a four-byte IP address. + @param aIPAddrString IP address to convert + @param aResult IPAddress structure to store the returned IP address + @result 1 if aIPAddrString was successfully converted to an IP address, + else error code + */ + int inet_aton(const char *aIPAddrString, IPAddress& aResult); + + /** Resolve the given hostname to an IP address. + @param aHostname Name to be resolved + @param aResult IPAddress structure to store the returned IP address + @result 1 if aIPAddrString was successfully converted to an IP address, + else error code + */ + int getHostByName(const char* aHostname, IPAddress& aResult); + +protected: + uint16_t BuildRequest(const char* aName); + uint16_t ProcessResponse(uint16_t aTimeout, IPAddress& aAddress); + + IPAddress iDNSServer; + uint16_t iRequestId; + EthernetUDP iUdp; +}; + +#endif diff --git a/hardware/arduino/sam/libraries/Ethernet/Ethernet.cpp b/hardware/arduino/sam/libraries/Ethernet/Ethernet.cpp new file mode 100644 index 000000000..ac54fa9dd --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/Ethernet.cpp @@ -0,0 +1,121 @@ +#include "w5100.h" +#include "Ethernet.h" +#include "Dhcp.h" + +// XXX: don't make assumptions about the value of MAX_SOCK_NUM. +uint8_t EthernetClass::_state[MAX_SOCK_NUM] = { + 0, 0, 0, 0 }; +uint16_t EthernetClass::_server_port[MAX_SOCK_NUM] = { + 0, 0, 0, 0 }; + +int EthernetClass::begin(uint8_t *mac_address) +{ + _dhcp = new DhcpClass(); + + // Initialise the basic info + W5100.init(); + W5100.setMACAddress(mac_address); + W5100.setIPAddress(IPAddress(0,0,0,0).raw_address()); + + // Now try to get our config info from a DHCP server + int ret = _dhcp->beginWithDHCP(mac_address); + if(ret == 1) + { + // We've successfully found a DHCP server and got our configuration info, so set things + // accordingly + W5100.setIPAddress(_dhcp->getLocalIp().raw_address()); + W5100.setGatewayIp(_dhcp->getGatewayIp().raw_address()); + W5100.setSubnetMask(_dhcp->getSubnetMask().raw_address()); + _dnsServerAddress = _dhcp->getDnsServerIp(); + } + + return ret; +} + +void EthernetClass::begin(uint8_t *mac_address, IPAddress local_ip) +{ + // Assume the DNS server will be the machine on the same network as the local IP + // but with last octet being '1' + IPAddress dns_server = local_ip; + dns_server[3] = 1; + begin(mac_address, local_ip, dns_server); +} + +void EthernetClass::begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dns_server) +{ + // Assume the gateway will be the machine on the same network as the local IP + // but with last octet being '1' + IPAddress gateway = local_ip; + gateway[3] = 1; + begin(mac_address, local_ip, dns_server, gateway); +} + +void EthernetClass::begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dns_server, IPAddress gateway) +{ + IPAddress subnet(255, 255, 255, 0); + begin(mac_address, local_ip, dns_server, gateway, subnet); +} + +void EthernetClass::begin(uint8_t *mac, IPAddress local_ip, IPAddress dns_server, IPAddress gateway, IPAddress subnet) +{ + W5100.init(); + + W5100.setMACAddress(mac); + W5100.setIPAddress(local_ip._address); + W5100.setGatewayIp(gateway._address); + W5100.setSubnetMask(subnet._address); + _dnsServerAddress = dns_server; +} + +int EthernetClass::maintain(){ + int rc = DHCP_CHECK_NONE; + if(_dhcp != NULL){ + //we have a pointer to dhcp, use it + rc = _dhcp->checkLease(); + switch ( rc ){ + case DHCP_CHECK_NONE: + //nothing done + break; + case DHCP_CHECK_RENEW_OK: + case DHCP_CHECK_REBIND_OK: + //we might have got a new IP. + W5100.setIPAddress(_dhcp->getLocalIp().raw_address()); + W5100.setGatewayIp(_dhcp->getGatewayIp().raw_address()); + W5100.setSubnetMask(_dhcp->getSubnetMask().raw_address()); + _dnsServerAddress = _dhcp->getDnsServerIp(); + break; + default: + //this is actually a error, it will retry though + break; + } + } + return rc; +} + +IPAddress EthernetClass::localIP() +{ + IPAddress ret; + W5100.getIPAddress(ret.raw_address()); + return ret; +} + +IPAddress EthernetClass::subnetMask() +{ + IPAddress ret; + W5100.getSubnetMask(ret.raw_address()); + return ret; +} + +IPAddress EthernetClass::gatewayIP() +{ + IPAddress ret; + W5100.getGatewayIp(ret.raw_address()); + return ret; +} + +IPAddress EthernetClass::dnsServerIP() +{ + return _dnsServerAddress; +} + +EthernetClass Ethernet; diff --git a/hardware/arduino/sam/libraries/Ethernet/Ethernet.h b/hardware/arduino/sam/libraries/Ethernet/Ethernet.h new file mode 100644 index 000000000..2a07ff35f --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/Ethernet.h @@ -0,0 +1,41 @@ +#ifndef ethernet_h +#define ethernet_h + +#include +//#include "w5100.h" +#include "IPAddress.h" +#include "EthernetClient.h" +#include "EthernetServer.h" +#include "Dhcp.h" + +#define MAX_SOCK_NUM 4 + +class EthernetClass { +private: + IPAddress _dnsServerAddress; + DhcpClass* _dhcp; +public: + static uint8_t _state[MAX_SOCK_NUM]; + static uint16_t _server_port[MAX_SOCK_NUM]; + // Initialise the Ethernet shield to use the provided MAC address and gain the rest of the + // configuration through DHCP. + // Returns 0 if the DHCP configuration failed, and 1 if it succeeded + int begin(uint8_t *mac_address); + void begin(uint8_t *mac_address, IPAddress local_ip); + void begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dns_server); + void begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dns_server, IPAddress gateway); + void begin(uint8_t *mac_address, IPAddress local_ip, IPAddress dns_server, IPAddress gateway, IPAddress subnet); + int maintain(); + + IPAddress localIP(); + IPAddress subnetMask(); + IPAddress gatewayIP(); + IPAddress dnsServerIP(); + + friend class EthernetClient; + friend class EthernetServer; +}; + +extern EthernetClass Ethernet; + +#endif diff --git a/hardware/arduino/sam/libraries/Ethernet/EthernetClient.cpp b/hardware/arduino/sam/libraries/Ethernet/EthernetClient.cpp new file mode 100644 index 000000000..9885efb78 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/EthernetClient.cpp @@ -0,0 +1,165 @@ +#include "w5100.h" +#include "socket.h" + +extern "C" { + #include "string.h" +} + +#include "Arduino.h" + +#include "Ethernet.h" +#include "EthernetClient.h" +#include "EthernetServer.h" +#include "Dns.h" + +uint16_t EthernetClient::_srcport = 1024; + +EthernetClient::EthernetClient() : _sock(MAX_SOCK_NUM) { +} + +EthernetClient::EthernetClient(uint8_t sock) : _sock(sock) { +} + +int EthernetClient::connect(const char* host, uint16_t port) { + // Look up the host first + int ret = 0; + DNSClient dns; + IPAddress remote_addr; + + dns.begin(Ethernet.dnsServerIP()); + ret = dns.getHostByName(host, remote_addr); + if (ret == 1) { + return connect(remote_addr, port); + } else { + return ret; + } +} + +int EthernetClient::connect(IPAddress ip, uint16_t port) { + if (_sock != MAX_SOCK_NUM) + return 0; + + for (int i = 0; i < MAX_SOCK_NUM; i++) { + uint8_t s = W5100.readSnSR(i); + if (s == SnSR::CLOSED || s == SnSR::FIN_WAIT || s == SnSR::CLOSE_WAIT) { + _sock = i; + break; + } + } + + if (_sock == MAX_SOCK_NUM) + return 0; + + _srcport++; + if (_srcport == 0) _srcport = 1024; + socket(_sock, SnMR::TCP, _srcport, 0); + + if (!::connect(_sock, rawIPAddress(ip), port)) { + _sock = MAX_SOCK_NUM; + return 0; + } + + while (status() != SnSR::ESTABLISHED) { + delay(1); + if (status() == SnSR::CLOSED) { + _sock = MAX_SOCK_NUM; + return 0; + } + } + + return 1; +} + +size_t EthernetClient::write(uint8_t b) { + return write(&b, 1); +} + +size_t EthernetClient::write(const uint8_t *buf, size_t size) { + if (_sock == MAX_SOCK_NUM) { + setWriteError(); + return 0; + } + if (!send(_sock, buf, size)) { + setWriteError(); + return 0; + } + return size; +} + +int EthernetClient::available() { + if (_sock != MAX_SOCK_NUM) + return W5100.getRXReceivedSize(_sock); + return 0; +} + +int EthernetClient::read() { + uint8_t b; + if ( recv(_sock, &b, 1) > 0 ) + { + // recv worked + return b; + } + else + { + // No data available + return -1; + } +} + +int EthernetClient::read(uint8_t *buf, size_t size) { + return recv(_sock, buf, size); +} + +int EthernetClient::peek() { + uint8_t b; + // Unlike recv, peek doesn't check to see if there's any data available, so we must + if (!available()) + return -1; + ::peek(_sock, &b); + return b; +} + +void EthernetClient::flush() { + while (available()) + read(); +} + +void EthernetClient::stop() { + if (_sock == MAX_SOCK_NUM) + return; + + // attempt to close the connection gracefully (send a FIN to other side) + disconnect(_sock); + unsigned long start = millis(); + + // wait a second for the connection to close + while (status() != SnSR::CLOSED && millis() - start < 1000) + delay(1); + + // if it hasn't closed, close it forcefully + if (status() != SnSR::CLOSED) + close(_sock); + + EthernetClass::_server_port[_sock] = 0; + _sock = MAX_SOCK_NUM; +} + +uint8_t EthernetClient::connected() { + if (_sock == MAX_SOCK_NUM) return 0; + + uint8_t s = status(); + return !(s == SnSR::LISTEN || s == SnSR::CLOSED || s == SnSR::FIN_WAIT || + (s == SnSR::CLOSE_WAIT && !available())); +} + +uint8_t EthernetClient::status() { + if (_sock == MAX_SOCK_NUM) return SnSR::CLOSED; + return W5100.readSnSR(_sock); +} + +// the next function allows us to use the client returned by +// EthernetServer::available() as the condition in an if-statement. + +EthernetClient::operator bool() { + return _sock != MAX_SOCK_NUM; +} diff --git a/hardware/arduino/sam/libraries/Ethernet/EthernetClient.h b/hardware/arduino/sam/libraries/Ethernet/EthernetClient.h new file mode 100644 index 000000000..44740fea7 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/EthernetClient.h @@ -0,0 +1,37 @@ +#ifndef ethernetclient_h +#define ethernetclient_h +#include "Arduino.h" +#include "Print.h" +#include "Client.h" +#include "IPAddress.h" + +class EthernetClient : public Client { + +public: + EthernetClient(); + EthernetClient(uint8_t sock); + + uint8_t status(); + virtual int connect(IPAddress ip, uint16_t port); + virtual int connect(const char *host, uint16_t port); + virtual size_t write(uint8_t); + virtual size_t write(const uint8_t *buf, size_t size); + virtual int available(); + virtual int read(); + virtual int read(uint8_t *buf, size_t size); + virtual int peek(); + virtual void flush(); + virtual void stop(); + virtual uint8_t connected(); + virtual operator bool(); + + friend class EthernetServer; + + using Print::write; + +private: + static uint16_t _srcport; + uint8_t _sock; +}; + +#endif diff --git a/hardware/arduino/sam/libraries/Ethernet/EthernetServer.cpp b/hardware/arduino/sam/libraries/Ethernet/EthernetServer.cpp new file mode 100644 index 000000000..0308b9261 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/EthernetServer.cpp @@ -0,0 +1,91 @@ +#include "w5100.h" +#include "socket.h" +extern "C" { +#include "string.h" +} + +#include "Ethernet.h" +#include "EthernetClient.h" +#include "EthernetServer.h" + +EthernetServer::EthernetServer(uint16_t port) +{ + _port = port; +} + +void EthernetServer::begin() +{ + for (int sock = 0; sock < MAX_SOCK_NUM; sock++) { + EthernetClient client(sock); + if (client.status() == SnSR::CLOSED) { + socket(sock, SnMR::TCP, _port, 0); + listen(sock); + EthernetClass::_server_port[sock] = _port; + break; + } + } +} + +void EthernetServer::accept() +{ + int listening = 0; + + for (int sock = 0; sock < MAX_SOCK_NUM; sock++) { + EthernetClient client(sock); + + if (EthernetClass::_server_port[sock] == _port) { + if (client.status() == SnSR::LISTEN) { + listening = 1; + } + else if (client.status() == SnSR::CLOSE_WAIT && !client.available()) { + client.stop(); + } + } + } + + if (!listening) { + begin(); + } +} + +EthernetClient EthernetServer::available() +{ + accept(); + + for (int sock = 0; sock < MAX_SOCK_NUM; sock++) { + EthernetClient client(sock); + if (EthernetClass::_server_port[sock] == _port && + (client.status() == SnSR::ESTABLISHED || + client.status() == SnSR::CLOSE_WAIT)) { + if (client.available()) { + // XXX: don't always pick the lowest numbered socket. + return client; + } + } + } + + return EthernetClient(MAX_SOCK_NUM); +} + +size_t EthernetServer::write(uint8_t b) +{ + return write(&b, 1); +} + +size_t EthernetServer::write(const uint8_t *buffer, size_t size) +{ + size_t n = 0; + + accept(); + + for (int sock = 0; sock < MAX_SOCK_NUM; sock++) { + EthernetClient client(sock); + + if (EthernetClass::_server_port[sock] == _port && + client.status() == SnSR::ESTABLISHED) { + n += client.write(buffer, size); + } + } + + return n; +} diff --git a/hardware/arduino/sam/libraries/Ethernet/EthernetServer.h b/hardware/arduino/sam/libraries/Ethernet/EthernetServer.h new file mode 100644 index 000000000..86ccafe96 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/EthernetServer.h @@ -0,0 +1,22 @@ +#ifndef ethernetserver_h +#define ethernetserver_h + +#include "Server.h" + +class EthernetClient; + +class EthernetServer : +public Server { +private: + uint16_t _port; + void accept(); +public: + EthernetServer(uint16_t); + EthernetClient available(); + virtual void begin(); + virtual size_t write(uint8_t); + virtual size_t write(const uint8_t *buf, size_t size); + using Print::write; +}; + +#endif diff --git a/hardware/arduino/sam/libraries/Ethernet/EthernetUdp.cpp b/hardware/arduino/sam/libraries/Ethernet/EthernetUdp.cpp new file mode 100644 index 000000000..37600529f --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/EthernetUdp.cpp @@ -0,0 +1,218 @@ +/* + * Udp.cpp: Library to send/receive UDP packets with the Arduino ethernet shield. + * This version only offers minimal wrapping of socket.c/socket.h + * Drop Udp.h/.cpp into the Ethernet library directory at hardware/libraries/Ethernet/ + * + * MIT License: + * Copyright (c) 2008 Bjoern Hartmann + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + * bjoern@cs.stanford.edu 12/30/2008 + */ + +#include "w5100.h" +#include "socket.h" +#include "Ethernet.h" +#include "Udp.h" +#include "Dns.h" + +/* Constructor */ +EthernetUDP::EthernetUDP() : _sock(MAX_SOCK_NUM) {} + +/* Start EthernetUDP socket, listening at local port PORT */ +uint8_t EthernetUDP::begin(uint16_t port) { + if (_sock != MAX_SOCK_NUM) + return 0; + + for (int i = 0; i < MAX_SOCK_NUM; i++) { + uint8_t s = W5100.readSnSR(i); + if (s == SnSR::CLOSED || s == SnSR::FIN_WAIT) { + _sock = i; + break; + } + } + + if (_sock == MAX_SOCK_NUM) + return 0; + + _port = port; + _remaining = 0; + socket(_sock, SnMR::UDP, _port, 0); + + return 1; +} + +/* return number of bytes available in the current packet, + will return zero if parsePacket hasn't been called yet */ +int EthernetUDP::available() { + return _remaining; +} + +/* Release any resources being used by this EthernetUDP instance */ +void EthernetUDP::stop() +{ + if (_sock == MAX_SOCK_NUM) + return; + + close(_sock); + + EthernetClass::_server_port[_sock] = 0; + _sock = MAX_SOCK_NUM; +} + +int EthernetUDP::beginPacket(const char *host, uint16_t port) +{ + // Look up the host first + int ret = 0; + DNSClient dns; + IPAddress remote_addr; + + dns.begin(Ethernet.dnsServerIP()); + ret = dns.getHostByName(host, remote_addr); + if (ret == 1) { + return beginPacket(remote_addr, port); + } else { + return ret; + } +} + +int EthernetUDP::beginPacket(IPAddress ip, uint16_t port) +{ + _offset = 0; + return startUDP(_sock, rawIPAddress(ip), port); +} + +int EthernetUDP::endPacket() +{ + return sendUDP(_sock); +} + +size_t EthernetUDP::write(uint8_t byte) +{ + return write(&byte, 1); +} + +size_t EthernetUDP::write(const uint8_t *buffer, size_t size) +{ + uint16_t bytes_written = bufferData(_sock, _offset, buffer, size); + _offset += bytes_written; + return bytes_written; +} + +int EthernetUDP::parsePacket() +{ + // discard any remaining bytes in the last packet + flush(); + + if (W5100.getRXReceivedSize(_sock) > 0) + { + //HACK - hand-parse the UDP packet using TCP recv method + uint8_t tmpBuf[8]; + int ret =0; + //read 8 header bytes and get IP and port from it + ret = recv(_sock,tmpBuf,8); + if (ret > 0) + { + _remoteIP = tmpBuf; + _remotePort = tmpBuf[4]; + _remotePort = (_remotePort << 8) + tmpBuf[5]; + _remaining = tmpBuf[6]; + _remaining = (_remaining << 8) + tmpBuf[7]; + + // When we get here, any remaining bytes are the data + ret = _remaining; + } + return ret; + } + // There aren't any packets available + return 0; +} + +int EthernetUDP::read() +{ + uint8_t byte; + + if ((_remaining > 0) && (recv(_sock, &byte, 1) > 0)) + { + // We read things without any problems + _remaining--; + return byte; + } + + // If we get here, there's no data available + return -1; +} + +int EthernetUDP::read(unsigned char* buffer, size_t len) +{ + + if (_remaining > 0) + { + + int got; + + if (_remaining <= len) + { + // data should fit in the buffer + got = recv(_sock, buffer, _remaining); + } + else + { + // too much data for the buffer, + // grab as much as will fit + got = recv(_sock, buffer, len); + } + + if (got > 0) + { + _remaining -= got; + return got; + } + + } + + // If we get here, there's no data available or recv failed + return -1; + +} + +int EthernetUDP::peek() +{ + uint8_t b; + // Unlike recv, peek doesn't check to see if there's any data available, so we must. + // If the user hasn't called parsePacket yet then return nothing otherwise they + // may get the UDP header + if (!_remaining) + return -1; + ::peek(_sock, &b); + return b; +} + +void EthernetUDP::flush() +{ + // could this fail (loop endlessly) if _remaining > 0 and recv in read fails? + // should only occur if recv fails after telling us the data is there, lets + // hope the w5100 always behaves :) + + while (_remaining) + { + read(); + } +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/EthernetUdp.h b/hardware/arduino/sam/libraries/Ethernet/EthernetUdp.h new file mode 100644 index 000000000..8a6b7ab5a --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/EthernetUdp.h @@ -0,0 +1,99 @@ +/* + * Udp.cpp: Library to send/receive UDP packets with the Arduino ethernet shield. + * This version only offers minimal wrapping of socket.c/socket.h + * Drop Udp.h/.cpp into the Ethernet library directory at hardware/libraries/Ethernet/ + * + * NOTE: UDP is fast, but has some important limitations (thanks to Warren Gray for mentioning these) + * 1) UDP does not guarantee the order in which assembled UDP packets are received. This + * might not happen often in practice, but in larger network topologies, a UDP + * packet can be received out of sequence. + * 2) UDP does not guard against lost packets - so packets *can* disappear without the sender being + * aware of it. Again, this may not be a concern in practice on small local networks. + * For more information, see http://www.cafeaulait.org/course/week12/35.html + * + * MIT License: + * Copyright (c) 2008 Bjoern Hartmann + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + * + * bjoern@cs.stanford.edu 12/30/2008 + */ + +#ifndef ethernetudp_h +#define ethernetudp_h + +#include + +#define UDP_TX_PACKET_MAX_SIZE 24 + +class EthernetUDP : public UDP { +private: + uint8_t _sock; // socket ID for Wiz5100 + uint16_t _port; // local port to listen on + IPAddress _remoteIP; // remote IP address for the incoming packet whilst it's being processed + uint16_t _remotePort; // remote port for the incoming packet whilst it's being processed + uint16_t _offset; // offset into the packet being sent + uint16_t _remaining; // remaining bytes of incoming packet yet to be processed + +public: + EthernetUDP(); // Constructor + virtual uint8_t begin(uint16_t); // initialize, start listening on specified port. Returns 1 if successful, 0 if there are no sockets available to use + virtual void stop(); // Finish with the UDP socket + + // Sending UDP packets + + // Start building up a packet to send to the remote host specific in ip and port + // Returns 1 if successful, 0 if there was a problem with the supplied IP address or port + virtual int beginPacket(IPAddress ip, uint16_t port); + // Start building up a packet to send to the remote host specific in host and port + // Returns 1 if successful, 0 if there was a problem resolving the hostname or port + virtual int beginPacket(const char *host, uint16_t port); + // Finish off this packet and send it + // Returns 1 if the packet was sent successfully, 0 if there was an error + virtual int endPacket(); + // Write a single byte into the packet + virtual size_t write(uint8_t); + // Write size bytes from buffer into the packet + virtual size_t write(const uint8_t *buffer, size_t size); + + using Print::write; + + // Start processing the next available incoming packet + // Returns the size of the packet in bytes, or 0 if no packets are available + virtual int parsePacket(); + // Number of bytes remaining in the current packet + virtual int available(); + // Read a single byte from the current packet + virtual int read(); + // Read up to len bytes from the current packet and place them into buffer + // Returns the number of bytes read, or 0 if none are available + virtual int read(unsigned char* buffer, size_t len); + // Read up to len characters from the current packet and place them into buffer + // Returns the number of characters read, or 0 if none are available + virtual int read(char* buffer, size_t len) { return read((unsigned char*)buffer, len); }; + // Return the next byte from the current packet without moving on to the next byte + virtual int peek(); + virtual void flush(); // Finish reading the current packet + + // Return the IP address of the host who sent the current incoming packet + virtual IPAddress remoteIP() { return _remoteIP; }; + // Return the port of the host who sent the current incoming packet + virtual uint16_t remotePort() { return _remotePort; }; +}; + +#endif diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino b/hardware/arduino/sam/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino new file mode 100644 index 000000000..bfbcb6d4a --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino @@ -0,0 +1,222 @@ +/* + SCP1000 Barometric Pressure Sensor Display + + Serves the output of a Barometric Pressure Sensor as a web page. + Uses the SPI library. For details on the sensor, see: + http://www.sparkfun.com/commerce/product_info.php?products_id=8161 + http://www.vti.fi/en/support/obsolete_products/pressure_sensors/ + + This sketch adapted from Nathan Seidle's SCP1000 example for PIC: + http://www.sparkfun.com/datasheets/Sensors/SCP1000-Testing.zip + + Circuit: + SCP1000 sensor attached to pins 6,7, and 11 - 13: + DRDY: pin 6 + CSB: pin 7 + MOSI: pin 11 + MISO: pin 12 + SCK: pin 13 + + created 31 July 2010 + by Tom Igoe + */ + +#include +// the sensor communicates using SPI, so include the library: +#include + + +// assign a MAC address for the ethernet controller. +// fill in your address here: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; +// assign an IP address for the controller: +IPAddress ip(192,168,1,20); +IPAddress gateway(192,168,1,1); +IPAddress subnet(255, 255, 255, 0); + + +// Initialize the Ethernet server library +// with the IP address and port you want to use +// (port 80 is default for HTTP): +EthernetServer server(80); + + +//Sensor's memory register addresses: +const int PRESSURE = 0x1F; //3 most significant bits of pressure +const int PRESSURE_LSB = 0x20; //16 least significant bits of pressure +const int TEMPERATURE = 0x21; //16 bit temperature reading + +// pins used for the connection with the sensor +// the others you need are controlled by the SPI library): +const int dataReadyPin = 6; +const int chipSelectPin = 7; + +float temperature = 0.0; +long pressure = 0; +long lastReadingTime = 0; + +void setup() { + // start the SPI library: + SPI.begin(); + + // start the Ethernet connection and the server: + Ethernet.begin(mac, ip); + server.begin(); + + // initalize the data ready and chip select pins: + pinMode(dataReadyPin, INPUT); + pinMode(chipSelectPin, OUTPUT); + + Serial.begin(9600); + + //Configure SCP1000 for low noise configuration: + writeRegister(0x02, 0x2D); + writeRegister(0x01, 0x03); + writeRegister(0x03, 0x02); + + // give the sensor and Ethernet shield time to set up: + delay(1000); + + //Set the sensor to high resolution mode tp start readings: + writeRegister(0x03, 0x0A); + +} + +void loop() { + // check for a reading no more than once a second. + if (millis() - lastReadingTime > 1000){ + // if there's a reading ready, read it: + // don't do anything until the data ready pin is high: + if (digitalRead(dataReadyPin) == HIGH) { + getData(); + // timestamp the last time you got a reading: + lastReadingTime = millis(); + } + } + + // listen for incoming Ethernet connections: + listenForEthernetClients(); +} + + +void getData() { + Serial.println("Getting reading"); + //Read the temperature data + int tempData = readRegister(0x21, 2); + + // convert the temperature to celsius and display it: + temperature = (float)tempData / 20.0; + + //Read the pressure data highest 3 bits: + byte pressureDataHigh = readRegister(0x1F, 1); + pressureDataHigh &= 0b00000111; //you only needs bits 2 to 0 + + //Read the pressure data lower 16 bits: + unsigned int pressureDataLow = readRegister(0x20, 2); + //combine the two parts into one 19-bit number: + pressure = ((pressureDataHigh << 16) | pressureDataLow)/4; + + Serial.print("Temperature: "); + Serial.print(temperature); + Serial.println(" degrees C"); + Serial.print("Pressure: " + String(pressure)); + Serial.println(" Pa"); +} + +void listenForEthernetClients() { + // listen for incoming clients + EthernetClient client = server.available(); + if (client) { + Serial.println("Got a client"); + // an http request ends with a blank line + boolean currentLineIsBlank = true; + while (client.connected()) { + if (client.available()) { + char c = client.read(); + // if you've gotten to the end of the line (received a newline + // character) and the line is blank, the http request has ended, + // so you can send a reply + if (c == '\n' && currentLineIsBlank) { + // send a standard http response header + client.println("HTTP/1.1 200 OK"); + client.println("Content-Type: text/html"); + client.println(); + // print the current readings, in HTML format: + client.print("Temperature: "); + client.print(temperature); + client.print(" degrees C"); + client.println("
"); + client.print("Pressure: " + String(pressure)); + client.print(" Pa"); + client.println("
"); + break; + } + if (c == '\n') { + // you're starting a new line + currentLineIsBlank = true; + } + else if (c != '\r') { + // you've gotten a character on the current line + currentLineIsBlank = false; + } + } + } + // give the web browser time to receive the data + delay(1); + // close the connection: + client.stop(); + } +} + + +//Send a write command to SCP1000 +void writeRegister(byte registerName, byte registerValue) { + // SCP1000 expects the register name in the upper 6 bits + // of the byte: + registerName <<= 2; + // command (read or write) goes in the lower two bits: + registerName |= 0b00000010; //Write command + + // take the chip select low to select the device: + digitalWrite(chipSelectPin, LOW); + + SPI.transfer(registerName); //Send register location + SPI.transfer(registerValue); //Send value to record into register + + // take the chip select high to de-select: + digitalWrite(chipSelectPin, HIGH); +} + + +//Read register from the SCP1000: +unsigned int readRegister(byte registerName, int numBytes) { + byte inByte = 0; // incoming from the SPI read + unsigned int result = 0; // result to return + + // SCP1000 expects the register name in the upper 6 bits + // of the byte: + registerName <<= 2; + // command (read or write) goes in the lower two bits: + registerName &= 0b11111100; //Read command + + // take the chip select low to select the device: + digitalWrite(chipSelectPin, LOW); + // send the device the register you want to read: + int command = SPI.transfer(registerName); + // send a value of 0 to read the first byte returned: + inByte = SPI.transfer(0x00); + + result = inByte; + // if there's more than one byte returned, + // shift the first byte then get the second byte: + if (numBytes > 1){ + result = inByte << 8; + inByte = SPI.transfer(0x00); + result = result |inByte; + } + // take the chip select high to de-select: + digitalWrite(chipSelectPin, HIGH); + // return the result: + return(result); +} diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/ChatServer/ChatServer.ino b/hardware/arduino/sam/libraries/Ethernet/examples/ChatServer/ChatServer.ino new file mode 100644 index 000000000..d50e5a657 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/ChatServer/ChatServer.ino @@ -0,0 +1,79 @@ +/* + Chat Server + + A simple server that distributes any incoming messages to all + connected clients. To use telnet to your device's IP address and type. + You can see the client's input in the serial monitor as well. + Using an Arduino Wiznet Ethernet shield. + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + * Analog inputs attached to pins A0 through A5 (optional) + + created 18 Dec 2009 + by David A. Mellis + modified 9 Apr 2012 + by Tom Igoe + + */ + +#include +#include + +// Enter a MAC address and IP address for your controller below. +// The IP address will be dependent on your local network. +// gateway and subnet are optional: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +IPAddress ip(192,168,1, 177); +IPAddress gateway(192,168,1, 1); +IPAddress subnet(255, 255, 0, 0); + + +// telnet defaults to port 23 +EthernetServer server(23); +boolean alreadyConnected = false; // whether or not the client was connected previously + +void setup() { + // initialize the ethernet device + Ethernet.begin(mac, ip, gateway, subnet); + // start listening for clients + server.begin(); + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + Serial.print("Chat server address:"); + Serial.println(Ethernet.localIP()); +} + +void loop() { + // wait for a new client: + EthernetClient client = server.available(); + + // when the client sends the first byte, say hello: + if (client) { + if (!alreadyConnected) { + // clead out the input buffer: + client.flush(); + Serial.println("We have a new client"); + client.println("Hello, client!"); + alreadyConnected = true; + } + + if (client.available() > 0) { + // read the bytes incoming from the client: + char thisChar = client.read(); + // echo the bytes back to the client: + server.write(thisChar); + // echo the bytes to the server as well: + Serial.write(thisChar); + } + } +} + + + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/CosmClient/CosmClient.ino b/hardware/arduino/sam/libraries/Ethernet/examples/CosmClient/CosmClient.ino new file mode 100644 index 000000000..22815afb8 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/CosmClient/CosmClient.ino @@ -0,0 +1,159 @@ +/* + Cosm sensor client + + This sketch connects an analog sensor to Cosm (http://www.cosm.com) + using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or + the Adafruit Ethernet shield, either one will work, as long as it's got + a Wiznet Ethernet module on board. + + This example has been updated to use version 2.0 of the cosm.com API. + To make it work, create a feed with a datastream, and give it the ID + sensor1. Or change the code below to match your feed. + + + Circuit: + * Analog sensor attached to analog in 0 + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 15 March 2010 + updated 14 May 2012 + by Tom Igoe with input from Usman Haque and Joe Saavedra + +http://arduino.cc/en/Tutorial/CosmClient + This code is in the public domain. + + */ + +#include +#include + +#define APIKEY "YOUR API KEY GOES HERE" // replace your Cosm api key here +#define FEEDID 00000 // replace your feed ID +#define USERAGENT "My Project" // user agent is the project name + +// assign a MAC address for the ethernet controller. +// Newer Ethernet shields have a MAC address printed on a sticker on the shield +// fill in your address here: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; + +// fill in an available IP address on your network here, +// for manual configuration: +IPAddress ip(10,0,1,20); + +// initialize the library instance: +EthernetClient client; + +// if you don't want to use DNS (and reduce your sketch size) +// use the numeric IP instead of the name for the server: +//IPAddress server(216,52,233,121); // numeric IP for api.cosm.com +char server[] = "api.cosm.com"; // name address for cosm API + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10*1000; //delay between updates to cosm.com + +void setup() { + // start serial port: + Serial.begin(9600); + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // DHCP failed, so use a fixed IP address: + Ethernet.begin(mac, ip); + } +} + +void loop() { + // read the analog sensor: + int sensorReading = analogRead(A0); + + // if there's incoming data from the net connection. + // send it out the serial port. This is for debugging + // purposes only: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if there's no net connection, but there was one last time + // through the loop, then stop the client: + if (!client.connected() && lastConnected) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + + // if you're not connected, and ten seconds have passed since + // your last connection, then connect again and send data: + if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + sendData(sensorReading); + } + // store the state of the connection for next time through + // the loop: + lastConnected = client.connected(); +} + +// this method makes a HTTP connection to the server: +void sendData(int thisData) { + // if there's a successful connection: + if (client.connect(server, 80)) { + Serial.println("connecting..."); + // send the HTTP PUT request: + client.print("PUT /v2/feeds/"); + client.print(FEEDID); + client.println(".csv HTTP/1.1"); + client.println("Host: api.cosm.com"); + client.print("X-ApiKey: "); + client.println(APIKEY); + client.print("User-Agent: "); + client.println(USERAGENT); + client.print("Content-Length: "); + + // calculate the length of the sensor reading in bytes: + // 8 bytes for "sensor1," + number of digits of the data: + int thisLength = 8 + getLength(thisData); + client.println(thisLength); + + // last pieces of the HTTP PUT request: + client.println("Content-Type: text/csv"); + client.println("Connection: close"); + client.println(); + + // here's the actual content of the PUT request: + client.print("sensor1,"); + client.println(thisData); + + } + else { + // if you couldn't make a connection: + Serial.println("connection failed"); + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + // note the time that the connection was made or attempted: + lastConnectionTime = millis(); +} + + +// This method calculates the number of digits in the +// sensor reading. Since each digit of the ASCII decimal +// representation is a byte, the number of digits equals +// the number of bytes: + +int getLength(int someValue) { + // there's at least one byte: + int digits = 1; + // continually divide the value by ten, + // adding one to the digit count for each + // time you divide, until you're at 0: + int dividend = someValue /10; + while (dividend > 0) { + dividend = dividend /10; + digits++; + } + // return the number of digits: + return digits; +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino b/hardware/arduino/sam/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino new file mode 100644 index 000000000..05b549b10 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/CosmClientString/CosmClientString.ino @@ -0,0 +1,146 @@ +/* + Cosm sensor client with Strings + + This sketch connects an analog sensor to Cosm (http://www.cosm.com) + using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or + the Adafruit Ethernet shield, either one will work, as long as it's got + a Wiznet Ethernet module on board. + + This example has been updated to use version 2.0 of the Cosm.com API. + To make it work, create a feed with two datastreams, and give them the IDs + sensor1 and sensor2. Or change the code below to match your feed. + + This example uses the String library, which is part of the Arduino core from + version 0019. + + Circuit: + * Analog sensor attached to analog in 0 + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 15 March 2010 + updated 14 May 2012 + by Tom Igoe with input from Usman Haque and Joe Saavedra + + http://arduino.cc/en/Tutorial/CosmClientString + This code is in the public domain. + + */ + +#include +#include + + +#define APIKEY "YOUR API KEY GOES HERE" // replace your Cosm api key here +#define FEEDID 00000 // replace your feed ID +#define USERAGENT "My Project" // user agent is the project name + +// assign a MAC address for the ethernet controller. +// fill in your address here: + byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; + +// fill in an available IP address on your network here, +// for manual configuration: +IPAddress ip(10,0,1,20); + +// initialize the library instance: +EthernetClient client; + +// if you don't want to use DNS (and reduce your sketch size) +// use the numeric IP instead of the name for the server: +//IPAddress server(216,52,233,121); // numeric IP for api.cosm.com +char server[] = "api.cosm.com"; // name address for Cosm API + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10*1000; //delay between updates to Cosm.com + +void setup() { + // start serial port: + Serial.begin(9600); + // give the ethernet module time to boot up: + delay(1000); + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // DHCP failed, so use a fixed IP address: + Ethernet.begin(mac, ip); + } +} + +void loop() { + // read the analog sensor: + int sensorReading = analogRead(A0); + // convert the data to a String to send it: + + String dataString = "sensor1,"; + dataString += sensorReading; + + // you can append multiple readings to this String if your + // Cosm feed is set up to handle multiple values: + int otherSensorReading = analogRead(A1); + dataString += "\nsensor2,"; + dataString += otherSensorReading; + + // if there's incoming data from the net connection. + // send it out the serial port. This is for debugging + // purposes only: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if there's no net connection, but there was one last time + // through the loop, then stop the client: + if (!client.connected() && lastConnected) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + + // if you're not connected, and ten seconds have passed since + // your last connection, then connect again and send data: + if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + sendData(dataString); + } + // store the state of the connection for next time through + // the loop: + lastConnected = client.connected(); +} + +// this method makes a HTTP connection to the server: +void sendData(String thisData) { + // if there's a successful connection: + if (client.connect(server, 80)) { + Serial.println("connecting..."); + // send the HTTP PUT request: + client.print("PUT /v2/feeds/"); + client.print(FEEDID); + client.println(".csv HTTP/1.1"); + client.println("Host: api.cosm.com"); + client.print("X-ApiKey: "); + client.println(APIKEY); + client.print("User-Agent: "); + client.println(USERAGENT); + client.print("Content-Length: "); + client.println(thisData.length()); + + // last pieces of the HTTP PUT request: + client.println("Content-Type: text/csv"); + client.println("Connection: close"); + client.println(); + + // here's the actual content of the PUT request: + client.println(thisData); + } + else { + // if you couldn't make a connection: + Serial.println("connection failed"); + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + // note the time that the connection was made or attempted: + lastConnectionTime = millis(); +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino b/hardware/arduino/sam/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino new file mode 100644 index 000000000..5eaaf24d1 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino @@ -0,0 +1,59 @@ +/* + DHCP-based IP printer + + This sketch uses the DHCP extensions to the Ethernet library + to get an IP address via DHCP and print the address obtained. + using an Arduino Wiznet Ethernet shield. + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 12 April 2011 + modified 9 Apr 2012 + by Tom Igoe + + */ + +#include +#include + +// Enter a MAC address for your controller below. +// Newer Ethernet shields have a MAC address printed on a sticker on the shield +byte mac[] = { + 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 }; + +// Initialize the Ethernet client library +// with the IP address and port of the server +// that you want to connect to (port 80 is default for HTTP): +EthernetClient client; + +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + // this check is only needed on the Leonardo: + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // no point in carrying on, so do nothing forevermore: + for(;;) + ; + } + // print your local IP address: + Serial.print("My IP address: "); + for (byte thisByte = 0; thisByte < 4; thisByte++) { + // print the value of each byte of the IP address: + Serial.print(Ethernet.localIP()[thisByte], DEC); + Serial.print("."); + } + Serial.println(); +} + +void loop() { + +} + + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino b/hardware/arduino/sam/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino new file mode 100644 index 000000000..09cbd4354 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino @@ -0,0 +1,87 @@ +/* + DHCP Chat Server + + A simple server that distributes any incoming messages to all + connected clients. To use telnet to your device's IP address and type. + You can see the client's input in the serial monitor as well. + Using an Arduino Wiznet Ethernet shield. + + THis version attempts to get an IP address using DHCP + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 21 May 2011 + modified 9 Apr 2012 + by Tom Igoe + Based on ChatServer example by David A. Mellis + + */ + +#include +#include + +// Enter a MAC address and IP address for your controller below. +// The IP address will be dependent on your local network. +// gateway and subnet are optional: +byte mac[] = { + 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 }; +IPAddress ip(192,168,1, 177); +IPAddress gateway(192,168,1, 1); +IPAddress subnet(255, 255, 0, 0); + +// telnet defaults to port 23 +EthernetServer server(23); +boolean gotAMessage = false; // whether or not you got a message from the client yet + +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + // this check is only needed on the Leonardo: + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + // start the Ethernet connection: + Serial.println("Trying to get an IP address using DHCP"); + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // initialize the ethernet device not using DHCP: + Ethernet.begin(mac, ip, gateway, subnet); + } + // print your local IP address: + Serial.print("My IP address: "); + ip = Ethernet.localIP(); + for (byte thisByte = 0; thisByte < 4; thisByte++) { + // print the value of each byte of the IP address: + Serial.print(ip[thisByte], DEC); + Serial.print("."); + } + Serial.println(); + // start listening for clients + server.begin(); + +} + +void loop() { + // wait for a new client: + EthernetClient client = server.available(); + + // when the client sends the first byte, say hello: + if (client) { + if (!gotAMessage) { + Serial.println("We have a new client"); + client.println("Hello, client!"); + gotAMessage = true; + } + + // read the bytes incoming from the client: + char thisChar = client.read(); + // echo the bytes back to the client: + server.write(thisChar); + // echo the bytes to the server as well: + Serial.print(thisChar); + } +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/DnsWebClient/DnsWebClient.ino b/hardware/arduino/sam/libraries/Ethernet/examples/DnsWebClient/DnsWebClient.ino new file mode 100644 index 000000000..c14abf403 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/DnsWebClient/DnsWebClient.ino @@ -0,0 +1,81 @@ +/* + DNS and DHCP-based Web client + + This sketch connects to a website (http://www.google.com) + using an Arduino Wiznet Ethernet shield. + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 18 Dec 2009 + by David A. Mellis + modified 9 Apr 2012 + by Tom Igoe, based on work by Adrian McEwen + + */ + +#include +#include + +// Enter a MAC address for your controller below. +// Newer Ethernet shields have a MAC address printed on a sticker on the shield +byte mac[] = { 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 }; +char serverName[] = "www.google.com"; + +// Initialize the Ethernet client library +// with the IP address and port of the server +// that you want to connect to (port 80 is default for HTTP): +EthernetClient client; + +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // no point in carrying on, so do nothing forevermore: + while(true); + } + // give the Ethernet shield a second to initialize: + delay(1000); + Serial.println("connecting..."); + + // if you get a connection, report back via serial: + + if (client.connect(serverName, 80)) { + Serial.println("connected"); + // Make a HTTP request: + client.println("GET /search?q=arduino HTTP/1.0"); + client.println(); + } + else { + // kf you didn't get a connection to the server: + Serial.println("connection failed"); + } +} + +void loop() +{ + // if there are incoming bytes available + // from the server, read them and print them: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if the server's disconnected, stop the client: + if (!client.connected()) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + + // do nothing forevermore: + while(true); + } +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/PachubeClient/PachubeClient.ino b/hardware/arduino/sam/libraries/Ethernet/examples/PachubeClient/PachubeClient.ino new file mode 100644 index 000000000..dfd2d4010 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/PachubeClient/PachubeClient.ino @@ -0,0 +1,163 @@ +/* + Pachube sensor client + + This sketch connects an analog sensor to Pachube (http://www.pachube.com) + using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or + the Adafruit Ethernet shield, either one will work, as long as it's got + a Wiznet Ethernet module on board. + + This example has been updated to use version 2.0 of the Pachube.com API. + To make it work, create a feed with a datastream, and give it the ID + sensor1. Or change the code below to match your feed. + + + Circuit: + * Analog sensor attached to analog in 0 + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 15 March 2010 + modified 9 Apr 2012 + by Tom Igoe with input from Usman Haque and Joe Saavedra + +http://arduino.cc/en/Tutorial/PachubeClient + This code is in the public domain. + + */ + +#include +#include + +#define APIKEY "YOUR API KEY GOES HERE" // replace your pachube api key here +#define FEEDID 00000 // replace your feed ID +#define USERAGENT "My Project" // user agent is the project name + +// assign a MAC address for the ethernet controller. +// Newer Ethernet shields have a MAC address printed on a sticker on the shield +// fill in your address here: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; + +// fill in an available IP address on your network here, +// for manual configuration: +IPAddress ip(10,0,1,20); +// initialize the library instance: +EthernetClient client; + +// if you don't want to use DNS (and reduce your sketch size) +// use the numeric IP instead of the name for the server: +IPAddress server(216,52,233,122); // numeric IP for api.pachube.com +//char server[] = "api.pachube.com"; // name address for pachube API + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10*1000; //delay between updates to Pachube.com + +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // DHCP failed, so use a fixed IP address: + Ethernet.begin(mac, ip); + } +} + +void loop() { + // read the analog sensor: + int sensorReading = analogRead(A0); + + // if there's incoming data from the net connection. + // send it out the serial port. This is for debugging + // purposes only: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if there's no net connection, but there was one last time + // through the loop, then stop the client: + if (!client.connected() && lastConnected) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + + // if you're not connected, and ten seconds have passed since + // your last connection, then connect again and send data: + if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + sendData(sensorReading); + } + // store the state of the connection for next time through + // the loop: + lastConnected = client.connected(); +} + +// this method makes a HTTP connection to the server: +void sendData(int thisData) { + // if there's a successful connection: + if (client.connect(server, 80)) { + Serial.println("connecting..."); + // send the HTTP PUT request: + client.print("PUT /v2/feeds/"); + client.print(FEEDID); + client.println(".csv HTTP/1.1"); + client.println("Host: api.pachube.com"); + client.print("X-PachubeApiKey: "); + client.println(APIKEY); + client.print("User-Agent: "); + client.println(USERAGENT); + client.print("Content-Length: "); + + // calculate the length of the sensor reading in bytes: + // 8 bytes for "sensor1," + number of digits of the data: + int thisLength = 8 + getLength(thisData); + client.println(thisLength); + + // last pieces of the HTTP PUT request: + client.println("Content-Type: text/csv"); + client.println("Connection: close"); + client.println(); + + // here's the actual content of the PUT request: + client.print("sensor1,"); + client.println(thisData); + + } + else { + // if you couldn't make a connection: + Serial.println("connection failed"); + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + // note the time that the connection was made or attempted: + lastConnectionTime = millis(); +} + + +// This method calculates the number of digits in the +// sensor reading. Since each digit of the ASCII decimal +// representation is a byte, the number of digits equals +// the number of bytes: + +int getLength(int someValue) { + // there's at least one byte: + int digits = 1; + // continually divide the value by ten, + // adding one to the digit count for each + // time you divide, until you're at 0: + int dividend = someValue /10; + while (dividend > 0) { + dividend = dividend /10; + digits++; + } + // return the number of digits: + return digits; +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino b/hardware/arduino/sam/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino new file mode 100644 index 000000000..2a96e9f86 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/PachubeClientString/PachubeClientString.ino @@ -0,0 +1,152 @@ +/* + Cosm sensor client with Strings + + This sketch connects an analog sensor to Cosm (http://www.cosm.com) + using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or + the Adafruit Ethernet shield, either one will work, as long as it's got + a Wiznet Ethernet module on board. + + This example has been updated to use version 2.0 of the Cosm.com API. + To make it work, create a feed with two datastreams, and give them the IDs + sensor1 and sensor2. Or change the code below to match your feed. + + This example uses the String library, which is part of the Arduino core from + version 0019. + + Circuit: + * Analog sensor attached to analog in 0 + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 15 March 2010 + modified 9 Apr 2012 + by Tom Igoe with input from Usman Haque and Joe Saavedra + + http://arduino.cc/en/Tutorial/CosmClientString + This code is in the public domain. + + */ + +#include +#include + + +/#define APIKEY "YOUR API KEY GOES HERE" // replace your Cosm api key here +#define FEEDID 00000 // replace your feed ID +#define USERAGENT "My Project" // user agent is the project name + + +// assign a MAC address for the ethernet controller. +// fill in your address here: + byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; + +// fill in an available IP address on your network here, +// for manual configuration: +IPAddress ip(10,0,1,20); + +// initialize the library instance: +EthernetClient client; + +// if you don't want to use DNS (and reduce your sketch size) +// use the numeric IP instead of the name for the server: +IPAddress server(216,52,233,121); // numeric IP for api.cosm.com +//char server[] = "api.cosm.com"; // name address for Cosm API + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 10*1000; //delay between updates to Cosm.com + +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + // give the ethernet module time to boot up: + delay(1000); + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // DHCP failed, so use a fixed IP address: + Ethernet.begin(mac, ip); + } +} + +void loop() { + // read the analog sensor: + int sensorReading = analogRead(A0); + // convert the data to a String to send it: + + String dataString = "sensor1,"; + dataString += sensorReading; + + // you can append multiple readings to this String if your + // Cosm feed is set up to handle multiple values: + int otherSensorReading = analogRead(A1); + dataString += "\nsensor2,"; + dataString += otherSensorReading; + + // if there's incoming data from the net connection. + // send it out the serial port. This is for debugging + // purposes only: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if there's no net connection, but there was one last time + // through the loop, then stop the client: + if (!client.connected() && lastConnected) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + + // if you're not connected, and ten seconds have passed since + // your last connection, then connect again and send data: + if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + sendData(dataString); + } + // store the state of the connection for next time through + // the loop: + lastConnected = client.connected(); +} + +// this method makes a HTTP connection to the server: +void sendData(String thisData) { + // if there's a successful connection: + if (client.connect(server, 80)) { + Serial.println("connecting..."); + // send the HTTP PUT request: + client.print("PUT /v2/feeds/"); + client.print(FEEDID); + client.println(".csv HTTP/1.1"); + client.println("Host: api.cosm.com"); + client.print("X-CosmApiKey: "); + client.println(APIKEY); + client.print("User-Agent: "); + client.println(USERAGENT); + client.print("Content-Length: "); + client.println(thisData.length()); + + // last pieces of the HTTP PUT request: + client.println("Content-Type: text/csv"); + client.println("Connection: close"); + client.println(); + + // here's the actual content of the PUT request: + client.println(thisData); + } + else { + // if you couldn't make a connection: + Serial.println("connection failed"); + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + // note the time that the connection was made or attempted: + lastConnectionTime = millis(); +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino b/hardware/arduino/sam/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino new file mode 100644 index 000000000..345712564 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino @@ -0,0 +1,93 @@ +/* + Telnet client + + This sketch connects to a a telnet server (http://www.google.com) + using an Arduino Wiznet Ethernet shield. You'll need a telnet server + to test this with. + Processing's ChatServer example (part of the network library) works well, + running on port 10002. It can be found as part of the examples + in the Processing application, available at + http://processing.org/ + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 14 Sep 2010 + modified 9 Apr 2012 + by Tom Igoe + + */ + +#include +#include + +// Enter a MAC address and IP address for your controller below. +// The IP address will be dependent on your local network: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +IPAddress ip(192,168,1,177); + +// Enter the IP address of the server you're connecting to: +IPAddress server(1,1,1,1); + +// Initialize the Ethernet client library +// with the IP address and port of the server +// that you want to connect to (port 23 is default for telnet; +// if you're using Processing's ChatServer, use port 10002): +EthernetClient client; + +void setup() { + // start the Ethernet connection: + Ethernet.begin(mac, ip); + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + // give the Ethernet shield a second to initialize: + delay(1000); + Serial.println("connecting..."); + + // if you get a connection, report back via serial: + if (client.connect(server, 10002)) { + Serial.println("connected"); + } + else { + // if you didn't get a connection to the server: + Serial.println("connection failed"); + } +} + +void loop() +{ + // if there are incoming bytes available + // from the server, read them and print them: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // as long as there are bytes in the serial queue, + // read them and send them out the socket if it's open: + while (Serial.available() > 0) { + char inChar = Serial.read(); + if (client.connected()) { + client.print(inChar); + } + } + + // if the server's disconnected, stop the client: + if (!client.connected()) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + // do nothing: + while(true); + } +} + + + + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/TwitterClient/TwitterClient.ino b/hardware/arduino/sam/libraries/Ethernet/examples/TwitterClient/TwitterClient.ino new file mode 100644 index 000000000..3587d72d3 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/TwitterClient/TwitterClient.ino @@ -0,0 +1,135 @@ +/* + Twitter Client with Strings + + This sketch connects to Twitter using an Ethernet shield. It parses the XML + returned, and looks for this is a tweet + + You can use the Arduino Ethernet shield, or the Adafruit Ethernet shield, + either one will work, as long as it's got a Wiznet Ethernet module on board. + + This example uses the DHCP routines in the Ethernet library which is part of the + Arduino core from version 1.0 beta 1 + + This example uses the String library, which is part of the Arduino core from + version 0019. + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 21 May 2011 + modified 9 Apr 2012 + by Tom Igoe + + This code is in the public domain. + + */ +#include +#include + + +// Enter a MAC address and IP address for your controller below. +// The IP address will be dependent on your local network: +byte mac[] = { + 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x01 }; +IPAddress ip(192,168,1,20); + +// initialize the library instance: +EthernetClient client; + +const unsigned long requestInterval = 60000; // delay between requests + +char serverName[] = "api.twitter.com"; // twitter URL + +boolean requested; // whether you've made a request since connecting +unsigned long lastAttemptTime = 0; // last time you connected to the server, in milliseconds + +String currentLine = ""; // string to hold the text from server +String tweet = ""; // string to hold the tweet +boolean readingTweet = false; // if you're currently reading the tweet + +void setup() { + // reserve space for the strings: + currentLine.reserve(256); + tweet.reserve(150); + + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + // attempt a DHCP connection: + Serial.println("Attempting to get an IP address using DHCP:"); + if (!Ethernet.begin(mac)) { + // if DHCP fails, start with a hard-coded address: + Serial.println("failed to get an IP address using DHCP, trying manually"); + Ethernet.begin(mac, ip); + } + Serial.print("My address:"); + Serial.println(Ethernet.localIP()); + // connect to Twitter: + connectToServer(); +} + + + +void loop() +{ + if (client.connected()) { + if (client.available()) { + // read incoming bytes: + char inChar = client.read(); + + // add incoming byte to end of line: + currentLine += inChar; + + // if you get a newline, clear the line: + if (inChar == '\n') { + currentLine = ""; + } + // if the current line ends with , it will + // be followed by the tweet: + if ( currentLine.endsWith("")) { + // tweet is beginning. Clear the tweet string: + readingTweet = true; + tweet = ""; + } + // if you're currently reading the bytes of a tweet, + // add them to the tweet String: + if (readingTweet) { + if (inChar != '<') { + tweet += inChar; + } + else { + // if you got a "<" character, + // you've reached the end of the tweet: + readingTweet = false; + Serial.println(tweet); + // close the connection to the server: + client.stop(); + } + } + } + } + else if (millis() - lastAttemptTime > requestInterval) { + // if you're not connected, and two minutes have passed since + // your last connection, then attempt to connect again: + connectToServer(); + } +} + +void connectToServer() { + // attempt to connect, and wait a millisecond: + Serial.println("connecting to server..."); + if (client.connect(serverName, 80)) { + Serial.println("making HTTP request..."); + // make HTTP GET request to twitter: + client.println("GET /1/statuses/user_timeline.xml?screen_name=arduino&count=1 HTTP/1.1"); + client.println("HOST: api.twitter.com"); + client.println(); + } + // note the time of this connect attempt: + lastAttemptTime = millis(); +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/UDPSendReceiveString/UDPSendReceiveString.ino b/hardware/arduino/sam/libraries/Ethernet/examples/UDPSendReceiveString/UDPSendReceiveString.ino new file mode 100644 index 000000000..4d4045cac --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/UDPSendReceiveString/UDPSendReceiveString.ino @@ -0,0 +1,118 @@ +/* + UDPSendReceive.pde: + This sketch receives UDP message strings, prints them to the serial port + and sends an "acknowledge" string back to the sender + + A Processing sketch is included at the end of file that can be used to send + and received messages for testing with a computer. + + created 21 Aug 2010 + by Michael Margolis + + This code is in the public domain. + */ + + +#include // needed for Arduino versions later than 0018 +#include +#include // UDP library from: bjoern@cs.stanford.edu 12/30/2008 + + +// Enter a MAC address and IP address for your controller below. +// The IP address will be dependent on your local network: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +IPAddress ip(192, 168, 1, 177); + +unsigned int localPort = 8888; // local port to listen on + +// buffers for receiving and sending data +char packetBuffer[UDP_TX_PACKET_MAX_SIZE]; //buffer to hold incoming packet, +char ReplyBuffer[] = "acknowledged"; // a string to send back + +// An EthernetUDP instance to let us send and receive packets over UDP +EthernetUDP Udp; + +void setup() { + // start the Ethernet and UDP: + Ethernet.begin(mac,ip); + Udp.begin(localPort); + + Serial.begin(9600); +} + +void loop() { + // if there's data available, read a packet + int packetSize = Udp.parsePacket(); + if(packetSize) + { + Serial.print("Received packet of size "); + Serial.println(packetSize); + Serial.print("From "); + IPAddress remote = Udp.remoteIP(); + for (int i =0; i < 4; i++) + { + Serial.print(remote[i], DEC); + if (i < 3) + { + Serial.print("."); + } + } + Serial.print(", port "); + Serial.println(Udp.remotePort()); + + // read the packet into packetBufffer + Udp.read(packetBuffer,UDP_TX_PACKET_MAX_SIZE); + Serial.println("Contents:"); + Serial.println(packetBuffer); + + // send a reply, to the IP address and port that sent us the packet we received + Udp.beginPacket(Udp.remoteIP(), Udp.remotePort()); + Udp.write(ReplyBuffer); + Udp.endPacket(); + } + delay(10); +} + + +/* + Processing sketch to run with this example + ===================================================== + + // Processing UDP example to send and receive string data from Arduino + // press any key to send the "Hello Arduino" message + + + import hypermedia.net.*; + + UDP udp; // define the UDP object + + + void setup() { + udp = new UDP( this, 6000 ); // create a new datagram connection on port 6000 + //udp.log( true ); // <-- printout the connection activity + udp.listen( true ); // and wait for incoming message + } + + void draw() + { + } + + void keyPressed() { + String ip = "192.168.1.177"; // the remote IP address + int port = 8888; // the destination port + + udp.send("Hello World", ip, port ); // the message to send + + } + + void receive( byte[] data ) { // <-- default handler + //void receive( byte[] data, String ip, int port ) { // <-- extended handler + + for(int i=0; i < data.length; i++) + print(char(data[i])); + println(); + } + */ + + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino b/hardware/arduino/sam/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino new file mode 100644 index 000000000..93ffe3991 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino @@ -0,0 +1,141 @@ +/* + + Udp NTP Client + + Get the time from a Network Time Protocol (NTP) time server + Demonstrates use of UDP sendPacket and ReceivePacket + For more on NTP time servers and the messages needed to communicate with them, + see http://en.wikipedia.org/wiki/Network_Time_Protocol + + created 4 Sep 2010 + by Michael Margolis + modified 9 Apr 2012 + by Tom Igoe + + This code is in the public domain. + + */ + +#include +#include +#include + +// Enter a MAC address for your controller below. +// Newer Ethernet shields have a MAC address printed on a sticker on the shield +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; + +unsigned int localPort = 8888; // local port to listen for UDP packets + +IPAddress timeServer(192, 43, 244, 18); // time.nist.gov NTP server + +const int NTP_PACKET_SIZE= 48; // NTP time stamp is in the first 48 bytes of the message + +byte packetBuffer[ NTP_PACKET_SIZE]; //buffer to hold incoming and outgoing packets + +// A UDP instance to let us send and receive packets over UDP +EthernetUDP Udp; + +void setup() +{ + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + // start Ethernet and UDP + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // no point in carrying on, so do nothing forevermore: + for(;;) + ; + } + Udp.begin(localPort); +} + +void loop() +{ + sendNTPpacket(timeServer); // send an NTP packet to a time server + + // wait to see if a reply is available + delay(1000); + if ( Udp.parsePacket() ) { + // We've received a packet, read the data from it + Udp.read(packetBuffer,NTP_PACKET_SIZE); // read the packet into the buffer + + //the timestamp starts at byte 40 of the received packet and is four bytes, + // or two words, long. First, esxtract the two words: + + unsigned long highWord = word(packetBuffer[40], packetBuffer[41]); + unsigned long lowWord = word(packetBuffer[42], packetBuffer[43]); + // combine the four bytes (two words) into a long integer + // this is NTP time (seconds since Jan 1 1900): + unsigned long secsSince1900 = highWord << 16 | lowWord; + Serial.print("Seconds since Jan 1 1900 = " ); + Serial.println(secsSince1900); + + // now convert NTP time into everyday time: + Serial.print("Unix time = "); + // Unix time starts on Jan 1 1970. In seconds, that's 2208988800: + const unsigned long seventyYears = 2208988800UL; + // subtract seventy years: + unsigned long epoch = secsSince1900 - seventyYears; + // print Unix time: + Serial.println(epoch); + + + // print the hour, minute and second: + Serial.print("The UTC time is "); // UTC is the time at Greenwich Meridian (GMT) + Serial.print((epoch % 86400L) / 3600); // print the hour (86400 equals secs per day) + Serial.print(':'); + if ( ((epoch % 3600) / 60) < 10 ) { + // In the first 10 minutes of each hour, we'll want a leading '0' + Serial.print('0'); + } + Serial.print((epoch % 3600) / 60); // print the minute (3600 equals secs per minute) + Serial.print(':'); + if ( (epoch % 60) < 10 ) { + // In the first 10 seconds of each minute, we'll want a leading '0' + Serial.print('0'); + } + Serial.println(epoch %60); // print the second + } + // wait ten seconds before asking for the time again + delay(10000); +} + +// send an NTP request to the time server at the given address +unsigned long sendNTPpacket(IPAddress& address) +{ + // set all bytes in the buffer to 0 + memset(packetBuffer, 0, NTP_PACKET_SIZE); + // Initialize values needed to form NTP request + // (see URL above for details on the packets) + packetBuffer[0] = 0b11100011; // LI, Version, Mode + packetBuffer[1] = 0; // Stratum, or type of clock + packetBuffer[2] = 6; // Polling Interval + packetBuffer[3] = 0xEC; // Peer Clock Precision + // 8 bytes of zero for Root Delay & Root Dispersion + packetBuffer[12] = 49; + packetBuffer[13] = 0x4E; + packetBuffer[14] = 49; + packetBuffer[15] = 52; + + // all NTP fields have been given values, now + // you can send a packet requesting a timestamp: + Udp.beginPacket(address, 123); //NTP requests are to port 123 + Udp.write(packetBuffer,NTP_PACKET_SIZE); + Udp.endPacket(); +} + + + + + + + + + + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/WebClient/WebClient.ino b/hardware/arduino/sam/libraries/Ethernet/examples/WebClient/WebClient.ino new file mode 100644 index 000000000..5d5d7f20b --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/WebClient/WebClient.ino @@ -0,0 +1,80 @@ +/* + Web client + + This sketch connects to a website (http://www.google.com) + using an Arduino Wiznet Ethernet shield. + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 18 Dec 2009 + modified 9 Apr 2012 + by David A. Mellis + + */ + +#include +#include + +// Enter a MAC address for your controller below. +// Newer Ethernet shields have a MAC address printed on a sticker on the shield +byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +IPAddress server(173,194,33,104); // Google + +// Initialize the Ethernet client library +// with the IP address and port of the server +// that you want to connect to (port 80 is default for HTTP): +EthernetClient client; + +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + // start the Ethernet connection: + if (Ethernet.begin(mac) == 0) { + Serial.println("Failed to configure Ethernet using DHCP"); + // no point in carrying on, so do nothing forevermore: + for(;;) + ; + } + // give the Ethernet shield a second to initialize: + delay(1000); + Serial.println("connecting..."); + + // if you get a connection, report back via serial: + if (client.connect(server, 80)) { + Serial.println("connected"); + // Make a HTTP request: + client.println("GET /search?q=arduino HTTP/1.0"); + client.println(); + } + else { + // kf you didn't get a connection to the server: + Serial.println("connection failed"); + } +} + +void loop() +{ + // if there are incoming bytes available + // from the server, read them and print them: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if the server's disconnected, stop the client: + if (!client.connected()) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + + // do nothing forevermore: + for(;;) + ; + } +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino b/hardware/arduino/sam/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino new file mode 100644 index 000000000..e0f06c439 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino @@ -0,0 +1,110 @@ +/* + Repeating Web client + + This sketch connects to a a web server and makes a request + using a Wiznet Ethernet shield. You can use the Arduino Ethernet shield, or + the Adafruit Ethernet shield, either one will work, as long as it's got + a Wiznet Ethernet module on board. + + This example uses DNS, by assigning the Ethernet client with a MAC address, + IP address, and DNS address. + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + + created 19 Apr 2012 + by Tom Igoe + + http://arduino.cc/en/Tutorial/WebClientRepeating + This code is in the public domain. + + */ + +#include +#include + +// assign a MAC address for the ethernet controller. +// fill in your address here: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; +// fill in an available IP address on your network here, +// for manual configuration: +IPAddress ip(10,0,0,20); + +// fill in your Domain Name Server address here: +IPAddress myDns(1,1,1,1); + +// initialize the library instance: +EthernetClient client; + +char server[] = "www.arduino.cc"; + +unsigned long lastConnectionTime = 0; // last time you connected to the server, in milliseconds +boolean lastConnected = false; // state of the connection last time through the main loop +const unsigned long postingInterval = 60*1000; // delay between updates, in milliseconds + +void setup() { + // start serial port: + Serial.begin(9600); + // give the ethernet module time to boot up: + delay(1000); + // start the Ethernet connection using a fixed IP address and DNS server: + Ethernet.begin(mac, ip, myDns); + // print the Ethernet board/shield's IP address: + Serial.print("My IP address: "); + Serial.println(Ethernet.localIP()); +} + +void loop() { + // if there's incoming data from the net connection. + // send it out the serial port. This is for debugging + // purposes only: + if (client.available()) { + char c = client.read(); + Serial.print(c); + } + + // if there's no net connection, but there was one last time + // through the loop, then stop the client: + if (!client.connected() && lastConnected) { + Serial.println(); + Serial.println("disconnecting."); + client.stop(); + } + + // if you're not connected, and ten seconds have passed since + // your last connection, then connect again and send data: + if(!client.connected() && (millis() - lastConnectionTime > postingInterval)) { + httpRequest(); + } + // store the state of the connection for next time through + // the loop: + lastConnected = client.connected(); +} + +// this method makes a HTTP connection to the server: +void httpRequest() { + // if there's a successful connection: + if (client.connect(server, 80)) { + Serial.println("connecting..."); + // send the HTTP PUT request: + client.println("GET /latest.txt HTTP/1.1"); + client.println("Host: www.arduino.cc"); + client.println("User-Agent: arduino-ethernet"); + client.println("Connection: close"); + client.println(); + + // note the time that the connection was made: + lastConnectionTime = millis(); + } + else { + // if you couldn't make a connection: + Serial.println("connection failed"); + Serial.println("disconnecting."); + client.stop(); + } +} + + + + diff --git a/hardware/arduino/sam/libraries/Ethernet/examples/WebServer/WebServer.ino b/hardware/arduino/sam/libraries/Ethernet/examples/WebServer/WebServer.ino new file mode 100644 index 000000000..ce8dbb1b0 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/examples/WebServer/WebServer.ino @@ -0,0 +1,101 @@ +/* + Web Server + + A simple web server that shows the value of the analog input pins. + using an Arduino Wiznet Ethernet shield. + + Circuit: + * Ethernet shield attached to pins 10, 11, 12, 13 + * Analog inputs attached to pins A0 through A5 (optional) + + created 18 Dec 2009 + by David A. Mellis + modified 9 Apr 2012 + by Tom Igoe + + */ + +#include +#include + +// Enter a MAC address and IP address for your controller below. +// The IP address will be dependent on your local network: +byte mac[] = { + 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; +IPAddress ip(192,168,1, 177); + +// Initialize the Ethernet server library +// with the IP address and port you want to use +// (port 80 is default for HTTP): +EthernetServer server(80); + +void setup() { + // Open serial communications and wait for port to open: + Serial.begin(9600); + while (!Serial) { + ; // wait for serial port to connect. Needed for Leonardo only + } + + + // start the Ethernet connection and the server: + Ethernet.begin(mac, ip); + server.begin(); + Serial.print("server is at "); + Serial.println(Ethernet.localIP()); +} + + +void loop() { + // listen for incoming clients + EthernetClient client = server.available(); + if (client) { + Serial.println("new client"); + // an http request ends with a blank line + boolean currentLineIsBlank = true; + while (client.connected()) { + if (client.available()) { + char c = client.read(); + Serial.write(c); + // if you've gotten to the end of the line (received a newline + // character) and the line is blank, the http request has ended, + // so you can send a reply + if (c == '\n' && currentLineIsBlank) { + // send a standard http response header + client.println("HTTP/1.1 200 OK"); + client.println("Content-Type: text/html"); + client.println("Connnection: close"); + client.println(); + client.println(""); + client.println(""); + // add a meta refresh tag, so the browser pulls again every 5 seconds: + client.println(""); + // output the value of each analog input pin + for (int analogChannel = 0; analogChannel < 6; analogChannel++) { + int sensorReading = analogRead(analogChannel); + client.print("analog input "); + client.print(analogChannel); + client.print(" is "); + client.print(sensorReading); + client.println("
"); + } + client.println(""); + break; + } + if (c == '\n') { + // you're starting a new line + currentLineIsBlank = true; + } + else if (c != '\r') { + // you've gotten a character on the current line + currentLineIsBlank = false; + } + } + } + // give the web browser time to receive the data + delay(1); + // close the connection: + client.stop(); + Serial.println("client disonnected"); + } +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/keywords.txt b/hardware/arduino/sam/libraries/Ethernet/keywords.txt new file mode 100644 index 000000000..6b37cbe05 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/keywords.txt @@ -0,0 +1,37 @@ +####################################### +# Syntax Coloring Map For Ethernet +####################################### + +####################################### +# Datatypes (KEYWORD1) +####################################### + +Ethernet KEYWORD1 +EthernetClient KEYWORD1 +EthernetServer KEYWORD1 +IPAddress KEYWORD1 + +####################################### +# Methods and Functions (KEYWORD2) +####################################### + +status KEYWORD2 +connect KEYWORD2 +write KEYWORD2 +available KEYWORD2 +read KEYWORD2 +peek KEYWORD2 +flush KEYWORD2 +stop KEYWORD2 +connected KEYWORD2 +begin KEYWORD2 +beginPacket KEYWORD2 +endPacket KEYWORD2 +parsePacket KEYWORD2 +remoteIP KEYWORD2 +remotePort KEYWORD2 + +####################################### +# Constants (LITERAL1) +####################################### + diff --git a/hardware/arduino/sam/libraries/Ethernet/util.h b/hardware/arduino/sam/libraries/Ethernet/util.h new file mode 100644 index 000000000..5042e82e3 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/util.h @@ -0,0 +1,13 @@ +#ifndef UTIL_H +#define UTIL_H + +#define htons(x) ( ((x)<<8) | (((x)>>8)&0xFF) ) +#define ntohs(x) htons(x) + +#define htonl(x) ( ((x)<<24 & 0xFF000000UL) | \ + ((x)<< 8 & 0x00FF0000UL) | \ + ((x)>> 8 & 0x0000FF00UL) | \ + ((x)>>24 & 0x000000FFUL) ) +#define ntohl(x) htonl(x) + +#endif diff --git a/hardware/arduino/sam/libraries/Ethernet/utility/socket.cpp b/hardware/arduino/sam/libraries/Ethernet/utility/socket.cpp new file mode 100644 index 000000000..00eabc8df --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/utility/socket.cpp @@ -0,0 +1,400 @@ +#include "w5100.h" +#include "socket.h" + +static uint16_t local_port; + +/** + * @brief This Socket function initialize the channel in perticular mode, and set the port and wait for W5100 done it. + * @return 1 for success else 0. + */ +uint8_t socket(SOCKET s, uint8_t protocol, uint16_t port, uint8_t flag) +{ + if ((protocol == SnMR::TCP) || (protocol == SnMR::UDP) || (protocol == SnMR::IPRAW) || (protocol == SnMR::MACRAW) || (protocol == SnMR::PPPOE)) + { + close(s); + W5100.writeSnMR(s, protocol | flag); + if (port != 0) { + W5100.writeSnPORT(s, port); + } + else { + local_port++; // if don't set the source port, set local_port number. + W5100.writeSnPORT(s, local_port); + } + + W5100.execCmdSn(s, Sock_OPEN); + + return 1; + } + + return 0; +} + + +/** + * @brief This function close the socket and parameter is "s" which represent the socket number + */ +void close(SOCKET s) +{ + W5100.execCmdSn(s, Sock_CLOSE); + W5100.writeSnIR(s, 0xFF); +} + + +/** + * @brief This function established the connection for the channel in passive (server) mode. This function waits for the request from the peer. + * @return 1 for success else 0. + */ +uint8_t listen(SOCKET s) +{ + if (W5100.readSnSR(s) != SnSR::INIT) + return 0; + W5100.execCmdSn(s, Sock_LISTEN); + return 1; +} + + +/** + * @brief This function established the connection for the channel in Active (client) mode. + * This function waits for the untill the connection is established. + * + * @return 1 for success else 0. + */ +uint8_t connect(SOCKET s, uint8_t * addr, uint16_t port) +{ + if + ( + ((addr[0] == 0xFF) && (addr[1] == 0xFF) && (addr[2] == 0xFF) && (addr[3] == 0xFF)) || + ((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && (addr[3] == 0x00)) || + (port == 0x00) + ) + return 0; + + // set destination IP + W5100.writeSnDIPR(s, addr); + W5100.writeSnDPORT(s, port); + W5100.execCmdSn(s, Sock_CONNECT); + + return 1; +} + + + +/** + * @brief This function used for disconnect the socket and parameter is "s" which represent the socket number + * @return 1 for success else 0. + */ +void disconnect(SOCKET s) +{ + W5100.execCmdSn(s, Sock_DISCON); +} + + +/** + * @brief This function used to send the data in TCP mode + * @return 1 for success else 0. + */ +uint16_t send(SOCKET s, const uint8_t * buf, uint16_t len) +{ + uint8_t status=0; + uint16_t ret=0; + uint16_t freesize=0; + + if (len > W5100.SSIZE) + ret = W5100.SSIZE; // check size not to exceed MAX size. + else + ret = len; + + // if freebuf is available, start. + do + { + freesize = W5100.getTXFreeSize(s); + status = W5100.readSnSR(s); + if ((status != SnSR::ESTABLISHED) && (status != SnSR::CLOSE_WAIT)) + { + ret = 0; + break; + } + } + while (freesize < ret); + + // copy data + W5100.send_data_processing(s, (uint8_t *)buf, ret); + W5100.execCmdSn(s, Sock_SEND); + + /* +2008.01 bj */ + while ( (W5100.readSnIR(s) & SnIR::SEND_OK) != SnIR::SEND_OK ) + { + /* m2008.01 [bj] : reduce code */ + if ( W5100.readSnSR(s) == SnSR::CLOSED ) + { + close(s); + return 0; + } + } + /* +2008.01 bj */ + W5100.writeSnIR(s, SnIR::SEND_OK); + return ret; +} + + +/** + * @brief This function is an application I/F function which is used to receive the data in TCP mode. + * It continues to wait for data as much as the application wants to receive. + * + * @return received data size for success else -1. + */ +int16_t recv(SOCKET s, uint8_t *buf, int16_t len) +{ + // Check how much data is available + int16_t ret = W5100.getRXReceivedSize(s); + if ( ret == 0 ) + { + // No data available. + uint8_t status = W5100.readSnSR(s); + if ( status == SnSR::LISTEN || status == SnSR::CLOSED || status == SnSR::CLOSE_WAIT ) + { + // The remote end has closed its side of the connection, so this is the eof state + ret = 0; + } + else + { + // The connection is still up, but there's no data waiting to be read + ret = -1; + } + } + else if (ret > len) + { + ret = len; + } + + if ( ret > 0 ) + { + W5100.recv_data_processing(s, buf, ret); + W5100.execCmdSn(s, Sock_RECV); + } + return ret; +} + + +/** + * @brief Returns the first byte in the receive queue (no checking) + * + * @return + */ +uint16_t peek(SOCKET s, uint8_t *buf) +{ + W5100.recv_data_processing(s, buf, 1, 1); + + return 1; +} + + +/** + * @brief This function is an application I/F function which is used to send the data for other then TCP mode. + * Unlike TCP transmission, The peer's destination address and the port is needed. + * + * @return This function return send data size for success else -1. + */ +uint16_t sendto(SOCKET s, const uint8_t *buf, uint16_t len, uint8_t *addr, uint16_t port) +{ + uint16_t ret=0; + + if (len > W5100.SSIZE) ret = W5100.SSIZE; // check size not to exceed MAX size. + else ret = len; + + if + ( + ((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && (addr[3] == 0x00)) || + ((port == 0x00)) ||(ret == 0) + ) + { + /* +2008.01 [bj] : added return value */ + ret = 0; + } + else + { + W5100.writeSnDIPR(s, addr); + W5100.writeSnDPORT(s, port); + + // copy data + W5100.send_data_processing(s, (uint8_t *)buf, ret); + W5100.execCmdSn(s, Sock_SEND); + + /* +2008.01 bj */ + while ( (W5100.readSnIR(s) & SnIR::SEND_OK) != SnIR::SEND_OK ) + { + if (W5100.readSnIR(s) & SnIR::TIMEOUT) + { + /* +2008.01 [bj]: clear interrupt */ + W5100.writeSnIR(s, (SnIR::SEND_OK | SnIR::TIMEOUT)); /* clear SEND_OK & TIMEOUT */ + return 0; + } + } + + /* +2008.01 bj */ + W5100.writeSnIR(s, SnIR::SEND_OK); + } + return ret; +} + + +/** + * @brief This function is an application I/F function which is used to receive the data in other then + * TCP mode. This function is used to receive UDP, IP_RAW and MAC_RAW mode, and handle the header as well. + * + * @return This function return received data size for success else -1. + */ +uint16_t recvfrom(SOCKET s, uint8_t *buf, uint16_t len, uint8_t *addr, uint16_t *port) +{ + uint8_t head[8]; + uint16_t data_len=0; + uint16_t ptr=0; + + if ( len > 0 ) + { + ptr = W5100.readSnRX_RD(s); + switch (W5100.readSnMR(s) & 0x07) + { + case SnMR::UDP : + W5100.read_data(s, ptr, head, 0x08); + ptr += 8; + // read peer's IP address, port number. + addr[0] = head[0]; + addr[1] = head[1]; + addr[2] = head[2]; + addr[3] = head[3]; + *port = head[4]; + *port = (*port << 8) + head[5]; + data_len = head[6]; + data_len = (data_len << 8) + head[7]; + + W5100.read_data(s, ptr, buf, data_len); // data copy. + ptr += data_len; + + W5100.writeSnRX_RD(s, ptr); + break; + + case SnMR::IPRAW : + W5100.read_data(s, ptr, head, 0x06); + ptr += 6; + + addr[0] = head[0]; + addr[1] = head[1]; + addr[2] = head[2]; + addr[3] = head[3]; + data_len = head[4]; + data_len = (data_len << 8) + head[5]; + + W5100.read_data(s, ptr, buf, data_len); // data copy. + ptr += data_len; + + W5100.writeSnRX_RD(s, ptr); + break; + + case SnMR::MACRAW: + W5100.read_data(s, ptr, head, 2); + ptr+=2; + data_len = head[0]; + data_len = (data_len<<8) + head[1] - 2; + + W5100.read_data(s, ptr, buf, data_len); + ptr += data_len; + W5100.writeSnRX_RD(s, ptr); + break; + + default : + break; + } + W5100.execCmdSn(s, Sock_RECV); + } + return data_len; +} + + +uint16_t igmpsend(SOCKET s, const uint8_t * buf, uint16_t len) +{ + uint8_t status=0; + uint16_t ret=0; + + if (len > W5100.SSIZE) + ret = W5100.SSIZE; // check size not to exceed MAX size. + else + ret = len; + + if (ret == 0) + return 0; + + W5100.send_data_processing(s, (uint8_t *)buf, ret); + W5100.execCmdSn(s, Sock_SEND); + + while ( (W5100.readSnIR(s) & SnIR::SEND_OK) != SnIR::SEND_OK ) + { + status = W5100.readSnSR(s); + if (W5100.readSnIR(s) & SnIR::TIMEOUT) + { + /* in case of igmp, if send fails, then socket closed */ + /* if you want change, remove this code. */ + close(s); + return 0; + } + } + + W5100.writeSnIR(s, SnIR::SEND_OK); + return ret; +} + +uint16_t bufferData(SOCKET s, uint16_t offset, const uint8_t* buf, uint16_t len) +{ + uint16_t ret =0; + if (len > W5100.getTXFreeSize(s)) + { + ret = W5100.getTXFreeSize(s); // check size not to exceed MAX size. + } + else + { + ret = len; + } + W5100.send_data_processing_offset(s, offset, buf, ret); + return ret; +} + +int startUDP(SOCKET s, uint8_t* addr, uint16_t port) +{ + if + ( + ((addr[0] == 0x00) && (addr[1] == 0x00) && (addr[2] == 0x00) && (addr[3] == 0x00)) || + ((port == 0x00)) + ) + { + return 0; + } + else + { + W5100.writeSnDIPR(s, addr); + W5100.writeSnDPORT(s, port); + return 1; + } +} + +int sendUDP(SOCKET s) +{ + W5100.execCmdSn(s, Sock_SEND); + + /* +2008.01 bj */ + while ( (W5100.readSnIR(s) & SnIR::SEND_OK) != SnIR::SEND_OK ) + { + if (W5100.readSnIR(s) & SnIR::TIMEOUT) + { + /* +2008.01 [bj]: clear interrupt */ + W5100.writeSnIR(s, (SnIR::SEND_OK|SnIR::TIMEOUT)); + return 0; + } + } + + /* +2008.01 bj */ + W5100.writeSnIR(s, SnIR::SEND_OK); + + /* Sent ok */ + return 1; +} + diff --git a/hardware/arduino/sam/libraries/Ethernet/utility/socket.h b/hardware/arduino/sam/libraries/Ethernet/utility/socket.h new file mode 100755 index 000000000..45e0fb3e8 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/utility/socket.h @@ -0,0 +1,41 @@ +#ifndef _SOCKET_H_ +#define _SOCKET_H_ + +#include "w5100.h" + +extern uint8_t socket(SOCKET s, uint8_t protocol, uint16_t port, uint8_t flag); // Opens a socket(TCP or UDP or IP_RAW mode) +extern void close(SOCKET s); // Close socket +extern uint8_t connect(SOCKET s, uint8_t * addr, uint16_t port); // Establish TCP connection (Active connection) +extern void disconnect(SOCKET s); // disconnect the connection +extern uint8_t listen(SOCKET s); // Establish TCP connection (Passive connection) +extern uint16_t send(SOCKET s, const uint8_t * buf, uint16_t len); // Send data (TCP) +extern int16_t recv(SOCKET s, uint8_t * buf, int16_t len); // Receive data (TCP) +extern uint16_t peek(SOCKET s, uint8_t *buf); +extern uint16_t sendto(SOCKET s, const uint8_t * buf, uint16_t len, uint8_t * addr, uint16_t port); // Send data (UDP/IP RAW) +extern uint16_t recvfrom(SOCKET s, uint8_t * buf, uint16_t len, uint8_t * addr, uint16_t *port); // Receive data (UDP/IP RAW) + +extern uint16_t igmpsend(SOCKET s, const uint8_t * buf, uint16_t len); + +// Functions to allow buffered UDP send (i.e. where the UDP datagram is built up over a +// number of calls before being sent +/* + @brief This function sets up a UDP datagram, the data for which will be provided by one + or more calls to bufferData and then finally sent with sendUDP. + @return 1 if the datagram was successfully set up, or 0 if there was an error +*/ +extern int startUDP(SOCKET s, uint8_t* addr, uint16_t port); +/* + @brief This function copies up to len bytes of data from buf into a UDP datagram to be + sent later by sendUDP. Allows datagrams to be built up from a series of bufferData calls. + @return Number of bytes successfully buffered +*/ +uint16_t bufferData(SOCKET s, uint16_t offset, const uint8_t* buf, uint16_t len); +/* + @brief Send a UDP datagram built up from a sequence of startUDP followed by one or more + calls to bufferData. + @return 1 if the datagram was successfully sent, or 0 if there was an error +*/ +int sendUDP(SOCKET s); + +#endif +/* _SOCKET_H_ */ diff --git a/hardware/arduino/sam/libraries/Ethernet/utility/w5100.cpp b/hardware/arduino/sam/libraries/Ethernet/utility/w5100.cpp new file mode 100644 index 000000000..5c616d02c --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/utility/w5100.cpp @@ -0,0 +1,183 @@ +/* + * Copyright (c) 2010 by Cristian Maglie + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of either the GNU General Public License version 2 + * or the GNU Lesser General Public License version 2.1, both as + * published by the Free Software Foundation. + */ + +#include +#include + +#include "w5100.h" + +// W5100 controller instance +W5100Class W5100; + +#define SPI_CS 10 + +#define TX_RX_MAX_BUF_SIZE 2048 +#define TX_BUF 0x1100 +#define RX_BUF (TX_BUF + TX_RX_MAX_BUF_SIZE) + +#define TXBUF_BASE 0x4000 +#define RXBUF_BASE 0x6000 + +void W5100Class::init(void) +{ + delay(300); + + SPI.begin(SPI_CS); + // Set clock to 4Mhz (W5100 should support up to about 14Mhz) + SPI.setClockDivider(SPI_CS, 21); + SPI.setDataMode(SPI_CS, SPI_MODE0); + + writeMR(1< SSIZE) + { + // Wrap around circular buffer + uint16_t size = SSIZE - offset; + write(dstAddr, data, size); + write(SBASE[s], data + size, len - size); + } + else { + write(dstAddr, data, len); + } + + ptr += len; + writeSnTX_WR(s, ptr); +} + + +void W5100Class::recv_data_processing(SOCKET s, uint8_t *data, uint16_t len, uint8_t peek) +{ + uint16_t ptr; + ptr = readSnRX_RD(s); + read_data(s, ptr, data, len); + if (!peek) + { + ptr += len; + writeSnRX_RD(s, ptr); + } +} + +void W5100Class::read_data(SOCKET s, volatile uint16_t src, volatile uint8_t *dst, uint16_t len) +{ + uint16_t size; + uint16_t src_mask; + uint16_t src_ptr; + + src_mask = src & RMASK; + src_ptr = RBASE[s] + src_mask; + + if( (src_mask + len) > RSIZE ) + { + size = RSIZE - src_mask; + read(src_ptr, (uint8_t *)dst, size); + dst += size; + read(RBASE[s], (uint8_t *) dst, len - size); + } + else + read(src_ptr, (uint8_t *) dst, len); +} + + +uint8_t W5100Class::write(uint16_t _addr, uint8_t _data) +{ + SPI.transfer(SPI_CS, 0xF0, SPI_CONTINUE); + SPI.transfer(SPI_CS, _addr >> 8, SPI_CONTINUE); + SPI.transfer(SPI_CS, _addr & 0xFF, SPI_CONTINUE); + SPI.transfer(SPI_CS, _data); + return 1; +} + +uint16_t W5100Class::write(uint16_t _addr, const uint8_t *_buf, uint16_t _len) +{ + for (uint16_t i=0; i<_len; i++) + { + SPI.transfer(SPI_CS, 0xF0, SPI_CONTINUE); + SPI.transfer(SPI_CS, _addr >> 8, SPI_CONTINUE); + SPI.transfer(SPI_CS, _addr & 0xFF, SPI_CONTINUE); + SPI.transfer(SPI_CS, _buf[i]); + _addr++; + } + return _len; +} + +uint8_t W5100Class::read(uint16_t _addr) +{ + SPI.transfer(SPI_CS, 0x0F, SPI_CONTINUE); + SPI.transfer(SPI_CS, _addr >> 8, SPI_CONTINUE); + SPI.transfer(SPI_CS, _addr & 0xFF, SPI_CONTINUE); + uint8_t _data = SPI.transfer(SPI_CS, 0); + return _data; +} + +uint16_t W5100Class::read(uint16_t _addr, uint8_t *_buf, uint16_t _len) +{ + for (uint16_t i=0; i<_len; i++) + { + SPI.transfer(SPI_CS, 0x0F, SPI_CONTINUE); + SPI.transfer(SPI_CS, _addr >> 8, SPI_CONTINUE); + SPI.transfer(SPI_CS, _addr & 0xFF, SPI_CONTINUE); + _buf[i] = SPI.transfer(SPI_CS, 0); + _addr++; + } + return _len; +} + +void W5100Class::execCmdSn(SOCKET s, SockCMD _cmd) { + // Send command to socket + writeSnCR(s, _cmd); + // Wait for command to complete + while (readSnCR(s)) + ; +} diff --git a/hardware/arduino/sam/libraries/Ethernet/utility/w5100.h b/hardware/arduino/sam/libraries/Ethernet/utility/w5100.h new file mode 100755 index 000000000..26bc10b18 --- /dev/null +++ b/hardware/arduino/sam/libraries/Ethernet/utility/w5100.h @@ -0,0 +1,384 @@ +/* + * Copyright (c) 2010 by Cristian Maglie + * + * This file is free software; you can redistribute it and/or modify + * it under the terms of either the GNU General Public License version 2 + * or the GNU Lesser General Public License version 2.1, both as + * published by the Free Software Foundation. + */ + +#ifndef W5100_H_INCLUDED +#define W5100_H_INCLUDED + +#include + +#define MAX_SOCK_NUM 4 + +typedef uint8_t SOCKET; + +#define IDM_OR 0x8000 +#define IDM_AR0 0x8001 +#define IDM_AR1 0x8002 +#define IDM_DR 0x8003 +/* +class MR { +public: + static const uint8_t RST = 0x80; + static const uint8_t PB = 0x10; + static const uint8_t PPPOE = 0x08; + static const uint8_t LB = 0x04; + static const uint8_t AI = 0x02; + static const uint8_t IND = 0x01; +}; +*/ +/* +class IR { +public: + static const uint8_t CONFLICT = 0x80; + static const uint8_t UNREACH = 0x40; + static const uint8_t PPPoE = 0x20; + static const uint8_t SOCK0 = 0x01; + static const uint8_t SOCK1 = 0x02; + static const uint8_t SOCK2 = 0x04; + static const uint8_t SOCK3 = 0x08; + static inline uint8_t SOCK(SOCKET ch) { return (0x01 << ch); }; +}; +*/ + +class SnMR { +public: + static const uint8_t CLOSE = 0x00; + static const uint8_t TCP = 0x01; + static const uint8_t UDP = 0x02; + static const uint8_t IPRAW = 0x03; + static const uint8_t MACRAW = 0x04; + static const uint8_t PPPOE = 0x05; + static const uint8_t ND = 0x20; + static const uint8_t MULTI = 0x80; +}; + +enum SockCMD { + Sock_OPEN = 0x01, + Sock_LISTEN = 0x02, + Sock_CONNECT = 0x04, + Sock_DISCON = 0x08, + Sock_CLOSE = 0x10, + Sock_SEND = 0x20, + Sock_SEND_MAC = 0x21, + Sock_SEND_KEEP = 0x22, + Sock_RECV = 0x40 +}; + +/*class SnCmd { +public: + static const uint8_t OPEN = 0x01; + static const uint8_t LISTEN = 0x02; + static const uint8_t CONNECT = 0x04; + static const uint8_t DISCON = 0x08; + static const uint8_t CLOSE = 0x10; + static const uint8_t SEND = 0x20; + static const uint8_t SEND_MAC = 0x21; + static const uint8_t SEND_KEEP = 0x22; + static const uint8_t RECV = 0x40; +}; +*/ + +class SnIR { +public: + static const uint8_t SEND_OK = 0x10; + static const uint8_t TIMEOUT = 0x08; + static const uint8_t RECV = 0x04; + static const uint8_t DISCON = 0x02; + static const uint8_t CON = 0x01; +}; + +class SnSR { +public: + static const uint8_t CLOSED = 0x00; + static const uint8_t INIT = 0x13; + static const uint8_t LISTEN = 0x14; + static const uint8_t SYNSENT = 0x15; + static const uint8_t SYNRECV = 0x16; + static const uint8_t ESTABLISHED = 0x17; + static const uint8_t FIN_WAIT = 0x18; + static const uint8_t CLOSING = 0x1A; + static const uint8_t TIME_WAIT = 0x1B; + static const uint8_t CLOSE_WAIT = 0x1C; + static const uint8_t LAST_ACK = 0x1D; + static const uint8_t UDP = 0x22; + static const uint8_t IPRAW = 0x32; + static const uint8_t MACRAW = 0x42; + static const uint8_t PPPOE = 0x5F; +}; + +class IPPROTO { +public: + static const uint8_t IP = 0; + static const uint8_t ICMP = 1; + static const uint8_t IGMP = 2; + static const uint8_t GGP = 3; + static const uint8_t TCP = 6; + static const uint8_t PUP = 12; + static const uint8_t UDP = 17; + static const uint8_t IDP = 22; + static const uint8_t ND = 77; + static const uint8_t RAW = 255; +}; + +class W5100Class { + +public: + void init(); + + /** + * @brief This function is being used for copy the data form Receive buffer of the chip to application buffer. + * + * It calculate the actual physical address where one has to read + * the data from Receive buffer. Here also take care of the condition while it exceed + * the Rx memory uper-bound of socket. + */ + void read_data(SOCKET s, volatile uint16_t src, volatile uint8_t * dst, uint16_t len); + + /** + * @brief This function is being called by send() and sendto() function also. + * + * This function read the Tx write pointer register and after copy the data in buffer update the Tx write pointer + * register. User should read upper byte first and lower byte later to get proper value. + */ + void send_data_processing(SOCKET s, const uint8_t *data, uint16_t len); + /** + * @brief A copy of send_data_processing that uses the provided ptr for the + * write offset. Only needed for the "streaming" UDP API, where + * a single UDP packet is built up over a number of calls to + * send_data_processing_ptr, because TX_WR doesn't seem to get updated + * correctly in those scenarios + * @param ptr value to use in place of TX_WR. If 0, then the value is read + * in from TX_WR + * @return New value for ptr, to be used in the next call + */ +// FIXME Update documentation + void send_data_processing_offset(SOCKET s, uint16_t data_offset, const uint8_t *data, uint16_t len); + + /** + * @brief This function is being called by recv() also. + * + * This function read the Rx read pointer register + * and after copy the data from receive buffer update the Rx write pointer register. + * User should read upper byte first and lower byte later to get proper value. + */ + void recv_data_processing(SOCKET s, uint8_t *data, uint16_t len, uint8_t peek = 0); + + inline void setGatewayIp(uint8_t *_addr); + inline void getGatewayIp(uint8_t *_addr); + + inline void setSubnetMask(uint8_t *_addr); + inline void getSubnetMask(uint8_t *_addr); + + inline void setMACAddress(uint8_t * addr); + inline void getMACAddress(uint8_t * addr); + + inline void setIPAddress(uint8_t * addr); + inline void getIPAddress(uint8_t * addr); + + inline void setRetransmissionTime(uint16_t timeout); + inline void setRetransmissionCount(uint8_t _retry); + + void execCmdSn(SOCKET s, SockCMD _cmd); + + uint16_t getTXFreeSize(SOCKET s); + uint16_t getRXReceivedSize(SOCKET s); + + + // W5100 Registers + // --------------- +private: + static uint8_t write(uint16_t _addr, uint8_t _data); + static uint16_t write(uint16_t addr, const uint8_t *buf, uint16_t len); + static uint8_t read(uint16_t addr); + static uint16_t read(uint16_t addr, uint8_t *buf, uint16_t len); + +#define __GP_REGISTER8(name, address) \ + static inline void write##name(uint8_t _data) { \ + write(address, _data); \ + } \ + static inline uint8_t read##name() { \ + return read(address); \ + } +#define __GP_REGISTER16(name, address) \ + static void write##name(uint16_t _data) { \ + write(address, _data >> 8); \ + write(address+1, _data & 0xFF); \ + } \ + static uint16_t read##name() { \ + uint16_t res = read(address); \ + res = (res << 8) + read(address + 1); \ + return res; \ + } +#define __GP_REGISTER_N(name, address, size) \ + static uint16_t write##name(uint8_t *_buff) { \ + return write(address, _buff, size); \ + } \ + static uint16_t read##name(uint8_t *_buff) { \ + return read(address, _buff, size); \ + } + +public: + __GP_REGISTER8 (MR, 0x0000); // Mode + __GP_REGISTER_N(GAR, 0x0001, 4); // Gateway IP address + __GP_REGISTER_N(SUBR, 0x0005, 4); // Subnet mask address + __GP_REGISTER_N(SHAR, 0x0009, 6); // Source MAC address + __GP_REGISTER_N(SIPR, 0x000F, 4); // Source IP address + __GP_REGISTER8 (IR, 0x0015); // Interrupt + __GP_REGISTER8 (IMR, 0x0016); // Interrupt Mask + __GP_REGISTER16(RTR, 0x0017); // Timeout address + __GP_REGISTER8 (RCR, 0x0019); // Retry count + __GP_REGISTER8 (RMSR, 0x001A); // Receive memory size + __GP_REGISTER8 (TMSR, 0x001B); // Transmit memory size + __GP_REGISTER8 (PATR, 0x001C); // Authentication type address in PPPoE mode + __GP_REGISTER8 (PTIMER, 0x0028); // PPP LCP Request Timer + __GP_REGISTER8 (PMAGIC, 0x0029); // PPP LCP Magic Number + __GP_REGISTER_N(UIPR, 0x002A, 4); // Unreachable IP address in UDP mode + __GP_REGISTER16(UPORT, 0x002E); // Unreachable Port address in UDP mode + +#undef __GP_REGISTER8 +#undef __GP_REGISTER16 +#undef __GP_REGISTER_N + + // W5100 Socket registers + // ---------------------- +private: + static inline uint8_t readSn(SOCKET _s, uint16_t _addr); + static inline uint8_t writeSn(SOCKET _s, uint16_t _addr, uint8_t _data); + static inline uint16_t readSn(SOCKET _s, uint16_t _addr, uint8_t *_buf, uint16_t len); + static inline uint16_t writeSn(SOCKET _s, uint16_t _addr, uint8_t *_buf, uint16_t len); + + static const uint16_t CH_BASE = 0x0400; + static const uint16_t CH_SIZE = 0x0100; + +#define __SOCKET_REGISTER8(name, address) \ + static inline void write##name(SOCKET _s, uint8_t _data) { \ + writeSn(_s, address, _data); \ + } \ + static inline uint8_t read##name(SOCKET _s) { \ + return readSn(_s, address); \ + } +#define __SOCKET_REGISTER16(name, address) \ + static void write##name(SOCKET _s, uint16_t _data) { \ + writeSn(_s, address, _data >> 8); \ + writeSn(_s, address+1, _data & 0xFF); \ + } \ + static uint16_t read##name(SOCKET _s) { \ + uint16_t res = readSn(_s, address); \ + uint16_t res2 = readSn(_s,address + 1); \ + res = res << 8; \ + res2 = res2 & 0xFF; \ + res = res | res2; \ + return res; \ + } +#define __SOCKET_REGISTER_N(name, address, size) \ + static uint16_t write##name(SOCKET _s, uint8_t *_buff) { \ + return writeSn(_s, address, _buff, size); \ + } \ + static uint16_t read##name(SOCKET _s, uint8_t *_buff) { \ + return readSn(_s, address, _buff, size); \ + } + +public: + __SOCKET_REGISTER8(SnMR, 0x0000) // Mode + __SOCKET_REGISTER8(SnCR, 0x0001) // Command + __SOCKET_REGISTER8(SnIR, 0x0002) // Interrupt + __SOCKET_REGISTER8(SnSR, 0x0003) // Status + __SOCKET_REGISTER16(SnPORT, 0x0004) // Source Port + __SOCKET_REGISTER_N(SnDHAR, 0x0006, 6) // Destination Hardw Addr + __SOCKET_REGISTER_N(SnDIPR, 0x000C, 4) // Destination IP Addr + __SOCKET_REGISTER16(SnDPORT, 0x0010) // Destination Port + __SOCKET_REGISTER16(SnMSSR, 0x0012) // Max Segment Size + __SOCKET_REGISTER8(SnPROTO, 0x0014) // Protocol in IP RAW Mode + __SOCKET_REGISTER8(SnTOS, 0x0015) // IP TOS + __SOCKET_REGISTER8(SnTTL, 0x0016) // IP TTL + __SOCKET_REGISTER16(SnTX_FSR, 0x0020) // TX Free Size + __SOCKET_REGISTER16(SnTX_RD, 0x0022) // TX Read Pointer + __SOCKET_REGISTER16(SnTX_WR, 0x0024) // TX Write Pointer + __SOCKET_REGISTER16(SnRX_RSR, 0x0026) // RX Free Size + __SOCKET_REGISTER16(SnRX_RD, 0x0028) // RX Read Pointer + __SOCKET_REGISTER16(SnRX_WR, 0x002A) // RX Write Pointer (supported?) + +#undef __SOCKET_REGISTER8 +#undef __SOCKET_REGISTER16 +#undef __SOCKET_REGISTER_N + + +private: + static const uint8_t RST = 7; // Reset BIT + + static const int SOCKETS = 4; + static const uint16_t SMASK = 0x07FF; // Tx buffer MASK + static const uint16_t RMASK = 0x07FF; // Rx buffer MASK +public: + static const uint16_t SSIZE = 2048; // Max Tx buffer size +private: + static const uint16_t RSIZE = 2048; // Max Rx buffer size + uint16_t SBASE[SOCKETS]; // Tx buffer base address + uint16_t RBASE[SOCKETS]; // Rx buffer base address + +}; + +extern W5100Class W5100; + +uint8_t W5100Class::readSn(SOCKET _s, uint16_t _addr) { + return read(CH_BASE + _s * CH_SIZE + _addr); +} + +uint8_t W5100Class::writeSn(SOCKET _s, uint16_t _addr, uint8_t _data) { + return write(CH_BASE + _s * CH_SIZE + _addr, _data); +} + +uint16_t W5100Class::readSn(SOCKET _s, uint16_t _addr, uint8_t *_buf, uint16_t _len) { + return read(CH_BASE + _s * CH_SIZE + _addr, _buf, _len); +} + +uint16_t W5100Class::writeSn(SOCKET _s, uint16_t _addr, uint8_t *_buf, uint16_t _len) { + return write(CH_BASE + _s * CH_SIZE + _addr, _buf, _len); +} + +void W5100Class::getGatewayIp(uint8_t *_addr) { + readGAR(_addr); +} + +void W5100Class::setGatewayIp(uint8_t *_addr) { + writeGAR(_addr); +} + +void W5100Class::getSubnetMask(uint8_t *_addr) { + readSUBR(_addr); +} + +void W5100Class::setSubnetMask(uint8_t *_addr) { + writeSUBR(_addr); +} + +void W5100Class::getMACAddress(uint8_t *_addr) { + readSHAR(_addr); +} + +void W5100Class::setMACAddress(uint8_t *_addr) { + writeSHAR(_addr); +} + +void W5100Class::getIPAddress(uint8_t *_addr) { + readSIPR(_addr); +} + +void W5100Class::setIPAddress(uint8_t *_addr) { + writeSIPR(_addr); +} + +void W5100Class::setRetransmissionTime(uint16_t _timeout) { + writeRTR(_timeout); +} + +void W5100Class::setRetransmissionCount(uint8_t _retry) { + writeRCR(_retry); +} + +#endif diff --git a/hardware/arduino/sam/libraries/SPI/SPI.cpp b/hardware/arduino/sam/libraries/SPI/SPI.cpp index 277aee37c..b9c4bfd66 100644 --- a/hardware/arduino/sam/libraries/SPI/SPI.cpp +++ b/hardware/arduino/sam/libraries/SPI/SPI.cpp @@ -15,64 +15,56 @@ SPIClass::SPIClass(Spi *_spi, uint32_t _id, void(*_initCb)(void)) : { initCb(); - SPI_Configure(spi, id, SPI_MR_MSTR | SPI_MR_PS); + SPI_Configure(spi, id, SPI_MR_MSTR | SPI_MR_PS | SPI_MR_MODFDIS); SPI_Enable(spi); - setClockDivider(1); - setDataMode(SPI_MODE0); +} + +void SPIClass::begin() { + // NPCS control is left to the user + + // Default speed set to 500Khz + setClockDivider(BOARD_SPI_DEFAULT_SS, 168); + setDataMode(BOARD_SPI_DEFAULT_SS, SPI_MODE0); } void SPIClass::begin(uint8_t _pin) { - if (_pin == 0) - return; - PIO_Configure(g_APinDescription[_pin].pPort, - g_APinDescription[_pin].ulPinType, - g_APinDescription[_pin].ulPin, - g_APinDescription[_pin].ulPinConfiguration); + uint32_t spiPin = BOARD_PIN_TO_SPI_PIN(_pin); + PIO_Configure( + g_APinDescription[spiPin].pPort, + g_APinDescription[spiPin].ulPinType, + g_APinDescription[spiPin].ulPin, + g_APinDescription[spiPin].ulPinConfiguration); + // Default speed set to 500Khz + setClockDivider(_pin, 168); + setDataMode(_pin, SPI_MODE0); } void SPIClass::end() { SPI_Disable(spi); } -//void SPIClass::setBitOrder(uint8_t bitOrder) { -// setBitOrder(bitOrder, 0); -// setBitOrder(bitOrder, 1); -// setBitOrder(bitOrder, 2); -// setBitOrder(bitOrder, 3); -//} - -//void SPIClass::setBitOrder(uint8_t bitOrder, uint8_t _channel) { +//void SPIClass::setBitOrder(uint8_t _bitOrder, uint8_t _channel) { // // Not supported //} -void SPIClass::setDataMode(uint8_t _mode) { - setDataMode(PIN_SPI_SS0, _mode); - setDataMode(PIN_SPI_SS1, _mode); - setDataMode(PIN_SPI_SS2, _mode); - setDataMode(PIN_SPI_SS3, _mode); -} - void SPIClass::setDataMode(uint8_t _pin, uint8_t _mode) { - uint32_t _channel = SPI_PIN_TO_SPI_CHANNEL(_pin); + uint32_t _channel = BOARD_PIN_TO_SPI_CHANNEL(_pin); mode[_channel] = _mode | SPI_CSR_CSAAT; - SPI_ConfigureNPCS(spi, _channel, mode[_channel] | SPI_CSR_SCBR(divider[_channel])); -} - -void SPIClass::setClockDivider(uint8_t _divider) { - setClockDivider(PIN_SPI_SS0, _divider); - setClockDivider(PIN_SPI_SS1, _divider); - setClockDivider(PIN_SPI_SS2, _divider); - setClockDivider(PIN_SPI_SS3, _divider); + // SPI_CSR_DLYBCT(1) keeps CS enabled for 32 MCLK after a completed + // transfer. Some device needs that for working properly. + SPI_ConfigureNPCS(spi, _channel, mode[_channel] | SPI_CSR_SCBR(divider[_channel]) | SPI_CSR_DLYBCT(1)); } void SPIClass::setClockDivider(uint8_t _pin, uint8_t _divider) { - uint32_t _channel = SPI_PIN_TO_SPI_CHANNEL(_pin); + uint32_t _channel = BOARD_PIN_TO_SPI_CHANNEL(_pin); divider[_channel] = _divider; - SPI_ConfigureNPCS(spi, _channel, mode[_channel] | SPI_CSR_SCBR(divider[_channel])); + // SPI_CSR_DLYBCT(1) keeps CS enabled for 32 MCLK after a completed + // transfer. Some device needs that for working properly. + SPI_ConfigureNPCS(spi, _channel, mode[_channel] | SPI_CSR_SCBR(divider[_channel]) | SPI_CSR_DLYBCT(1)); } byte SPIClass::transfer(byte _pin, uint8_t _data, SPITransferMode _mode) { - uint32_t _channel = SPI_PIN_TO_SPI_CHANNEL(_pin); + uint32_t _channel = BOARD_PIN_TO_SPI_CHANNEL(_pin); uint32_t d = _data | SPI_PCS(_channel); if (_mode == SPI_LAST) d |= SPI_TDR_LASTXFER; @@ -99,15 +91,18 @@ void SPIClass::detachInterrupt(void) { #if SPI_INTERFACES_COUNT > 0 static void SPI_0_Init(void) { - PIO_Configure(g_APinDescription[PIN_SPI_MOSI].pPort, + PIO_Configure( + g_APinDescription[PIN_SPI_MOSI].pPort, g_APinDescription[PIN_SPI_MOSI].ulPinType, g_APinDescription[PIN_SPI_MOSI].ulPin, g_APinDescription[PIN_SPI_MOSI].ulPinConfiguration); - PIO_Configure(g_APinDescription[PIN_SPI_MISO].pPort, + PIO_Configure( + g_APinDescription[PIN_SPI_MISO].pPort, g_APinDescription[PIN_SPI_MISO].ulPinType, g_APinDescription[PIN_SPI_MISO].ulPin, g_APinDescription[PIN_SPI_MISO].ulPinConfiguration); - PIO_Configure(g_APinDescription[PIN_SPI_SCK].pPort, + PIO_Configure( + g_APinDescription[PIN_SPI_SCK].pPort, g_APinDescription[PIN_SPI_SCK].ulPinType, g_APinDescription[PIN_SPI_SCK].ulPin, g_APinDescription[PIN_SPI_SCK].ulPinConfiguration); diff --git a/hardware/arduino/sam/libraries/SPI/SPI.h b/hardware/arduino/sam/libraries/SPI/SPI.h index 5d4c0e260..093d12de5 100644 --- a/hardware/arduino/sam/libraries/SPI/SPI.h +++ b/hardware/arduino/sam/libraries/SPI/SPI.h @@ -28,6 +28,7 @@ class SPIClass { public: SPIClass(Spi *_spi, uint32_t _id, void(*_initCb)(void)); + byte transfer(uint8_t _data, SPITransferMode _mode = SPI_LAST) { return transfer(BOARD_SPI_DEFAULT_SS, _data, _mode); } byte transfer(byte _channel, uint8_t _data, SPITransferMode _mode = SPI_LAST); // SPI Configuration methods @@ -36,18 +37,19 @@ class SPIClass { void detachInterrupt(void); void begin(uint8_t _channel); + void begin(void); void end(void); - // These methods sets the same parameters on all channels - //void setBitOrder(uint8_t); - void setDataMode(uint8_t); - void setClockDivider(uint8_t); - - // These methods sets a parameter on a single channel - // void setBitOrder(uint8_t _channel, uint8_t); + // These methods sets a parameter on a single pin + //void setBitOrder(uint8_t _channel, uint8_t); void setDataMode(uint8_t _channel, uint8_t); void setClockDivider(uint8_t _channel, uint8_t); + // These methods sets the same parameters but on default pin PIN_SPI_SS_DEFAULT + //void setBitOrder(uint8_t _order) { setBitOrder(PIN_SPI_SS_DEFAULT, _order); }; + void setDataMode(uint8_t _mode) { setDataMode(BOARD_SPI_DEFAULT_SS, _mode); }; + void setClockDivider(uint8_t _div) { setClockDivider(BOARD_SPI_DEFAULT_SS, _div); }; + private: Spi *spi; uint32_t id; diff --git a/hardware/arduino/sam/libraries/SPI/examples/DueX_ATFlashSignatureCheck/DueX_ATFlashSignatureCheck.ino b/hardware/arduino/sam/libraries/SPI/examples/DueX_ATFlashSignatureCheck/DueX_ATFlashSignatureCheck.ino index 009369bc7..8291bec1e 100644 --- a/hardware/arduino/sam/libraries/SPI/examples/DueX_ATFlashSignatureCheck/DueX_ATFlashSignatureCheck.ino +++ b/hardware/arduino/sam/libraries/SPI/examples/DueX_ATFlashSignatureCheck/DueX_ATFlashSignatureCheck.ino @@ -6,16 +6,18 @@ void setup() { Serial.begin(9600); + + // Start SPI with FLASH device SPI.begin(FLASH); - SPI.setClockDivider(2); // We are too fast with 1 + // Half clock speed: we are too fast with 1 + SPI.setClockDivider(FLASH, 2); } void loop() { - Serial.println("Sending 'Identify' cmd to flash => 9F"); - // Send "identify" command (9f) and receive response // on the same SPI transaction. Parameter SPI_CONTINUE // keeps the SS pin active. + Serial.println("Sending 'Identify' cmd to flash => 9F"); SPI.transfer(FLASH, 0x9f, SPI_CONTINUE); char a1 = SPI.transfer(FLASH, 0x00, SPI_CONTINUE); char a2 = SPI.transfer(FLASH, 0x00, SPI_CONTINUE); @@ -30,5 +32,6 @@ void loop() { Serial.print(a3, HEX); Serial.print(a4, HEX); Serial.println(a5, HEX); + delay(1000); } diff --git a/hardware/arduino/sam/libraries/Wire/Wire.cpp b/hardware/arduino/sam/libraries/Wire/Wire.cpp index 2c7b7ab0d..90947cbb1 100644 --- a/hardware/arduino/sam/libraries/Wire/Wire.cpp +++ b/hardware/arduino/sam/libraries/Wire/Wire.cpp @@ -113,7 +113,7 @@ void TwoWire::begin(int address) { begin((uint8_t) address); } -uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity) { +uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity, uint8_t sendStop) { if (quantity > BUFFER_LENGTH) quantity = BUFFER_LENGTH; @@ -137,8 +137,16 @@ uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity) { return readed; } +uint8_t TwoWire::requestFrom(uint8_t address, uint8_t quantity) { + return requestFrom((uint8_t) address, (uint8_t) quantity, (uint8_t) true); +} + uint8_t TwoWire::requestFrom(int address, int quantity) { - return requestFrom((uint8_t) address, (uint8_t) quantity); + return requestFrom((uint8_t) address, (uint8_t) quantity, (uint8_t) true); +} + +uint8_t TwoWire::requestFrom(int address, int quantity, int sendStop) { + return requestFrom((uint8_t) address, (uint8_t) quantity, (uint8_t) sendStop); } void TwoWire::beginTransmission(uint8_t address) { @@ -153,7 +161,20 @@ void TwoWire::beginTransmission(int address) { beginTransmission((uint8_t) address); } -uint8_t TwoWire::endTransmission(void) { +// +// Originally, 'endTransmission' was an f(void) function. +// It has been modified to take one parameter indicating +// whether or not a STOP should be performed on the bus. +// Calling endTransmission(false) allows a sketch to +// perform a repeated start. +// +// WARNING: Nothing in the library keeps track of whether +// the bus tenure has been properly ended with a STOP. It +// is very possible to leave the bus in a hung state if +// no call to endTransmission(true) is made. Some I2C +// devices will behave oddly if they do not see a STOP. +// +uint8_t TwoWire::endTransmission(uint8_t sendStop) { // transmit buffer (blocking) TWI_StartWrite(twi, txAddress, 0, 0, txBuffer[0]); TWI_WaitByteSent(twi, XMIT_TIMEOUT); @@ -172,36 +193,43 @@ uint8_t TwoWire::endTransmission(void) { return sent; } -void TwoWire::write(uint8_t data) { +// This provides backwards compatibility with the original +// definition, and expected behaviour, of endTransmission +// +uint8_t TwoWire::endTransmission(void) +{ + return endTransmission(true); +} + +size_t TwoWire::write(uint8_t data) { if (status == MASTER_SEND) { if (txBufferLength >= BUFFER_LENGTH) - return; + return 0; txBuffer[txBufferLength++] = data; + return 1; } else { if (srvBufferLength >= BUFFER_LENGTH) - return; + return 0; srvBuffer[srvBufferLength++] = data; + return 1; } } -void TwoWire::write(const uint8_t *data, size_t quantity) { +size_t TwoWire::write(const uint8_t *data, size_t quantity) { if (status == MASTER_SEND) { for (size_t i = 0; i < quantity; ++i) { if (txBufferLength >= BUFFER_LENGTH) - return; + return i; txBuffer[txBufferLength++] = data[i]; } } else { for (size_t i = 0; i < quantity; ++i) { if (srvBufferLength >= BUFFER_LENGTH) - return; + return i; srvBuffer[srvBufferLength++] = data[i]; } } -} - -void TwoWire::write(const char *data) { - write((uint8_t*) data, strlen(data)); + return quantity; } int TwoWire::available(void) { @@ -303,12 +331,14 @@ void TwoWire::onService(void) { #if WIRE_INTERFACES_COUNT > 0 static void Wire_Init(void) { - PMC_EnablePeripheral( WIRE_INTERFACE_ID); - PIO_Configure(g_APinDescription[PIN_WIRE_SDA].pPort, + pmc_enable_periph_clk(WIRE_INTERFACE_ID); + PIO_Configure( + g_APinDescription[PIN_WIRE_SDA].pPort, g_APinDescription[PIN_WIRE_SDA].ulPinType, g_APinDescription[PIN_WIRE_SDA].ulPin, g_APinDescription[PIN_WIRE_SDA].ulPinConfiguration); - PIO_Configure(g_APinDescription[PIN_WIRE_SCL].pPort, + PIO_Configure( + g_APinDescription[PIN_WIRE_SCL].pPort, g_APinDescription[PIN_WIRE_SCL].ulPinType, g_APinDescription[PIN_WIRE_SCL].ulPin, g_APinDescription[PIN_WIRE_SCL].ulPinConfiguration); @@ -328,15 +358,22 @@ void WIRE_ISR_HANDLER(void) { #if WIRE_INTERFACES_COUNT > 1 static void Wire1_Init(void) { - PMC_EnablePeripheral( WIRE1_INTERFACE_ID); - PIO_Configure(g_APinDescription[PIN_WIRE1_SDA].pPort, + pmc_enable_periph_clk(WIRE1_INTERFACE_ID); + PIO_Configure( + g_APinDescription[PIN_WIRE1_SDA].pPort, g_APinDescription[PIN_WIRE1_SDA].ulPinType, g_APinDescription[PIN_WIRE1_SDA].ulPin, g_APinDescription[PIN_WIRE1_SDA].ulPinConfiguration); - PIO_Configure(g_APinDescription[PIN_WIRE1_SCL].pPort, + PIO_Configure( + g_APinDescription[PIN_WIRE1_SCL].pPort, g_APinDescription[PIN_WIRE1_SCL].ulPinType, g_APinDescription[PIN_WIRE1_SCL].ulPin, g_APinDescription[PIN_WIRE1_SCL].ulPinConfiguration); + + NVIC_DisableIRQ(TWI0_IRQn); + NVIC_ClearPendingIRQ(TWI0_IRQn); + NVIC_SetPriority(TWI0_IRQn, 0); + NVIC_EnableIRQ(TWI0_IRQn); } TwoWire Wire1 = TwoWire(WIRE1_INTERFACE, Wire1_Init); diff --git a/hardware/arduino/sam/libraries/Wire/Wire.h b/hardware/arduino/sam/libraries/Wire/Wire.h index 1bbc1b741..d36faa959 100644 --- a/hardware/arduino/sam/libraries/Wire/Wire.h +++ b/hardware/arduino/sam/libraries/Wire/Wire.h @@ -29,7 +29,7 @@ #define BUFFER_LENGTH 32 -class TwoWire: public Stream { +class TwoWire : public Stream { public: TwoWire(Twi *twi, void(*begin_cb)(void)); void begin(); @@ -38,11 +38,13 @@ public: void beginTransmission(uint8_t); void beginTransmission(int); uint8_t endTransmission(void); + uint8_t endTransmission(uint8_t); uint8_t requestFrom(uint8_t, uint8_t); + uint8_t requestFrom(uint8_t, uint8_t, uint8_t); uint8_t requestFrom(int, int); - virtual void write(uint8_t); - virtual void write(const char *); - virtual void write(const uint8_t *, size_t); + uint8_t requestFrom(int, int, int); + virtual size_t write(uint8_t); + virtual size_t write(const uint8_t *, size_t); virtual int available(void); virtual int read(void); virtual int peek(void); @@ -50,6 +52,12 @@ public: void onReceive(void(*)(int)); void onRequest(void(*)(void)); + inline size_t write(unsigned long n) { return write((uint8_t)n); } + inline size_t write(long n) { return write((uint8_t)n); } + inline size_t write(unsigned int n) { return write((uint8_t)n); } + inline size_t write(int n) { return write((uint8_t)n); } + using Print::write; + void onService(void); private: diff --git a/hardware/arduino/sam/libraries/Wire/keywords.txt b/hardware/arduino/sam/libraries/Wire/keywords.txt index 12f129b99..e75e929e2 100644 --- a/hardware/arduino/sam/libraries/Wire/keywords.txt +++ b/hardware/arduino/sam/libraries/Wire/keywords.txt @@ -24,6 +24,7 @@ onRequest KEYWORD2 ####################################### Wire KEYWORD2 +Wire1 KEYWORD2 ####################################### # Constants (LITERAL1) diff --git a/hardware/arduino/sam/platform.txt b/hardware/arduino/sam/platform.txt index e928040c7..17c43448b 100644 --- a/hardware/arduino/sam/platform.txt +++ b/hardware/arduino/sam/platform.txt @@ -6,12 +6,12 @@ name=Atmel SAM3 compiler.path={runtime.ide.path}/hardware/tools/g++_arm_none_eabi/bin/ #compiler.path=C:/arm-none-eabi-gcc-4_6/bin/ compiler.c.cmd=arm-none-eabi-gcc -compiler.c.flags=-c -g -Os -w -mlong-calls -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf +compiler.c.flags=-c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -Dprintf=iprintf compiler.c.elf.cmd=arm-none-eabi-gcc compiler.c.elf.flags=-Os -Wl,--gc-sections compiler.S.flags=-c -g -assembler-with-cpp compiler.cpp.cmd=arm-none-eabi-g++ -compiler.cpp.flags=-c -g -Os -w -mlong-calls -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf +compiler.cpp.flags=-c -g -Os -w -ffunction-sections -fdata-sections -nostdlib --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf compiler.ar.cmd=arm-none-eabi-ar compiler.ar.flags=rcs compiler.objcopy.cmd=arm-none-eabi-objcopy @@ -21,32 +21,35 @@ compiler.elf2hex.cmd=arm-none-eabi-objcopy compiler.ldflags= compiler.size.cmd=arm-none-eabi-size compiler.define=-DARDUINO= +# this can be overriden in boards.txt +build.extra_flags= -compiler.libsam.c.flags=-I{build.system.path}/libsam -I{build.system.path}/CMSIS/CMSIS/Include/ -I{build.system.path}/CMSIS/Device/ATMEL/ + +compiler.libsam.c.flags="-I{build.system.path}/libsam" "-I{build.system.path}/CMSIS/CMSIS/Include/" "-I{build.system.path}/CMSIS/Device/ATMEL/" # SAM3 compile patterns # --------------------- ## Compile c files -recipe.c.o.pattern={compiler.path}{compiler.c.cmd} {compiler.c.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {build.extra_flags} {compiler.libsam.c.flags} {includes} {source_file} -o {object_file} +recipe.c.o.pattern="{compiler.path}{compiler.c.cmd}" {compiler.c.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {build.extra_flags} {compiler.libsam.c.flags} {includes} "{source_file}" -o "{object_file}" ## Compile c++ files -recipe.cpp.o.pattern={compiler.path}{compiler.cpp.cmd} {compiler.cpp.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {build.extra_flags} {compiler.libsam.c.flags} {includes} {source_file} -o {object_file} +recipe.cpp.o.pattern="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -D{software}={runtime.ide.version} {build.extra_flags} {compiler.libsam.c.flags} {includes} "{source_file}" -o "{object_file}" ## Create archives -recipe.ar.pattern={compiler.path}{compiler.ar.cmd} {compiler.ar.flags} {build.path}/{archive_file} {object_file} +recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} "{build.path}/{archive_file}" "{object_file}" ## Combine gc-sections, archives, and objects -recipe.c.combine.pattern={compiler.path}{compiler.c.elf.cmd} {compiler.c.elf.flags} -mcpu={build.mcu} -T{build.variant.path}/{build.ldscript} -Wl,-Map,{build.path}/{build.project_name}.map -o {build.path}/{build.project_name}.elf -L{build.path} -lm -lgcc -mthumb -Wl,--cref -Wl,--check-sections -Wl,--gc-sections -Wl,--entry=Reset_Handler -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--warn-section-align -Wl,--warn-unresolved-symbols -Wl,--start-group {object_files} {build.variant.path}/{build.variant_system_lib} {build.path}/{archive_file} -Wl,--end-group +recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" {compiler.c.elf.flags} -mcpu={build.mcu} "-T{build.variant.path}/{build.ldscript}" "-Wl,-Map,{build.path}/{build.project_name}.map" -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -lm -lgcc -mthumb -Wl,--cref -Wl,--check-sections -Wl,--gc-sections -Wl,--entry=Reset_Handler -Wl,--unresolved-symbols=report-all -Wl,--warn-common -Wl,--warn-section-align -Wl,--warn-unresolved-symbols -Wl,--start-group "{build.path}/syscalls_sam3.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.path}/{archive_file}" -Wl,--end-group ## Create eeprom recipe.objcopy.eep.pattern= ## Create hex -recipe.objcopy.hex.pattern={compiler.path}{compiler.elf2hex.cmd} {compiler.elf2hex.flags} {build.path}/{build.project_name}.elf {build.path}/{build.project_name}.bin +recipe.objcopy.hex.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.bin" ## Compute size -recipe.size.pattern={compiler.path}{compiler.size.cmd} -A {build.path}/{build.project_name}.elf +recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf" recipe.size.regex=\.text\s+([0-9]+).* @@ -59,7 +62,7 @@ tools.bossac.path={runtime.ide.path}/hardware/tools tools.bossac.upload.params.verbose=-i -d tools.bossac.upload.params.quiet= -tools.bossac.upload.pattern={path}/{cmd} {upload.verbose} --port={serial.port.file} -e -w -v -b {build.path}/{build.project_name}.bin +tools.bossac.upload.pattern="{path}/{cmd}" {upload.verbose} --port={serial.port.file} -e -w -v -b "{build.path}/{build.project_name}.bin" # specialized tool for adk2 to twiddle the erase line before running bossac tools.adk2install.cmd=adk2install diff --git a/hardware/arduino/sam/variants/arduino_due_x/variant.cpp b/hardware/arduino/sam/variants/arduino_due_x/variant.cpp index 2f6f91935..8488b643d 100644 --- a/hardware/arduino/sam/variants/arduino_due_x/variant.cpp +++ b/hardware/arduino/sam/variants/arduino_due_x/variant.cpp @@ -26,12 +26,14 @@ * 2 TIOA0 | PB25 * 3 TIOA7 | PC28 * 4 NPCS1 | PA29 + * TIOB6 | PC26 * 5 TIOA6 | PC25 * 6 PWML7 | PC24 * 7 PWML6 | PC23 * 8 PWML5 | PC22 * 9 PWML4 | PC21 - * 10 TIOA0 | PA28 PC29??? + * 10 NPCS0 | PA28 + * TIOB7 | PC29 * 11 TIOA8 | PD7 * 12 TIOB8 | PD8 * 13 TIOB0 | PB27 @@ -73,7 +75,7 @@ * 49 | PC14 * 50 | PC13 * 51 | PC12 - * 52 | PB21 + * 52 NPCS2 | PB21 * 53 | PB14 * A0 | PA16 * A1 | PA24 @@ -100,7 +102,7 @@ * SO | PA25 * SI | PA26 * SCK | PA27 - * #CS SS3 | PB23 + * #CS NPCS3 | PB23 * * * USB pin | PORT @@ -135,22 +137,21 @@ extern const PinDescription g_APinDescription[]= // 2 { PIOB, PIO_PB25B_TIOA0, ID_PIOB, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC0_CHA0 }, // TIOA0 { PIOC, PIO_PC28B_TIOA7, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC2_CHA7 }, // TIOA7 - { PIOA, PIO_PA29A_SPI0_NPCS1,ID_PIOA,PIO_PERIPH_A,PIO_DEFAULT, PIN_ATTR_DIGITAL, NO_ADC, NO_ADC, NO_PWM, NO_TC }, // NPCS1 + { PIOC, PIO_PC26B_TIOB6, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC2_CHB6 }, // TIOB6 // 5 - { PIOC, PIO_PC25B_TIOA6, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC0_CHA2 }, // TIOA6 + { PIOC, PIO_PC25B_TIOA6, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC2_CHA6 }, // TIOA6 { PIOC, PIO_PC24B_PWML7, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_PWM), NO_ADC, NO_ADC, PWM_CH7, NO_TC }, // PWML7 { PIOC, PIO_PC23B_PWML6, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_PWM), NO_ADC, NO_ADC, PWM_CH6, NO_TC }, // PWML6 { PIOC, PIO_PC22B_PWML5, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_PWM), NO_ADC, NO_ADC, PWM_CH5, NO_TC }, // PWML5 { PIOC, PIO_PC21B_PWML4, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_PWM), NO_ADC, NO_ADC, PWM_CH4, NO_TC }, // PWML4 // 10 -// * 10 TIOA0 | PA28 PC29??? - { PIOA, PIO_PA1, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC0_CHA0 }, // TIOA0 + { PIOC, PIO_PC29B_TIOB7, ID_PIOC, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC2_CHB7 }, // TIOB7 { PIOD, PIO_PD7B_TIOA8, ID_PIOD, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC2_CHA8 }, // TIOA8 { PIOD, PIO_PD8B_TIOB8, ID_PIOD, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC2_CHB8 }, // TIOB8 // 13 - AMBER LED - { PIOB, PIO_PB27B_TIOB0, ID_PIOB, PIO_OUTPUT_0, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC0_CHB0 }, // TIOB0 + { PIOB, PIO_PB27B_TIOB0, ID_PIOB, PIO_PERIPH_B, PIO_DEFAULT, (PIN_ATTR_DIGITAL|PIN_ATTR_TIMER), NO_ADC, NO_ADC, NO_PWM, TC0_CHB0 }, // TIOB0 // 14/15 - USART2 (Serial4) { PIOD, PIO_PD4B_TXD3, ID_PIOD, PIO_PERIPH_B, PIO_DEFAULT, PIN_ATTR_DIGITAL, NO_ADC, NO_ADC, NO_PWM, NO_TC }, // TXD3 @@ -276,6 +277,12 @@ extern const PinDescription g_APinDescription[]= // 85 - USB { PIOB, PIO_PB11A_UOTGID|PIO_PB10A_UOTGVBOF, ID_PIOB, PIO_PERIPH_A, PIO_DEFAULT, PIN_ATTR_DIGITAL,NO_ADC, NO_ADC, NO_PWM, NO_TC }, // ID - VBOF + // 86 - SPI CS2 + { PIOB, PIO_PB21B_SPI0_NPCS2, ID_PIOB, PIO_PERIPH_B, PIO_DEFAULT, PIN_ATTR_DIGITAL, NO_ADC, NO_ADC, NO_PWM, NO_TC }, // NPCS2 + + // 87 - SPI CS1 + { PIOA, PIO_PA29A_SPI0_NPCS1, ID_PIOA, PIO_PERIPH_A, PIO_DEFAULT, PIN_ATTR_DIGITAL, NO_ADC, NO_ADC, NO_PWM, NO_TC }, // NPCS1 + // END { NULL, 0, 0, PIO_NOT_A_PIN, PIO_DEFAULT, 0, NO_ADC, NO_ADC, NO_PWM, NO_TC } } ; diff --git a/hardware/arduino/sam/variants/arduino_due_x/variant.h b/hardware/arduino/sam/variants/arduino_due_x/variant.h index faf354a42..30b3196a0 100644 --- a/hardware/arduino/sam/variants/arduino_due_x/variant.h +++ b/hardware/arduino/sam/variants/arduino_due_x/variant.h @@ -64,7 +64,7 @@ extern "C"{ *----------------------------------------------------------------------------*/ // Number of pins defined in PinDescription array -#define PINS_COUNT (84u) +#define PINS_COUNT (88u) // LEDs #define PIN_LED_13 (13u) @@ -83,18 +83,31 @@ extern "C"{ #define SPI_INTERFACE_ID ID_SPI0 #define SPI_CHANNELS_NUM 4 #define PIN_SPI_SS0 (77u) -#define PIN_SPI_SS1 (4u) -#define PIN_SPI_SS2 (0u) +#define PIN_SPI_SS1 (87u) +#define PIN_SPI_SS2 (86u) #define PIN_SPI_SS3 (78u) #define PIN_SPI_MOSI (75u) #define PIN_SPI_MISO (74u) #define PIN_SPI_SCK (76u) -#define SPI_PIN_TO_SPI_CHANNEL(x) (x==PIN_SPI_SS0 ? 0 : (x==PIN_SPI_SS1 ? 1 : (x==PIN_SPI_SS2 ? 2 : 3))) +#define BOARD_SPI_SS0 (10u) +#define BOARD_SPI_SS1 (4u) +#define BOARD_SPI_SS2 (52u) +#define BOARD_SPI_SS3 PIN_SPI_SS3 +#define BOARD_SPI_DEFAULT_SS BOARD_SPI_SS2 -static const uint8_t SS = PIN_SPI_SS0 ; -static const uint8_t SS1 = PIN_SPI_SS1 ; -static const uint8_t SS2 = PIN_SPI_SS2 ; -static const uint8_t SS3 = PIN_SPI_SS3 ; +#define BOARD_PIN_TO_SPI_PIN(x) \ + (x==BOARD_SPI_SS0 ? PIN_SPI_SS0 : \ + (x==BOARD_SPI_SS1 ? PIN_SPI_SS1 : \ + (x==BOARD_SPI_SS2 ? PIN_SPI_SS2 : PIN_SPI_SS3 ))) +#define BOARD_PIN_TO_SPI_CHANNEL(x) \ + (x==BOARD_SPI_SS0 ? 0 : \ + (x==BOARD_SPI_SS1 ? 1 : \ + (x==BOARD_SPI_SS2 ? 2 : 3))) + +static const uint8_t SS = BOARD_SPI_SS0 ; +static const uint8_t SS1 = BOARD_SPI_SS1 ; +static const uint8_t SS2 = BOARD_SPI_SS2 ; +static const uint8_t SS3 = BOARD_SPI_SS3 ; static const uint8_t MOSI = PIN_SPI_MOSI ; static const uint8_t MISO = PIN_SPI_MISO ; static const uint8_t SCK = PIN_SPI_SCK ; diff --git a/readme.txt b/readme.txt index 4777293e6..9b359393e 100644 --- a/readme.txt +++ b/readme.txt @@ -23,7 +23,7 @@ CREDITS Arduino is an open source project, supported by many. The Arduino team is composed of Massimo Banzi, David Cuartielles, Tom Igoe, -Gianluca Martino, and David A. Mellis. +Gianluca Martino, Daniela Antonietti, and David A. Mellis. Arduino uses the GNU avr-gcc toolchain, avrdude, avr-libc, and code from Processing and Wiring. diff --git a/todo.txt b/todo.txt index ea97bf2f0..3a248a7ea 100644 --- a/todo.txt +++ b/todo.txt @@ -1,4 +1,4 @@ -0100 arduino +0101 arduino Fix Linux make.sh, etc. scripts Test on Linux.